/* ===========================
   合同会社はぴり LP スタイル
   =========================== */

:root {
  --color-pink: #FFC5C5;
  --color-pink-deep: #F9A1A1;
  --color-peach: #FFD8B8;
  --color-yellow: #FFE9A8;
  --color-mint: #C8E6D0;
  --color-blue: #BDDEF0;
  --color-lavender: #D9C8E8;
  --color-cream: #FFF7EF;
  --color-ivory: #FDF9F3;
  --color-text: #4A3B35;
  --color-text-sub: #7A6A62;
  --color-white: #ffffff;
  --color-border: #F0E4DB;
  --shadow-soft: 0 10px 30px rgba(201, 138, 120, 0.12);
  --shadow-card: 0 6px 20px rgba(201, 138, 120, 0.10);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --font-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-display: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text);
  background: var(--color-ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.pc-only { display: inline; }
@media (max-width: 768px) { .pc-only { display: none; } }

/* ===========================
   ヘッダー
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
@media (max-width: 520px) {
  .logo-img { height: 40px; max-width: 180px; }
}

.nav ul {
  display: flex;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-pink-deep);
  transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }

.btn-contact-header {
  background: var(--color-pink-deep);
  color: var(--color-white);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

.menu-toggle { display: none; }

@media (max-width: 960px) {
  .nav, .btn-contact-header { display: none; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: 0.3s;
  }
  .nav.open {
    display: block;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--color-white);
    padding: 24px;
    border-top: 1px solid var(--color-border);
  }
  .nav.open ul { flex-direction: column; gap: 20px; }
}

/* ===========================
   ヒーロー
   =========================== */
.hero {
  position: relative;
  padding: 140px 0 120px;
  background: linear-gradient(180deg, #FFF0EA 0%, #FFF7EF 60%, #FFFAF3 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: var(--color-pink);
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(60px);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 60px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: var(--color-peach);
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(50px);
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(201, 138, 120, 0.25);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  max-width: 560px;
  text-align: left;
}
.hero-title,
.hero-sub,
.hero-lead {
  text-align: left;
}
.hero-cta,
.hero-badges {
  justify-content: flex-start;
}

.hero-lead {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-pink-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text);
}

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

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-pink-deep), #F7B898);
  color: var(--color-white);
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(249, 161, 161, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(249, 161, 161, 0.5);
  opacity: 1;
}
.btn-large {
  padding: 22px 56px;
  font-size: 18px;
}

.btn-secondary {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-pink-deep);
  padding: 18px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  border: 2px solid var(--color-pink);
  font-size: 16px;
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.badge img {
  width: 32px;
  height: 32px;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  line-height: 0;
}
.wave-divider img { width: 100%; height: auto; }

@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    aspect-ratio: 5/4;
    max-width: 520px;
    margin: 0 auto;
    order: 1;
  }
  .hero-content {
    order: 2;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero { padding: 110px 0 80px; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}

/* ===========================
   セクション共通
   =========================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-pink-deep);
  background: var(--color-cream);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--color-text-sub);
  font-size: 15px;
}
.section-head.light .section-label {
  background: rgba(255, 255, 255, 0.9);
}
.section-head.light .section-title,
.section-head.light .section-desc {
  color: var(--color-white);
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
}

/* ===========================
   Problem
   =========================== */
.problem {
  background: var(--color-ivory);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.problem-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.problem-img {
  height: 180px;
  background: var(--color-cream);
  overflow: hidden;
}
.problem-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 20px 8px;
  color: var(--color-pink-deep);
}
.problem-card p {
  padding: 0 20px 24px;
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Affinity
   =========================== */
.affinity {
  background: linear-gradient(135deg, #FFF7EF 0%, #FFECE3 100%);
  position: relative;
  overflow: hidden;
}
.affinity::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -80px;
  width: 240px;
  height: 240px;
  background: var(--color-pink);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(40px);
}
.affinity::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--color-peach);
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(50px);
}

.affinity-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.affinity-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  background: var(--color-cream);
}
.affinity-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.affinity-text .section-label { margin-bottom: 16px; }
.affinity-text .section-title {
  margin-bottom: 28px;
  text-align: left;
}
.affinity-text p {
  margin-bottom: 20px;
  color: var(--color-text);
}

.affinity-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed var(--color-pink);
}
.affinity-signature img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.affinity-signature p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
}

@media (max-width: 900px) {
  .affinity-inner { grid-template-columns: 1fr; gap: 40px; }
  .affinity-img { aspect-ratio: 5/4; max-width: 500px; margin: 0 auto; }
}

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

.service-card {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 100px;
  padding: 40px;
  background: var(--color-ivory);
  border-radius: var(--radius-lg);
  position: relative;
}
.service-card:last-child { margin-bottom: 0; }

.service-card.reverse {
  grid-template-columns: 5fr 6fr;
}
.service-card.reverse .service-img { order: 2; }

.service-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--color-cream);
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.service-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-pink);
  margin-bottom: 12px;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-catch {
  display: inline-block;
  background: var(--color-pink);
  color: var(--color-text);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-body p {
  margin-bottom: 20px;
  color: var(--color-text-sub);
}
.service-body strong { color: var(--color-text); }

.service-list {
  background: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--color-pink);
}
.service-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--color-text-sub);
}
.service-list li:last-child { margin-bottom: 0; }
.service-list li::before {
  content: "♡";
  position: absolute;
  left: 0;
  color: var(--color-pink-deep);
  font-weight: 700;
}

.service-note {
  font-size: 13px;
  color: var(--color-text-sub);
  font-style: italic;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .service-card,
  .service-card.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }
  .service-card.reverse .service-img { order: 0; }
  .service-num { font-size: 44px; }
  .service-body h3 { font-size: 22px; }
}

/* ===========================
   Benefit
   =========================== */
.benefit {
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.benefit-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.benefit-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 161, 161, 0.92), rgba(247, 184, 152, 0.92));
}
.benefit-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.benefit .container { position: relative; z-index: 2; }

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

.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
}
.benefit-card:hover { transform: translateY(-6px); }

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon img { width: 40px; height: 40px; }

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-pink-deep);
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-sub);
}

@media (max-width: 900px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Evidence / Profile
   =========================== */
.evidence {
  background: linear-gradient(180deg, var(--color-ivory), #FFF7EF);
}

.profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.profile-img {
  position: sticky;
  top: 100px;
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.profile-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  background: var(--color-cream);
}
.profile-name-jp {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.profile-name-en {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--color-text-sub);
  text-transform: uppercase;
}

.profile-title {
  display: inline-block;
  background: var(--color-pink);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
}
.profile-body p {
  margin-bottom: 20px;
}

.profile-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-left: 16px;
  border-left: 4px solid var(--color-pink-deep);
  line-height: 1.3;
}

.history-list li,
.license-list li {
  padding: 12px 16px;
  border-bottom: 1px dashed var(--color-border);
  font-size: 14px;
  display: flex;
  gap: 16px;
}
.history-list li span {
  font-weight: 700;
  color: var(--color-pink-deep);
  min-width: 70px;
  flex-shrink: 0;
}
.history-list li.highlight {
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  border-bottom: none;
  font-weight: 700;
}

.license-list li {
  display: list-item;
  padding-left: 32px;
  position: relative;
}
.license-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--color-pink-deep);
  font-weight: 700;
}

@media (max-width: 900px) {
  .profile { grid-template-columns: 1fr; gap: 40px; }
  .profile-img { position: static; max-width: 320px; margin: 0 auto; }
}

/* ===========================
   Voice
   =========================== */
.voice {
  background: var(--color-white);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.voice-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  background: var(--color-ivory);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.voice-img {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-cream);
}
.voice-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.voice-quote {
  position: relative;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
  padding-left: 24px;
}
.voice-quote::before {
  content: "“";
  position: absolute;
  left: 0; top: -12px;
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--color-pink);
  line-height: 1;
}
.voice-author {
  font-size: 13px;
  color: var(--color-pink-deep);
  font-weight: 700;
}

@media (max-width: 768px) {
  .voice-grid { grid-template-columns: 1fr; }
  .voice-card { grid-template-columns: 100px 1fr; padding: 20px; gap: 16px; }
}

/* ===========================
   Price
   =========================== */
.price {
  background: linear-gradient(180deg, #FFF7EF, #FFEDE1);
}

.price-table-wrap {
  max-width: 880px;
  margin: 0 auto 72px;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.price-table thead {
  background: var(--color-pink);
}
.price-table th {
  padding: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.price-table td {
  padding: 20px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 15px;
}
.price-table td:first-child {
  font-weight: 700;
  text-align: left;
}
.price-table td small {
  display: block;
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 4px;
}
.price-table .row-highlight {
  background: var(--color-cream);
}
.tag-free {
  display: inline-block;
  background: var(--color-pink-deep);
  color: var(--color-white);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  vertical-align: middle;
}
.price-note {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-top: 20px;
  text-align: center;
}

.location-box {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 40px;
  align-items: center;
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 960px;
  margin: 0 auto;
}
.location-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-cream);
}
.location-img img { width: 100%; height: 100%; object-fit: cover; }

.location-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 16px;
}
.location-address {
  margin-top: 16px;
  padding: 16px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .price-table th, .price-table td { padding: 12px 10px; font-size: 13px; }
  .location-box { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
}

/* ===========================
   Offer
   =========================== */
.offer {
  padding: 100px 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.offer-bg {
  position: absolute; inset: 0; z-index: 0;
}
.offer-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(249, 161, 161, 0.95), rgba(247, 200, 170, 0.9));
}
.offer-bg img { width: 100%; height: 100%; object-fit: cover; }

.offer-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.offer-label {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-pink-deep);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.offer-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.5;
}
.offer-text {
  margin-bottom: 24px;
  line-height: 2;
}
.offer-note {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 36px;
}
.offer .btn-primary {
  background: var(--color-white);
  color: var(--color-pink-deep);
}

/* ===========================
   FAQ
   =========================== */
.faq {
  background: var(--color-ivory);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq-q {
  width: 100%;
  padding: 24px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  color: var(--color-text);
}
.faq-q::before {
  content: "Q";
  background: var(--color-pink);
  color: var(--color-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 14px;
  flex-shrink: 0;
}
.faq-mark {
  color: var(--color-pink-deep);
  font-size: 24px;
  transition: transform 0.3s;
}
.faq-item.open .faq-mark {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 32px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-a p {
  padding-left: 48px;
  position: relative;
  color: var(--color-text-sub);
  line-height: 1.9;
}
.faq-a p::before {
  content: "A";
  position: absolute;
  left: 0; top: 0;
  background: var(--color-cream);
  color: var(--color-pink-deep);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 520px) {
  .faq-q { padding: 18px 20px; font-size: 15px; }
  .faq-a { padding: 0 20px; }
  .faq-item.open .faq-a { padding-bottom: 18px; }
}

/* ===========================
   Narrow
   =========================== */
.narrow {
  background: var(--color-white);
}
.narrow-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.narrow-inner .section-label { margin-bottom: 16px; }
.narrow-inner .section-title { margin-bottom: 40px; }

.narrow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
.narrow-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-ivory);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-pink);
}
.narrow-item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.narrow-item p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.narrow-item strong { color: var(--color-pink-deep); }

@media (max-width: 768px) {
  .narrow-grid { grid-template-columns: 1fr; }
}

/* ===========================
   Contact
   =========================== */
.contact {
  background: linear-gradient(180deg, var(--color-ivory), #FFEDE1);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 14px;
}
.required {
  display: inline-block;
  background: var(--color-pink-deep);
  color: var(--color-white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: var(--color-ivory);
  color: var(--color-text);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-pink-deep);
  background: var(--color-white);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.qr-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
}
.contact-card a {
  color: var(--color-pink-deep);
  font-weight: 700;
}
.contact-info {
  background: var(--color-cream);
  padding: 24px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.8;
}
.contact-info p { margin-bottom: 10px; }
.contact-info p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}

/* ===========================
   フッター
   =========================== */
.site-footer {
  background: #4A3B35;
  color: var(--color-white);
  padding: 60px 0 32px;
}
.footer-inner {
  text-align: center;
}
.footer-brand {
  margin-bottom: 32px;
}
.footer-logo {
  height: 64px;
  width: auto;
  max-width: 260px;
  margin: 0 auto 12px;
  object-fit: contain;
  background: var(--color-white);
  padding: 10px 18px;
  border-radius: 12px;
}
.footer-brand p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  font-size: 14px;
}
.copyright {
  font-size: 12px;
  opacity: 0.6;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* ===========================
   固定CTA
   =========================== */
.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, var(--color-pink-deep), #F7B898);
  color: var(--color-white);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 32px rgba(249, 161, 161, 0.5);
  z-index: 50;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  font-weight: 700;
  transition: transform 0.2s;
}
.floating-cta:hover { transform: translateY(-4px); opacity: 1; }
.floating-cta-label {
  font-size: 11px;
  background: var(--color-white);
  color: var(--color-pink-deep);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 4px;
}
.floating-cta-main {
  font-size: 15px;
}

@media (max-width: 768px) {
  .floating-cta {
    right: 12px;
    bottom: 12px;
    padding: 12px 20px;
  }
  .floating-cta-main { font-size: 13px; }
}

/* ===========================
   アニメーション
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
