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

:root {
  --yellow: #FFD233;
  --yellow-light: #FFF8DC;
  --yellow-pale: #FFFDF5;
  --yellow-dark: #E5B800;
  --teal: #00B4A6;
  --teal-light: #E6F9F7;
  --teal-dark: #009688;
  --navy: #1A1A2E;
  --dark: #222222;
  --gray: #666666;
  --gray-light: #999999;
  --gray-bg: #F5F5F3;
  --border: #E8E8E8;
  --white: #FFFFFF;
  --sans: 'Noto Sans JP', sans-serif;
  --en: 'Poppins', sans-serif;
  --rd: 24px;
  --rd-sm: 14px;
  --rd-pill: 60px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 20px;
  height: 56px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-logo {
  font-family: var(--en); font-size: 22px; font-weight: 800;
  color: var(--navy); display: flex; align-items: center; gap: 8px;
}
.nav-logo-sub{font-size:14px;border:1.5px solid var(--gray-light);border-radius:var(--rd-pill);padding:4px 14px;margin-left:8px;display:inline-block;line-height:1.4;font-weight:600;}
.nav-links { display: none; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 700; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-login {
  font-size: 14px; font-weight: 700; color: var(--dark);
  border: 2px solid var(--border); padding: 7px 16px;
  border-radius: var(--rd-pill); transition: all 0.2s;
  white-space: nowrap;
}
.nav-login:hover { border-color: var(--teal); color: var(--teal); }

/* ── SP NAV BAR ─────────────────────────────────── */
.sp-nav-bar {
  display: flex; position: fixed; top: 56px;
  left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--yellow);
  padding: 6px 6px; gap: 4px;
  justify-content: space-around;
  -webkit-tap-highlight-color: transparent;
}
.sp-nav-item {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px; flex: 1;
  padding: 6px 2px; border-radius: var(--rd-sm);
  border: 1.5px solid transparent;
  font-family: var(--sans); font-size: 0.65rem;
  font-weight: 700; color: var(--dark);
  text-decoration: none; transition: transform 0.15s ease;
}
.sp-nav-item:active { transform: scale(0.95); }
.sp-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.sp-nav-item:nth-child(1) { background: var(--yellow-light); border-color: rgba(255,210,51,0.3); }
.sp-nav-item:nth-child(1) svg { stroke: var(--yellow-dark); }
.sp-nav-item:nth-child(2) { background: var(--teal-light); border-color: rgba(0,180,166,0.25); }
.sp-nav-item:nth-child(2) svg { stroke: var(--teal); }
.sp-nav-item:nth-child(3) { background: #FFF0F3; border-color: rgba(255,105,135,0.2); }
.sp-nav-item:nth-child(3) svg { stroke: #FF6987; }
.sp-nav-item:nth-child(4) { background: #F0EEFF; border-color: rgba(130,100,220,0.2); }
.sp-nav-item:nth-child(4) svg { stroke: #7C5CE0; }
.sp-nav-item:nth-child(5) { background: #FFF3E8; border-color: rgba(255,160,70,0.2); }
.sp-nav-item:nth-child(5) svg { stroke: #FFA046; }
@media (min-width: 769px) { .sp-nav-bar { display: none; } }

/* ── WRAP ────────────────────────────────────────── */
.wrap { overflow: hidden; }


/* ══════════════════════════════════════════════════
   HERO — 大胆な背景画像フルブリード
══════════════════════════════════════════════════ */
.hero.hero-bg {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 70px 20px 40px;
  text-align: left;
  background: url('/service/images/hero-bg1.jpg') center center / cover no-repeat;
}
.hero-content {
  position: relative; z-index: 3; max-width: 600px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 28px;
  border-radius: var(--rd);
}
.hero.hero-bg .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--en); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--teal);
  background: rgba(0,180,166,0.08);
  border: 1px solid rgba(0,180,166,0.2);
  padding: 6px 18px; border-radius: var(--rd-pill);
  margin-bottom: 16px; backdrop-filter: blur(6px);
  text-transform: uppercase;
}
.hero.hero-bg .hero-h1 {
  font-size: clamp(32px, 9vw, 60px);
  font-weight: 900; line-height: 1.2;
  color: var(--navy); margin-bottom: 16px;
  text-shadow: none;
}
.hero.hero-bg .hero-h1 .marker {
  background: var(--yellow); color: var(--navy);
  padding: 2px 12px; border-radius: 8px;
  display: inline-block; text-shadow: none;
}
.hero.hero-bg .badge.glass {
  background: rgba(26,26,46,0.06);
  border: 1.5px solid rgba(26,26,46,0.15);
  color: var(--navy);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 700;
  padding: 7px 18px; border-radius: var(--rd-pill);
}
.hero.hero-bg .hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.hero.hero-bg .hero-btns {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-start; width: 100%; margin-bottom: 0;
}
.hero.hero-bg .hero-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--yellow); color: var(--navy);
  font-size: 14px; font-weight: 700;
  padding: 16px 36px; border-radius: var(--rd-pill);
  font-family: var(--sans); transition: all 0.25s;
  box-shadow: 0 6px 28px rgba(255,210,51,0.4);
  width: 100%; max-width: 320px;
}
.hero.hero-bg .hero-btn:hover {
  background: var(--yellow-dark); transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,210,51,0.5);
}
.hero.hero-bg .hero-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero.hero-bg .hero-btn-s.glass {
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid rgba(26,26,46,0.3); color: var(--navy);
  font-size: 12px; font-weight: 700;
  padding: 13px 28px; border-radius: var(--rd-pill);
  font-family: var(--sans); transition: all 0.25s;
  width: 100%; max-width: 320px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.5);
}
.hero.hero-bg .hero-btn-s.glass:hover {
  background: rgba(26,26,46,0.08);
  border-color: var(--navy);
}
.hero-tags {
  position: relative; z-index: 3;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 32px; padding: 16px 20px;
  border-top: none;
  width: 100%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--rd);
}
.hero-tag {
  font-size: 11px; font-weight: 600;
  color: rgba(26,26,46,0.5);
  padding: 6px 14px; border-radius: var(--rd-pill);
  border: 1px solid rgba(26,26,46,0.1);
  background: rgba(255,255,255,0.4);
  white-space: nowrap; transition: all 0.2s;
}
.hero-tag:hover {
  color: var(--teal);
  border-color: rgba(0,180,166,0.3);
  background: rgba(0,180,166,0.06);
}
.badge {
  font-size: 11px; font-weight: 700;
  padding: 6px 16px; border-radius: var(--rd-pill);
  background: var(--white); color: var(--navy);
  border: 2px solid rgba(26,26,46,0.08);
}
.hero-nav-tags {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: auto;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 32px;
  border-radius: var(--rd);
  width: 100%;
}
.hero-nav-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}
.hero-nav-tag:hover {
  color: var(--teal);
}
.hero-nav-tag-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hero-nav-sep {
  font-size: 20px;
  color: var(--gray-light);
  font-weight: 300;
}
@media (min-width: 768px) {
  .hero-nav-tags {
    gap: 32px;
    padding: 22px 48px;
    margin-left: auto;
    margin-right: 0;
    width: auto;
  }
  .hero-nav-tag {
    font-size: 17px;
  }
  .hero-nav-tag-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

/* ══════════════════════════════════════════════════
   ABOUT US — 私たちは？
══════════════════════════════════════════════════ */
.sec-about-us {
  position: relative;
  overflow: hidden;
  background:
    url('/service/images/about-us-bg.jpg') center center / cover no-repeat,
    var(--navy);
  padding: 80px 20px;
  color: var(--white);
}
.about-us-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.about-us-label {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-style: italic;
}
.about-us-title {
  font-size: clamp(24px, 7vw, 40px);
  font-weight: 900;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 24px;
}
.about-us-title .marker {
  background: var(--yellow);
  color: var(--navy);
  padding: 2px 12px;
  border-radius: 8px;
  display: inline-block;
}
.about-us-body {
  max-width: 620px;
  margin-bottom: 40px;
}
.about-us-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 2.2;
  margin-bottom: 10px;
}
.about-us-body strong {
  color: var(--navy);
  font-weight: 700;
}
.about-us-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 40px;
}
.about-us-point {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--rd);
  padding: 18px 22px;
  transition: all 0.3s;
}
.about-us-point:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,210,51,0.3);
  transform: translateY(-2px);
}
.about-us-point-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.about-us-point-label {
  font-family: var(--en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.about-us-point-text {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.6;
  font-weight: 700;
}
.about-us-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.about-us-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--rd-pill);
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255,210,51,0.3);
}
.about-us-link:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,210,51,0.4);
}
.about-us-link-sub {
  font-size: 12px;
  color: var(--gray-light);
  border-bottom: 1px dashed rgba(0,0,0,0.15);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.about-us-link-sub:hover {
  color: var(--teal);
}

@media (min-width: 768px) {
  .sec-about-us {
    padding: 120px 6%;
  }
  .about-us-body p {
    font-size: 16px;
  }
  .about-us-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .about-us-point {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
    gap: 12px;
  }
  .about-us-point-icon {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
}

/* ══════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════ */
.mq { overflow: hidden; padding: 14px 0; }
.mq.bg-navy { background: var(--navy); }
.mq.bg-teal { background: var(--teal); }
.mq.bg-yellow { background: var(--yellow); }
.mq.bg-black { background: #000000; }
.mq.bg-black .mq-track span { color: var(--yellow); }
.mq.bg-black .mq-track span.dot { color: rgba(255,255,255,0.2); }
.mq-track { display: flex; width: max-content; animation: mq 22s linear infinite; }
.mq-track.rev { animation-direction: reverse; animation-duration: 28s; }
.mq-track span {
  font-family: var(--en); font-size: 13px; font-weight: 700;
  padding: 0 24px; white-space: nowrap; letter-spacing: 0.05em;
}
.mq-track span.dot { padding: 0 8px; opacity: 0.4; }
.mq.bg-navy .mq-track span { color: var(--yellow); }
.mq.bg-navy .mq-track span.dot { color: rgba(255,255,255,0.3); }
.mq.bg-teal .mq-track span { color: var(--white); }
.mq.bg-yellow .mq-track span { color: var(--navy); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════════════ */
.sec { padding: 64px 20px; position: relative; }
.sec.bg-cream { background: var(--yellow-pale); }
.sec.bg-gray { background: var(--gray-bg); }
.sec.bg-teal-light { background: var(--teal-light); }
.sec-inner { max-width: 1100px; margin: 0 auto; }
.sec-label {
  font-family: var(--en); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--teal); text-transform: uppercase;
  margin-bottom: 8px; font-style: italic;
}
.sec-title {
  font-size: clamp(22px, 6vw, 36px); font-weight: 900;
  line-height: 1.35; margin-bottom: 12px; color: var(--navy);
}
.sec-title em { font-style: normal; color: var(--teal); }
.sec-title .marker {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 4px;
}
.sec-desc {
  font-size: 14px; color: var(--gray); line-height: 2; margin-bottom: 36px;
}
.sec-center { text-align: center; }
hr.rule { border: none; border-top: 2px dashed var(--border); margin: 0; }

/* ══════════════════════════════════════════════════
   PAIN POINTS — 横3列カード
══════════════════════════════════════════════════ */
.pain-bubble {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 30px 30px 30px 4px;
  margin-bottom: 40px;
  position: relative;
}
.pain-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 0 0 0 4px;
  transform: rotate(-15deg) skewX(-15deg);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.pain-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--rd);
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.pain-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 6px 24px rgba(255,210,51,0.15);
  transform: translateY(-4px);
}

.pain-card-num {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--en);
  font-size: 16px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,180,166,0.3);
}

.pain-card-emoji {
  font-size: 48px;
  line-height: 1;
  margin: 0 auto 16px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-bg);
  border-radius: 50%;
}

.pain-card-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.5;
}

.pain-card-body {
  font-size: 12px;
  color: var(--gray);
  line-height: 2;
}

/* ══════════════════════════════════════════════════
   WHY BEAUTÉ — 選ばれる理由
══════════════════════════════════════════════════ */
.sec-why {
  background: var(--white) url('/service/images/why-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
  justify-items: flex-start;
}
.why-card {
  text-align: left;
  position: relative;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 18px;
  padding: 20px 16px 16px;
}
.why-card-num {
  position: absolute;
  top: -8px;
  left: 20px;
  transform: none;
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--en);
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,180,166,0.3);
  z-index: 2;
}
.why-card:nth-child(2) .why-card-num,
.why-card:nth-child(4) .why-card-num {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 3px 10px rgba(255,210,51,0.3);
}
.why-card-emoji {
  font-size: 48px;
  line-height: 1;
  margin: 0 0 20px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.why-card:nth-child(odd) .why-card-emoji {
  background: var(--teal-light);
  border: 3px solid rgba(0,180,166,0.15);
}

.why-card:nth-child(even) .why-card-emoji {
  background: var(--yellow-light);
  border: 3px solid rgba(255,210,51,0.2);
}

.why-card-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.why-card-body {
  font-size: 13px;
  color: var(--gray);
  line-height: 2;
  max-width: 280px;
}

/* ══════════════════════════════════════════════════
   SERVICES — カード型
══════════════════════════════════════════════════ */
.sec-svc2 {
  background: #f3f2f0 url('/service/images/svc-bg.jpg') center top / 100% auto no-repeat;
  padding: 64px 20px 24px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.sec-svc2 .sec-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sec-svc2-cards {
  background: #f3f3f1;
  padding: 0 20px 40px;
  position: relative;
}
.sec-svc2-cards .sec-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.svc2-hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.svc2-hero-text { flex: 1; }
.svc2-hero-label {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-style: italic;
}
.svc2-hero-title{font-size:clamp(22px,6vw,36px);font-weight:900;color:var(--navy);line-height:1.35;margin-bottom:12px;}
.svc2-hero-title .marker{background:linear-gradient(transparent 60%,var(--yellow) 60%);padding:0 4px;}
.svc2-hero-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 2;
}
.svc2-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 40px;
}
.svc2-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 22px;
  border: 2px solid var(--navy);
  border-radius: var(--rd-pill);
  background: var(--white);
  transition: all 0.25s;
}
.svc2-tag:hover {
  background: var(--navy);
  color: var(--yellow);
}
.svc2-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}
.svc2-card {
  background: var(--white);
  border: 2.5px dashed var(--navy);
  border-radius: var(--rd);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.3s;
}
.svc2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26,26,46,0.08);
  border-style: solid;
}
.svc2-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--rd-sm);
  overflow: hidden;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc2-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc2-card-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray-light);
  font-weight: 500;
  background: linear-gradient(135deg, var(--yellow-light), var(--teal-light));
}
.svc2-card-text { flex: 1; }
.svc2-card-tag {
  font-family: var(--en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.svc2-card-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.svc2-card-price {
  font-family: var(--en);
  font-size: 16px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 12px;
}
.svc2-card-price sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-light);
}
.svc2-card-price .from {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  margin-right: 4px;
}
.svc2-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 16px;
}
.svc2-card-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.svc2-card-keywords span {
  font-size: 10px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--gray);
  padding: 4px 12px;
  border-radius: var(--rd-pill);
  background: var(--gray-bg);
}
.svc2-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.svc2-card-delivery {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.08em;
}
.svc2-card-delivery::before { content: '⏱ '; }
.svc2-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.svc2-card-link:hover { color: var(--teal); }
/* ── CTA: まるっと相談OK ── */
.svc2-cta {
  margin-top: 48px;
}
.svc2-cta-box {
  background: var(--yellow);
  border: 3px solid var(--navy);
  border-radius: var(--rd);
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.svc2-cta-badge-wrap,
.svc2-cta-right {
  position: relative;
  z-index: 1;
}
.svc2-cta-badge-wrap {
  flex-shrink: 0;
  width: 220px;
}
.svc2-cta-badge-wrap img {
  width: 100%;
  height: auto;
}
.svc2-cta-badge-ph {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}
.svc2-cta-right {
  flex: 1;
}
.svc2-cta-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc2-cta-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.svc2-cta-icon-item {
  text-align: center;
}
.svc2-cta-icon-circle {
  width: 88px;
  height: 88px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
  font-size: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.svc2-cta-icon-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.svc2-cta-icon-sep {
  width: 2px;
  height: 56px;
  border-left: 2px dotted var(--navy);
  opacity: 0.3;
}
.svc2-cta-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  position: relative;
}
.svc2-cta-illust {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}
.svc2-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  max-width: 400px;
  padding: 18px 56px;
  background: var(--teal);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  border-radius: var(--rd-pill);
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,180,166,0.3);
}
.svc2-cta-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,180,166,0.4);
}

/* ══════════════════════════════════════════════════
   RECRUITMENT — 求人応募率
══════════════════════════════════════════════════ */
/* ── Recruitment ヘッダー（背景画像あり） ── */
.sec-recruit-header {
  position: relative;
  padding: 40px 20px 24px;
  overflow: hidden;
}
.recruit-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/service/images/recruit-bg.jpg') center center / cover no-repeat;
  z-index: 0;
}
.sec-recruit-header .sec-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Recruitment カード ── */
.sec-recruit-cards {
  position: relative;
  padding: 0 20px 64px;
  background: var(--yellow-pale);
  overflow: hidden;
}
.sec-recruit-cards .sec-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.recruit-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.recruit-header-text {
  flex: 1;
}
.recruit-title {
  font-size: clamp(22px, 6vw, 36px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--navy);
}
.recruit-title .marker {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 4px;
}
.recruit-body {
  max-width: 720px;
  margin-bottom: 48px;
}
.recruit-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 2.2;
  margin-bottom: 10px;
}
.recruit-body strong {
  color: var(--navy);
  font-weight: 700;
}
.recruit-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.recruit-deco img {
  width: 100%;
  height: auto;
}
.recruit-deco-star1 {
  width: 48px;
  top: 60px;
  right: 20px;
}
.recruit-deco-star2 {
  width: 64px;
  bottom: 100px;
  right: 50px;
}
.recruit-deco-dots {
  width: 44px;
  top: 45%;
  left: 10px;
}
.recruit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.recruit-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--rd);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.recruit-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,180,166,0.12);
}
/* ── Recruitment カード：featured の特別スタイルを解除 ── */
.recruit-card-featured {
  border-color: var(--border);
  background: var(--white);
}
/* ── タップで色変化 ── */
.recruit-card.tapped {
  border-color: var(--teal);
  background: linear-gradient(170deg, var(--teal-light) 0%, var(--white) 50%);
}
.recruit-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: var(--yellow-light);
  border: 3px solid rgba(255,210,51,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.recruit-card-featured .recruit-card-icon {
  background: var(--yellow-light);
  border-color: rgba(255,210,51,0.2);
}
.recruit-card-icon-ph {
  font-size: 28px;
}
.recruit-card-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.recruit-card-body {
  font-size: 13px;
  color: var(--gray);
  line-height: 2;
}
.recruit-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.recruit-cta-illust {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
.recruit-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  max-width: 420px;
  padding: 20px 48px;
  background: var(--teal);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  border-radius: var(--rd-pill);
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,180,166,0.3);
}
.recruit-cta-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,180,166,0.4);
}

/* ══════════════════════════════════════════════════
   WORKFLOW — 制作の流れ
══════════════════════════════════════════════════ */
/* ── Workflow ヘッダー（背景画像あり） ── */
.sec-flow-header {
  position: relative;
  padding: 64px 20px 48px;
  overflow: hidden;
}
.sec-flow-header .flow-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/service/images/flow-bg.jpg') center center / cover no-repeat;
  z-index: 0;
}
.sec-flow-header .sec-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.sec-flow-header .flow-header {
  margin-bottom: 0;
}

/* ── Workflow ステップ（背景なし） ── */
.sec-flow-steps {
  position: relative;
  padding: 48px 20px 64px;
  background: #f6f6f6;
}
.sec-flow-steps .sec-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── ヘッダー ── */
.flow-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
}
.flow-header-text {
  flex: 1;
}
.flow-main-title {
  font-size: clamp(24px, 7vw, 40px);
  font-weight: 900;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 16px;
}
.flow-main-title .marker {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 4px;
}
.flow-main-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 2;
}

/* ── ステップ ── */
.flow-steps-wrap {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.flow-step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  padding: 0 0 0 0;
}

.flow-step-item-last {
  position: relative;
}

.flow-step-num {
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--en);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,180,166,0.3);
}

.flow-step-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 2px solid var(--border);
}


.flow-step-icon-ph {
  font-size: 24px;
}

.flow-step-content {
  flex: 1;
  padding-top: 2px;
}

.flow-step-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.flow-step-body {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

.flow-step-arrow {
  text-align: left;
  font-size: 18px;
  color: var(--gray-light);
  padding: 12px 0;
  margin-left: 0;
  padding-left: 130px;
}

/* ── 4番目の人物（ステップ3〜4の右に被さる） ── */
.flow-person-bg {
  position: absolute;
  right: calc(-50vw + 50%);
  bottom: -320px;
  width: 78%;
  z-index: 2;
  pointer-events: none;
}
.flow-person-bg img {
  width: 100%;
  height: auto;
}

/* ── デコレーション（大きめ） ── */
.flow-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.flow-deco img {
  width: 100%;
  height: auto;
}
.flow-deco-star1 {
  width: 48px;
  top: -20px;
  right: -50px;
}
.flow-deco-star2 {
  width: 64px;
  top: 35%;
  right: -70px;
}
.flow-deco-star3 {
  width: 36px;
  bottom: 25%;
  left: -40px;
}
.flow-deco-dots {
  width: 44px;
  top: 15%;
  left: -50px;
}

/* ── サポート ── */
.flow-support {
  margin-top: 40px;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.flow-support-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--rd-pill);
  margin-bottom: 12px;
}

.flow-support-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.flow-support-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.flow-support-icon img {
  width: 55%;
  height: 55%;
  object-fit: contain;
}

.flow-support-icon-ph {
  font-size: 28px;
}

.flow-support-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.flow-support-body {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

/* ── CTA ── */
.flow-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.flow-cta-illust {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.flow-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  max-width: 400px;
  padding: 20px 48px;
  background: var(--teal);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  border-radius: var(--rd-pill);
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,180,166,0.3);
}

.flow-cta-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,180,166,0.4);
}

/* ══════════════════════════════════════════════════
   VOICE — お客様の声
══════════════════════════════════════════════════ */
/* ── ヘッダー（背景画像あり） ── */
.sec-voice-header{position:relative;padding:64px 20px 0;background:#f2f2f2;margin-bottom:0;border-top:none;overflow:hidden;}
.sec-voice-header + .sec-voice-cards{margin-top:-2px;}
.voice-bg-img{position:absolute;top:0;left:0;right:0;bottom:0;background:url('/service/images/voice-bg.jpg') center center / cover no-repeat;z-index:0;}
.sec-voice-header .sec-inner{position:relative;z-index:1;max-width:1100px;margin:0 auto;}
.voice-header{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;}
.voice-header-text{flex:1;}
.voice-title{font-size:clamp(28px,7vw,44px);font-weight:900;line-height:1.3;color:var(--navy);margin-bottom:12px;}
.voice-title .marker{background:linear-gradient(transparent 60%,var(--yellow) 60%);padding:0 4px;}
.voice-desc{font-size:14px;color:var(--gray);line-height:2;}

/* ── カード ── */
.sec-voice-cards{position:relative;padding:16px 20px 64px;background:#f2f2f2;margin-top:0;overflow:hidden;}
.sec-voice-cards .sec-inner{max-width:1100px;margin:0 auto;position:relative;z-index:1;}
.voice-deco{position:absolute;pointer-events:none;z-index:0;font-weight:900;}
.voice-deco-star1{top:40px;right:60px;font-size:24px;color:var(--navy);opacity:0.1;}
.voice-deco-star2{bottom:40px;left:40px;font-size:32px;color:var(--teal);opacity:0.08;}
.voice-grid{display:grid;grid-template-columns:1fr;gap:20px;}
.voice-card{background:var(--white);border:2px solid var(--border);border-radius:var(--rd);padding:28px 24px;display:flex;gap:20px;align-items:flex-start;transition:all 0.3s;position:relative;overflow:hidden;}
.voice-card:hover{border-color:var(--teal);transform:translateY(-4px);box-shadow:0 8px 32px rgba(0,180,166,0.1);}
.voice-card-avatar{flex-shrink:0;width:64px;height:64px;position:relative;}
.voice-card-avatar-circle{width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:900;color:var(--white);position:relative;z-index:2;overflow:hidden;background:var(--teal);}
.voice-card-avatar-circle img{width:100%;height:100%;object-fit:cover;border-radius:50%;}
.voice-card:nth-child(2) .voice-card-avatar-circle{background:var(--yellow);color:var(--navy);}
.voice-card:nth-child(3) .voice-card-avatar-circle{background:var(--navy);}
.voice-card:nth-child(4) .voice-card-avatar-circle{background:var(--teal);}
.voice-card-avatar-paint{position:absolute;top:-4px;left:-4px;width:72px;height:72px;border-radius:50%;z-index:1;opacity:0.3;}
.voice-card:nth-child(odd) .voice-card-avatar-paint{background:var(--teal);}
.voice-card:nth-child(even) .voice-card-avatar-paint{background:var(--yellow);}
.voice-card-quote{position:absolute;top:12px;right:16px;font-family:var(--en);font-size:48px;font-weight:900;color:var(--teal);opacity:0.08;line-height:1;}
.voice-card-text{flex:1;}
.voice-card-body{font-size:14px;color:var(--navy);line-height:2;font-weight:700;margin-bottom:12px;}
.voice-card-line{border:none;border-top:2px dotted var(--border);margin-bottom:12px;}
.voice-card-who{font-size:12px;color:var(--gray-light);font-weight:500;}
.voice-card-deco{position:absolute;bottom:10px;right:14px;font-family:var(--en);font-size:13px;font-weight:800;color:var(--yellow-dark);opacity:0.2;transform:rotate(-8deg);}
#price{margin-bottom:0;padding-bottom:48px;}


/* ══════════════════════════════════════════════════
   料金テーブル
══════════════════════════════════════════════════ */
.price-scroll { overflow-x: auto; margin-top: 28px; }
.price-table {
  width: 100%; border-collapse: separate; border-spacing: 0; min-width: 440px;
  border: 2px solid var(--border); border-radius: var(--rd); overflow: hidden;
}
.price-table thead th {
  font-family: var(--en); font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; padding: 14px; color: var(--white);
  background: var(--teal); text-align: left;
  border-bottom: none;
}
.price-table thead th:nth-child(2), .price-table thead th:nth-child(3) { text-align: right; }
.price-table tbody tr:nth-child(odd) { background: var(--white); }
.price-table tbody tr:nth-child(even) { background: var(--gray-bg); }
.price-table tbody tr:hover { background: var(--yellow-light); }
.price-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 12px; color: var(--gray); }
.price-table td:first-child { font-weight: 600; color: var(--navy); }
.price-table td:nth-child(2) { font-family: var(--en); font-size: 16px; font-weight: 700; color: var(--teal); text-align: right; white-space: nowrap; }
.price-table td:nth-child(3) { font-size: 11px; color: var(--gray-light); text-align: right; white-space: nowrap; }
.price-note { margin-top: 12px; font-size: 12px; color: var(--gray-light); line-height: 1.8; padding-left: 14px; border-left: 3px solid var(--yellow); }

/* ══════════════════════════════════════════════════
   FAQ — よくあるご質問
══════════════════════════════════════════════════ */
.sec-faq{position:relative;padding:64px 20px;background:var(--yellow-pale);overflow:hidden;}
.sec-faq .sec-inner{max-width:1100px;margin:0 auto;position:relative;z-index:1;}
.sec-faq .sec-label{margin-bottom:8px;}
.sec-faq .sec-title{margin-bottom:40px;}

/* ── デコ ── */
.faq-deco{position:absolute;pointer-events:none;z-index:0;}
.faq-deco img{width:100%;height:auto;}
.faq-deco-star1{top:24px;left:20px;width:48px;}
.faq-deco-star2{top:32px;right:60px;width:36px;}
.faq-deco-star3{bottom:20%;right:20px;width:28px;}

/* ── FAQ リスト ── */
.faq-list2{display:flex;flex-direction:column;gap:16px;max-width:800px;}
.faq-item2{background:var(--white);border-radius:var(--rd);overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,0.04);border:1.5px solid var(--border);transition:border-color 0.3s;}
.faq-item2:hover{border-color:rgba(0,180,166,0.3);}

/* ── 質問 ── */
.faq-q2{display:flex;align-items:center;gap:16px;padding:24px 28px 0;}
.faq-q2-icon{flex-shrink:0;width:36px;height:36px;background:var(--teal);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--en);font-size:16px;font-weight:800;}
.faq-q2-text{flex:1;font-size:16px;font-weight:900;color:var(--navy);line-height:1.5;}

/* ── 回答 ── */
.faq-a2{padding:12px 28px 24px 80px;font-size:14px;color:var(--gray);line-height:2;}

/* ══════════════════════════════════════════════════
   CONTACT — CTA + フォーム（一体型）
══════════════════════════════════════════════════ */
.sec-contact{position:relative;padding:80px 20px 64px;background:var(--yellow-pale);overflow:hidden;min-height:600px;}
.sec-contact .sec-inner{max-width:900px;margin:0 auto;position:relative;z-index:1;}
.contact-bg-img{position:absolute;top:0;right:15%;bottom:0;width:65%;background:url('/service/images/contact-bg.jpg') center bottom / contain no-repeat;z-index:0;pointer-events:none;}
.contact-hero{display:flex;align-items:center;margin-bottom:96px;}
.contact-hero-text{flex:1;}
.contact-label{font-family:var(--en);font-size:11px;font-weight:700;letter-spacing:0.2em;color:var(--teal);text-transform:uppercase;margin-bottom:12px;font-style:italic;}
.contact-title{font-size:clamp(24px,6vw,40px);font-weight:900;line-height:1.35;color:var(--navy);margin-bottom:16px;}
.contact-title em{font-style:normal;background:linear-gradient(transparent 60%,var(--yellow) 60%);padding:0 4px;}
.contact-desc{font-size:14px;color:var(--gray);line-height:2;margin-bottom:28px;}
.contact-btns{display:flex;flex-direction:column;gap:10px;align-items:flex-start;}
.contact-line-btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;background:#06C755;color:var(--white);font-size:16px;font-weight:900;padding:16px 36px;border-radius:var(--rd-pill);transition:all 0.25s;box-shadow:0 4px 20px rgba(6,199,85,0.3);}
.contact-line-btn:hover{background:#05b04c;transform:translateY(-2px);box-shadow:0 8px 32px rgba(6,199,85,0.4);}
.contact-line-btn svg{width:22px;height:22px;flex-shrink:0;fill:currentColor;}
.contact-line-note{font-size:12px;color:var(--gray-light);}
.contact-deco{position:absolute;pointer-events:none;z-index:0;}
.contact-deco img{width:100%;height:auto;}
.contact-deco-star1{top:40px;right:30px;width:36px;}
.contact-deco-star2{top:55%;left:10px;width:28px;}
.contact-deco-star3{bottom:120px;right:80px;width:24px;}
.contact-form-box{background:var(--white);border-radius:var(--rd);padding:36px 28px;box-shadow:0 4px 24px rgba(0,0,0,0.06);max-width:50%;}
.contact-form-title{font-size:20px;font-weight:900;color:var(--navy);margin-bottom:24px;display:inline-block;background:linear-gradient(transparent 60%,var(--yellow) 60%);padding:0 4px;}
.contact-form-group{margin-bottom:20px;}
.contact-form-label{display:block;font-size:14px;font-weight:700;color:var(--navy);margin-bottom:8px;}
.contact-form-input{width:100%;padding:14px 18px;font-size:15px;font-family:var(--sans);color:var(--dark);background:var(--white);border:1.5px solid var(--border);border-radius:var(--rd-sm);outline:none;transition:border-color 0.3s;}
.contact-form-input::placeholder{color:var(--gray-light);}
.contact-form-input:focus{border-color:var(--teal);}
.contact-form-submit{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:18px;background:var(--yellow);color:var(--navy);font-size:16px;font-weight:900;font-family:var(--sans);border:none;border-radius:var(--rd-pill);cursor:pointer;transition:all 0.25s;box-shadow:0 4px 20px rgba(255,210,51,0.3);margin-top:28px;}
.contact-form-submit:hover{background:var(--yellow-dark);transform:translateY(-2px);box-shadow:0 8px 32px rgba(255,210,51,0.4);}
.contact-form-note{text-align:center;font-size:13px;color:var(--gray);margin-top:16px;display:flex;align-items:center;justify-content:center;gap:6px;}
.contact-form-note svg{stroke:var(--teal);flex-shrink:0;}
.contact-form-note strong{color:var(--teal);font-weight:700;}

/* ══════════════════════════════════════════════════
   FOOTER（旧クラスは削除済み。Footer V2 は末尾参照）
══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   REVEAL
══════════════════════════════════════════════════ */
.r { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.r.v { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.sp-br { display: inline; }
.voice-fallback { display: none; }

/* ══════════════════════════════════════════════════
   PC
══════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .nav { padding: 10px 5%; }
  .nav-links { display: flex; }
  .sp-br { display: none; }

  .hero.hero-bg {
    padding: 70px 6% 60px;
    min-height: 100vh;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .hero.hero-bg .hero-h1 {
    font-size: clamp(36px, 4.2vw, 52px);
  }
  .hero.hero-bg .hero-btns {
    flex-direction: row;
    gap: 14px;
  }
  .hero.hero-bg .hero-btn,
  .hero.hero-bg .hero-btn-s.glass {
    width: auto;
    max-width: none;
  }
  .hero-tags {
    max-width: 700px;
  }
  .hero-content {
    padding: 40px 36px;
    max-width: 640px;
  }

  .sec { padding: 96px 6%; }
  .sec-title { font-size: 34px; }


  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
  }
  .pain-bubble {
    font-size: 18px;
    padding: 16px 36px;
  }
  .pain-card {
    padding: 36px 28px 32px;
  }
  .pain-card-title {
    font-size: 16px;
  }
  .pain-card-body {
    font-size: 13px;
  }

  .sec-svc2 { padding: 96px 6% 24px; margin-bottom: 0; background-color: #f3f2f0; background-image: url('/service/images/svc-bg-pc.jpg'); }
  .sec-svc2-cards { padding: 0 6% 40px; }
  .svc2-hero { flex-direction: row; align-items: center; gap: 40px; }
  .svc2-hero-title{font-size:34px;}
  .svc2-hero-desc { font-size: 16px; }
  .svc2-tags { gap: 14px; }
  .svc2-tag { font-size: 14px; padding: 10px 28px; }
  .svc2-list { gap: 24px; }
  .svc2-card { flex-direction: row; align-items: stretch; gap: 32px; padding: 36px 32px; }
  .svc2-card:nth-child(even) { flex-direction: row-reverse; }
  .svc2-card-img { width: 260px; flex-shrink: 0; aspect-ratio: 4 / 3; }
  .svc2-card-name { font-size: 26px; }
  .svc2-card-price { font-size: 20px; }
  .svc2-card-desc { font-size: 14px; }
  .svc2-cta-box { padding: 6px 48px; gap: 48px; }
  .svc2-cta-badge-wrap { width: 240px; }
  .svc2-cta-title { font-size: 26px; }
  .svc2-cta-icon-circle { width: 96px; height: 96px; }
  .svc2-cta-icons { gap: 28px; }
  .svc2-cta-illust { width: 140px; }
  .svc2-cta-btn { font-size: 24px; padding: 20px 64px; }

  .sec-flow-header {
    padding: 96px 6% 56px;
  }
  .sec-flow-header .sec-inner {
    max-width: 1100px;
  }
  .sec-flow-steps {
    padding: 56px 6% 96px;
  }
  .sec-flow-steps .sec-inner {
    max-width: 1100px;
  }
  .flow-steps-wrap {
    max-width: 100%;
  }
  .flow-step-arrow {
    padding-left: 150px;
  }
  .flow-step-num {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
  .flow-step-icon {
    width: 68px;
    height: 68px;
  }
  .flow-step-title {
    font-size: 24px;
  }
  .flow-step-body {
    font-size: 14px;
  }
  .flow-person-bg {
    right: calc(-50vw + 50%);
    bottom: -320px;
    width: 78%;
  }
  .flow-deco-star1 {
    width: 56px;
    right: -90px;
  }
  .flow-deco-star2 {
    width: 80px;
    right: -110px;
  }
  .flow-deco-star3 {
    width: 44px;
    left: -70px;
  }
  .flow-deco-dots {
    width: 56px;
    left: -70px;
  }
  .flow-support {
    max-width: 100%;
  }
  .flow-support-title {
    font-size: 20px;
  }
  .flow-cta-wrap {
    max-width: 100%;
  }
  .flow-cta-illust {
    width: 100px;
  }
  .flow-cta-btn {
    font-size: 22px;
    padding: 22px 56px;
  }



  .sec-voice-header{padding:80px 6% 56px;}
  .sec-voice-header .sec-inner{max-width:1100px;}
  .voice-title{font-size:44px;}
  .sec-voice-cards{padding:40px 6% 96px;}
  .voice-grid{grid-template-columns:repeat(2,1fr);gap:24px;}
  .voice-card{padding:36px 32px;}
  .voice-card-avatar{width:80px;height:80px;}
  .voice-card-avatar-circle{width:80px;height:80px;font-size:28px;}
  .voice-card-avatar-paint{width:88px;height:88px;}
  .voice-card-body{font-size:16px;}
  .voice-desc{font-size:15px;}

  .sec-contact{padding:96px 6% 80px;}
  .contact-title{font-size:40px;}
  .contact-desc{font-size:15px;}
  .contact-line-btn{font-size:18px;padding:18px 44px;}
  .contact-bg-img{width:60%;}
  .contact-form-box{padding:48px 40px;}
  .contact-form-title{font-size:24px;}

  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 56px; justify-items: flex-start; }
  .why-card-emoji { width: 140px; height: 140px; font-size: 56px; }
  .why-card-title { font-size: 20px; margin-bottom: 12px; }
  .why-card-body { font-size: 14px; max-width: 300px; }
  .why-card-num { width: 36px; height: 36px; font-size: 16px; top: -10px; }

  .sec-faq{padding:96px 6%;}
  .faq-q2-text{font-size:18px;}
  .faq-a2{font-size:15px;}
  .faq-deco-star1{width:64px;left:40px;}
  .faq-deco-star2{width:48px;right:100px;}
  .faq-deco-star3{width:36px;}

  .sec-recruit-header { padding: 56px 6% 32px; }
  .sec-recruit-cards { padding: 0 6% 96px; }
  .recruit-title { font-size: 34px; }
  .recruit-body p { font-size: 16px; }
  .recruit-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .recruit-card { padding: 40px 28px; }
  .recruit-card-icon { width: 88px; height: 88px; font-size: 34px; }
  .recruit-card-title { font-size: 20px; }
  .recruit-card-body { font-size: 14px; }
  .recruit-deco-star1 { width: 56px; right: 40px; }
  .recruit-deco-star2 { width: 72px; right: 80px; }
  .recruit-deco-dots { width: 56px; left: 20px; }
  .recruit-cta-illust { width: 100px; }
  .recruit-cta-btn { font-size: 22px; padding: 22px 56px; }
  .svc2-card { display: flex !important; }
  .svc2-tag { cursor: default; }
}
@media (min-width: 1200px) {
  .sec { padding: 112px 8%; }
  .sec-faq{padding:112px 8%;}
  .sec-contact{padding:112px 8% 96px;}
  .contact-title{font-size:44px;}
  .contact-bg-img{width:55%;}
  .sec-voice-header{padding:96px 8% 64px;}
  .sec-voice-cards{padding:48px 8% 112px;}
  .hero.hero-bg {
    padding: 80px 8% 80px;
  }
  .hero.hero-bg .hero-h1 {
    font-size: clamp(44px, 4.5vw, 58px);
  }

  .why-grid { gap: 48px; }

  .sec-flow-header {
    padding: 112px 8% 64px;
  }
  .sec-flow-steps {
    padding: 64px 8% 112px;
  }

  .sec-recruit-header { padding: 64px 8% 40px; }
  .sec-recruit-cards { padding: 0 8% 112px; }

  .sec-svc2 { padding: 112px 8% 24px; margin-bottom: 0; }
  .sec-svc2-cards { padding: 0 8% 40px; }
  .svc2-card { gap: 40px; padding: 40px 40px; }
  .svc2-card-img { width: 300px; }
}


/* ══════════════════════════════════════════════════
   SP（〜767px）
══════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Hero ── */
  .hero.hero-bg {
    min-height: 75svh;
    padding: 20px 16px 12px;
    background-position: 41% center;
  }
  .hero-content {
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .hero.hero-bg .hero-eyebrow { font-size: 9px; padding: 4px 14px; margin-bottom: 10px; }
  .hero.hero-bg .hero-h1 { font-size: clamp(24px, 7vw, 44px); margin-bottom: 10px; }
  .hero.hero-bg .hero-badges { gap: 6px; margin-bottom: 18px; }
  .hero.hero-bg .badge.glass { font-size: 10px; padding: 5px 14px; }
  .hero.hero-bg .hero-btns { gap: 8px; }
  .hero.hero-bg .hero-btn { font-size: 13px; padding: 12px 28px; max-width: 280px; }
  .hero.hero-bg .hero-btn svg { width: 18px; height: 18px; }
  .hero.hero-bg .hero-btn-s.glass { font-size: 11px; padding: 10px 22px; max-width: 280px; }
  .hero-nav-tags { gap: 14px; padding: 12px 20px; border-radius: 18px; margin-top: auto; }
  .hero-nav-tag { font-size: 12px; gap: 5px; }
  .hero-nav-tag-icon { width: 32px; height: 32px; font-size: 14px; }
  .hero-nav-sep { font-size: 16px; }

  /* ── Marquee ── */
  .mq { padding: 6px 0; }
  .mq-track span { font-size: 10px; padding: 0 16px; }

  /* ── About Us ── */
  .sec-about-us { padding: 40px 20px; }
  .about-us-body { margin-bottom: 16px; }
  .about-us-points { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
  .about-us-point { flex-direction: column; text-align: center; padding: 10px 6px; gap: 4px; }
  .about-us-point-icon { width: 40px; height: 40px; font-size: 18px; }
  .about-us-point-label { font-size: 8px; }
  .about-us-point-text { font-size: 9px; line-height: 1.4; }

  /* ── Pain Points ── */
  .pain-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
  .pain-card { padding: 20px 14px 16px; }
  .pain-card-num { width: 28px; height: 28px; font-size: 13px; top: -12px; left: 14px; }
  .pain-card-emoji { font-size: 28px; width: 56px; height: 56px; margin: 0 auto 8px; }
  .pain-card-title { font-size: 12px; margin-bottom: 6px; line-height: 1.4; }
  .pain-card-body { font-size: 10px; line-height: 1.7; }
  .pain-bubble { font-size: 13px; padding: 10px 20px; margin-bottom: 28px; }

  /* ── Why Beauté ── */
  .sec-why { padding: 40px 20px; }
  .sec-why .sec-title { margin-bottom: 0; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 24px; }
  .why-card {
    text-align: center;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 18px; padding: 20px 4px 16px;
  }
  .why-card-num { width: 24px; height: 24px; font-size: 11px; top: -10px; left: 50%; transform: translateX(-50%); }
  .why-card-emoji { font-size: 28px; width: 56px; height: 56px; margin: 0 auto 8px; }
  .why-card-title { font-size: 12px; margin-bottom: 6px; line-height: 1.4; }
  .why-card-body { font-size: 9px; line-height: 1.6; max-width: none; }

  /* ── All-in-One ヘッダー ── */
  .sec-svc2 {
    padding: 40px 20px 16px !important;
    background-color: #f3f3f1 !important;
    background-size: 140% auto !important;
    background-position: 70% top !important;
  }
  .sec-svc2 .sec-inner { gap: 0; }
  .svc2-hero { margin-bottom: 8px !important; }
  .svc2-hero-label { font-size: 10px; letter-spacing: 0.15em; margin-bottom: 4px; }
  .svc2-hero-title { font-size: 22px !important; margin-bottom: 8px; }
  .svc2-hero-desc { font-size: 12px; line-height: 1.8; margin-bottom: 16px; }

  /* ── All-in-One タブ 3+2段 ── */
  .svc2-tags {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    margin: 0 0 8px !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    overflow-x: visible !important;
  }
  .svc2-tag {
    font-size: 11px !important; font-weight: 700;
    padding: 10px 8px !important;
    border: 2px solid var(--border) !important;
    border-radius: var(--rd-pill) !important;
    background: var(--white) !important; color: var(--gray) !important;
    white-space: nowrap; text-align: center; cursor: pointer;
    transition: all 0.2s; margin-bottom: 0;
  }
  .svc2-tag:hover { border-color: var(--gray-light) !important; color: var(--navy) !important; }
  .svc2-tag.active { background: var(--navy) !important; color: var(--yellow) !important; border-color: var(--navy) !important; font-weight: 900; }
  .svc2-tag:nth-child(4) { grid-column: 1 / 2; }
  .svc2-tag:nth-child(5) { grid-column: 2 / 3; }

  /* ── All-in-One カード横スクロール ── */
  .svc2-list {
    display: flex !important; flex-direction: row !important;
    overflow-x: auto !important; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; gap: 12px !important;
    margin: 0 !important; padding: 0 20px 12px 20px !important;
    scrollbar-width: none;
  }
  .svc2-list::-webkit-scrollbar { display: none; }
  .svc2-card { flex: 0 0 80vw; max-width: 300px; scroll-snap-align: start; display: flex; }
  .svc2-card.show { display: flex; }

  /* ── All-in-One CTA ── */
  .sec-svc2-cards { background: #f3f3f1 !important; padding: 0 20px 16px !important; }
  .svc2-cta { margin-top: 8px !important; }
  .svc2-cta-box { flex-direction: column; padding: 20px 16px !important; gap: 12px !important; border-width: 2px; }
  .svc2-cta-badge-wrap { display: none !important; }
  .svc2-cta-title { font-size: 16px; text-align: center; }
  .svc2-cta-icons { justify-content: center; }
  .svc2-cta-icon-circle { width: 60px; height: 60px; font-size: 22px; }
  .svc2-cta-icon-label { font-size: 11px; }
  .svc2-cta-btn-wrap { margin-top: 4px !important; padding-bottom: 0 !important; }
  .svc2-cta-btn { font-size: 14px !important; padding: 10px 28px !important; white-space: nowrap !important; }

  /* ── Workflow ヘッダー ── */
  .sec-flow-header { padding: 32px 20px 16px !important; }
  .flow-main-title { font-size: 20px !important; margin-bottom: 8px !important; }
  .flow-main-desc { font-size: 12px !important; }

  /* ── Workflow ステップ 2列グリッド ── */
  .sec-flow-steps { padding: 24px 16px 32px !important; }
  .flow-step-arrow { display: none !important; }
  .flow-steps-wrap { display: grid !important; grid-template-columns: 1fr 1fr; gap: 12px; }
  .flow-step-item {
    flex-direction: column !important; align-items: center !important;
    text-align: center; gap: 8px !important;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 16px; padding: 16px 10px 12px; position: relative;
  }
  .flow-step-num { width: 28px !important; height: 28px !important; font-size: 14px !important; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); }
  .flow-step-icon { width: 40px !important; height: 40px !important; margin-top: 8px; }
  .flow-step-icon-ph { font-size: 18px !important; }
  .flow-step-content { padding-top: 2px; }
  .flow-step-title { font-size: 10px !important; margin-bottom: 2px !important; white-space: nowrap !important; }
  .flow-step-body { font-size: 9px !important; line-height: 1.6 !important; }
  .flow-person-bg { display: none !important; }
  .flow-deco { display: none !important; }

  /* ── Workflow サポート・CTA ── */
  .flow-support { display: none !important; }
  .flow-cta-wrap { margin-top: 20px !important; gap: 8px !important; }
  .flow-cta-illust { width: 50px !important; }
  .flow-cta-btn { font-size: 14px !important; padding: 10px 28px !important; white-space: nowrap !important; }

  /* ── Recruitment ヘッダー ── */
  .sec-recruit-header { padding: 32px 20px 16px !important; }
  .recruit-title { font-size: 20px !important; margin-bottom: 8px !important; }
  .recruit-body { margin-bottom: 16px !important; }
  .recruit-body p { font-size: 12px !important; line-height: 1.8 !important; margin-bottom: 6px !important; }

  /* ── Recruitment カード ── */
  .sec-recruit-cards { padding: 0 20px 32px !important; }
  .recruit-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; margin-bottom: 24px !important; }
  .recruit-card { padding: 16px 8px 12px !important; text-align: center; }
  .recruit-card-icon { width: 44px !important; height: 44px !important; margin: 0 auto 8px !important; font-size: 20px !important; }
  .recruit-card-icon-ph { font-size: 20px !important; }
  .recruit-card-title { font-size: 11px !important; margin-bottom: 6px !important; line-height: 1.4 !important; }
  .recruit-card-body { font-size: 9px !important; line-height: 1.6 !important; }
  .recruit-card-body br { display: none; }
  .recruit-deco { display: none !important; }
  .recruit-cta { gap: 8px !important; }
  .recruit-cta-illust { width: 50px !important; }
  .recruit-cta-btn { font-size: 14px !important; padding: 10px 24px !important; white-space: nowrap !important; }

  /* ── Price List ── */
  #price { padding: 32px 20px !important; }
  #price .sec-title { font-size: 20px !important; margin-bottom: 8px !important; }
  #price .sec-desc { font-size: 11px !important; margin-bottom: 16px !important; }
  .price-scroll { overflow-x: visible !important; margin-top: 16px !important; }
  .price-table { min-width: 0 !important; border: none !important; border-radius: 0 !important; width: 100% !important; }
  .price-table thead { display: none !important; }
  .price-table tbody { display: flex !important; flex-direction: column !important; gap: 6px !important; }
  /* グリッド2カラム: 左=名前・右=価格+納期 */
  .price-table tbody tr {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas: "name price" "name note" !important;
    column-gap: 12px !important;
    row-gap: 2px !important;
    align-items: start !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 10px !important;
    padding: 12px 14px !important;
  }
  .price-table tbody tr:nth-child(odd) { background: var(--white) !important; }
  .price-table tbody tr:nth-child(even) { background: var(--gray-bg) !important; }
  .price-table tbody tr:hover { background: var(--yellow-light) !important; }
  .price-table td { border-bottom: none !important; padding: 0 !important; }
  /* 左カラム: サービス名（折り返しOK） */
  .price-table td:first-child {
    grid-area: name !important; align-self: center !important;
    min-width: 0 !important; font-size: 12px !important; font-weight: 700 !important;
    color: var(--navy) !important; white-space: normal !important; overflow: visible !important;
    text-overflow: clip !important; line-height: 1.5 !important; word-break: break-word !important;
  }
  /* 右上: 価格 */
  .price-table td:nth-child(2) {
    grid-area: price !important; align-self: end !important;
    text-align: right !important; font-size: 14px !important; font-weight: 700 !important;
    color: var(--teal) !important; white-space: nowrap !important; line-height: 1.3 !important;
  }
  /* 右下: 納期目安 */
  .price-table td:nth-child(3) {
    grid-area: note !important; align-self: start !important;
    text-align: right !important; font-size: 10px !important;
    color: var(--gray-light) !important; white-space: normal !important;
    line-height: 1.5 !important; max-width: 110px !important;
  }
  .price-note { font-size: 10px !important; margin-top: 12px !important; }

  /* ── Voice ── */
  .sec-voice-header { padding: 32px 20px 12px !important; }
  .voice-title { font-size: 20px !important; margin-bottom: 4px !important; }
  .voice-desc { font-size: 11px !important; }
  .sec-voice-cards { padding: 12px 20px 32px !important; }
  .voice-deco { display: none !important; }
  .voice-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .voice-card { padding: 14px 12px !important; border-radius: 14px !important; }
  .voice-card-avatar { width: 36px !important; height: 36px !important; margin-bottom: 6px !important; }
  .voice-card-avatar-circle { width: 36px !important; height: 36px !important; font-size: 14px !important; }
  .voice-card-avatar-paint { width: 40px !important; height: 40px !important; }
  .voice-card-quote { font-size: 28px !important; top: 6px !important; right: 8px !important; }
  .voice-card-body { font-size: 10px !important; line-height: 1.7 !important; margin-bottom: 6px !important; }
  .voice-card-line { margin-bottom: 6px !important; }
  .voice-card-who { font-size: 9px !important; }
  .voice-card-deco { font-size: 10px !important; bottom: 6px !important; right: 8px !important; }

  /* ── FAQ ── */
  .sec-faq { padding: 32px 20px !important; }
  .sec-faq .sec-title { font-size: 20px !important; margin-bottom: 20px !important; }
  .faq-deco { display: none !important; }
  .faq-list2 { gap: 8px !important; }
  .faq-item2 { border-radius: 14px !important; }
  .faq-q2 { padding: 12px 14px 0 !important; gap: 10px !important; }
  .faq-q2-icon { width: 24px !important; height: 24px !important; font-size: 11px !important; }
  .faq-q2-text { font-size: 12px !important; }
  .faq-a2 { padding: 8px 14px 12px 48px !important; font-size: 11px !important; line-height: 1.7 !important; }

  /* ── Contact ── */
  .sec-contact { padding: 32px 20px 40px !important; min-height: auto !important; }
  .contact-deco { display: none !important; }
  .contact-bg-img { display: none !important; }
  .contact-hero { flex-direction: column !important; text-align: center !important; align-items: center !important; margin-bottom: 24px !important; }
  .contact-hero-text { order: 1 !important; }
  .contact-btns { align-items: center !important; }
  .contact-title { font-size: 18px !important; margin-bottom: 8px !important; }
  .contact-desc { font-size: 11px !important; margin-bottom: 16px !important; }
  .contact-line-btn { font-size: 14px !important; padding: 12px 28px !important; }
  .contact-line-note { font-size: 10px !important; }
  .contact-form-box { padding: 20px 16px !important; max-width: 100% !important; }
  .contact-form-title { font-size: 16px !important; margin-bottom: 16px !important; }
  .contact-form-group { margin-bottom: 12px !important; }
  .contact-form-label { font-size: 12px !important; margin-bottom: 4px !important; }
  .contact-form-input { padding: 10px 14px !important; font-size: 14px !important; }
  .contact-form-submit { font-size: 14px !important; padding: 14px !important; margin-top: 16px !important; }
  .contact-form-note { font-size: 11px !important; margin-top: 10px !important; }
}

/* ══════════════════════════════════════════════════
   FOOTER V2 — パステル4色カラム型（index.php 先行適用）
══════════════════════════════════════════════════ */
.footer-v2 {
  padding: 32px 16px;
  background: var(--white);
}
.footer-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-v2-card {
  border-radius: 8px;
  padding: 24px 22px;
  border: 1px solid rgba(0,0,0,0.04);
}

/* ── ブランドブロック（マットラベンダー） ── */
.footer-v2-brand {
  background: #E8E4F3;
}
.footer-v2-brand .footer-v2-logo {
  font-family: var(--en);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0;
  white-space: nowrap;
}
.footer-v2-mag-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.6);
  color: var(--navy);
  border: 1.5px solid rgba(26,26,46,0.15);
  font-size: 11px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--rd-pill);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-v2-mag-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── SERVICES ブロック（マットミント） ── */
.footer-v2-services {
  background: #D4ECE5;
}
/* ── COMPANY ブロック（マットクリーム） ── */
.footer-v2-company {
  background: #F5EBC8;
}

.footer-v2-services .footer-v2-links a {
  color: #2A6B62;
}
.footer-v2-services .footer-v2-links a:hover {
  color: var(--navy);
}
.footer-v2-company .footer-v2-links a {
  color: #6B5520;
}
.footer-v2-company .footer-v2-links a:hover {
  color: var(--navy);
}

/* ── リンクリスト共通 ── */
.footer-v2-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-v2-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}

/* ── 下部行（マットピンクグレー） ── */
.footer-v2-bottom {
  background: #EDE5E2;
  border-radius: 8px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.04);
}
.footer-v2-copy {
  font-family: var(--en);
  font-size: 10px;
  color: rgba(26,26,46,0.5);
  letter-spacing: 0.06em;
}
.footer-v2-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.footer-v2-legal a {
  font-size: 11px;
  font-weight: 600;
  color: rgba(26,26,46,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-v2-legal a:hover {
  color: var(--navy);
  text-decoration: underline;
}
.footer-v2-sep {
  font-size: 10px;
  color: rgba(26,26,46,0.3);
}

/* ── PC（≥768px） ── */
@media (min-width: 768px) {
  .footer-v2 {
    padding: 24px 6%;
  }
  .footer-v2-grid {
    grid-template-columns: 1.4fr 2fr 1fr;
    gap: 12px;
    margin-bottom: 10px;
    align-items: stretch;
  }
  .footer-v2-card {
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer-v2-brand {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .footer-v2-brand-left {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
  }
  .footer-v2-brand-right {
    flex-shrink: 0;
  }
  .footer-v2-brand .footer-v2-logo {
    font-size: 17px;
    margin-bottom: 0;
  }
  .footer-v2-mag-btn {
    font-size: 11px;
    padding: 8px 14px;
    white-space: nowrap;
    align-self: flex-start;
  }
  .footer-v2-links {
    gap: 5px;
  }
  .footer-v2-services .footer-v2-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .footer-v2-company .footer-v2-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .footer-v2-links a {
    font-size: 12px;
  }
  .footer-v2-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 22px;
  }
  .footer-v2-copy {
    font-size: 10px;
  }
  .footer-v2-legal a {
    font-size: 11px;
  }
}

/* ── 大画面（≥1200px） ── */
@media (min-width: 1200px) {
  .footer-v2 {
    padding: 32px 8%;
  }
}

/* ── SP：ブランドブロック縦積みに戻す ── */
@media (max-width: 767px) {
  .footer-v2 { padding: 20px 12px; }
  .footer-v2-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 6px;
    margin-bottom: 8px;
    align-items: stretch;
  }
  .footer-v2-card { padding: 12px 10px; }

  /* 左 BRAND */
  .footer-v2-brand { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-v2-brand-left, .footer-v2-brand-right { width: 100%; }
  .footer-v2-logo { font-size: 12px; white-space: nowrap; margin-bottom: 0; }
  .footer-v2-mag-btn { font-size: 9px; padding: 6px 8px; white-space: nowrap; }

  /* 中央 SERVICES – 1列縦並び */
  .footer-v2-services .footer-v2-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  /* 右 COMPANY – 1列縦並び */
  .footer-v2-company .footer-v2-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .footer-v2-services .footer-v2-links a,
  .footer-v2-company .footer-v2-links a { font-size: 10px; }

  /* 下部 legal */
  .footer-v2-bottom {
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
    align-items: center;
    text-align: center;
  }
  .footer-v2-copy { font-size: 9px; }
  .footer-v2-legal a { font-size: 9px; }
}
