/* ========================================
   むぅ＆もも Launch Package - Demo Site
   ======================================== */

:root {
  --color-bg: #faf8f5;
  --color-surface: #fff;
  --color-text: #2c2a28;
  --color-text-muted: #6b6560;
  --color-accent: #c97b63;
  --color-accent-light: #e8b4a8;
  --color-accent-dark: #a85d47;
  --color-border: #e8e4df;
  --font-sans: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(44, 42, 40, 0.06);
  --shadow-hover: 0 8px 32px rgba(44, 42, 40, 0.1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: rgba(250, 248, 245, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

.btn-nav {
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 999px;
}

.btn-nav:hover {
  background: var(--color-accent-dark);
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: var(--transition);
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}

.drawer.open {
  display: flex;
}

.drawer a {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  will-change: transform;
  transform: translateZ(0);
}

.hero-shape-1 {
  width: 60vmin;
  height: 60vmin;
  background: var(--color-accent-light);
  top: -20%;
  right: -10%;
}

.hero-shape-2 {
  width: 40vmin;
  height: 40vmin;
  background: #f5e6dc;
  bottom: 10%;
  left: -5%;
}

.hero-shape-3 {
  width: 30vmin;
  height: 30vmin;
  background: #e8d5ce;
  top: 50%;
  left: 30%;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
}


.hero-price {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-price-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.hero-price-value {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}

.hero-cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

.hero-pages-note {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-pages-note a {
  color: var(--color-accent);
  font-weight: 500;
}

.hero-pages-note a:hover {
  text-decoration: underline;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: heroFadeUp 0.5s ease-out 0s forwards;
}

.hero-title {
  margin: 0 0 0.5rem;
  opacity: 0;
  animation: heroFadeUp 0.5s ease-out 0.07s forwards;
}

.hero-title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.hero-title-sub {
  display: block;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.hero-catch {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--color-text-muted);
  margin: 1.25rem 0 1.75rem;
  opacity: 0;
  animation: heroFadeUp 0.5s ease-out 0.14s forwards;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 1rem 0 1.5rem;
  opacity: 0;
  animation: heroFadeUp 0.5s ease-out 0.21s forwards;
}

.hero-basic-note {
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0;
  animation: heroFadeUp 0.5s ease-out 0.35s forwards;
}

.hero-basic-note strong {
  color: var(--color-accent-dark);
  font-weight: 600;
}

.hero-cta {
  opacity: 0;
  animation: heroFadeUp 0.5s ease-out 0.28s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  border-radius: 1px;
  transform: translateZ(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}

[data-inview] {
  opacity: 0;
  transform: translateY(20px) translateZ(0);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-inview].is-inview {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

/* Target (こんな方に) */
.target-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.target-item {
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.target-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--color-accent-dark);
}

.target-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Packages (トップ用カード) */
.packages-lead {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
}

.packages-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  opacity: 0.9;
}

.package-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.package-card {
  padding: 1.5rem 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.package-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.package-price {
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.package-desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.package-links {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.package-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
}

.package-link:hover {
  text-decoration: underline;
}

.package-link--demo {
  color: var(--color-accent-dark);
}

.inline-demo-link {
  font-weight: 600;
  color: var(--color-accent);
}

.inline-demo-link:hover {
  text-decoration: underline;
}

.packages-cta {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 0.95rem;
}

.packages-cta a {
  color: var(--color-accent);
  font-weight: 500;
}

.packages-cta a:hover {
  text-decoration: underline;
}

/* About */
.about-lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.9;
}

/* Contents */
.contents-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contents-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contents-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) translateZ(0);
}

.contents-num {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1;
}

.contents-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.contents-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Price */
.price-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 2px solid var(--color-accent-light);
  text-align: center;
}

.price-card-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
}

.price-card-value {
  margin: 0 0 1rem;
}

.price-card-yen {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price-card-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

.price-card-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Contact */
.contact-lead {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
}

.contact-cta-wrap {
  text-align: center;
}

.contact-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}

.contact-cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

/* Sub pages: page hero + content */
.page-body {
  padding-top: 70px;
}

.page-hero {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.page-hero .page-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-hero .page-lead {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.page-content {
  padding: 3rem 1.5rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.page-content .section-title {
  text-align: left;
  margin: 2.5rem 0 1rem;
  font-size: 1.25rem;
}

.page-content .section-title:first-child {
  margin-top: 0;
}

.page-content p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.page-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
  font-size: 0.95rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.data-table th,
.data-table td {
  padding: 0.9rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.data-table th {
  font-weight: 600;
  background: #f8f6f3;
  width: 28%;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: none;
}

.data-table .business-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.data-table .business-list li {
  margin-bottom: 0.4rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.card-list li {
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.card-list h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card-list p {
  margin: 0;
  font-size: 0.95rem;
}

.flow-cta {
  text-align: center;
  margin: 3rem 0 0;
}

.flow-cta a {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}

.flow-cta a:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

.faq-list {
  margin: 0 0 2rem;
}

.faq-list dt {
  margin: 1.25rem 0 0.4rem;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  margin: 0 0 0 1rem;
  padding: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.package-detail {
  margin: 2rem 0;
  padding: 1.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.package-detail-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.package-detail-price {
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}

.package-detail-catch {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.package-detail ul {
  margin: 0;
  padding-left: 1.25rem;
}

.package-detail li {
  margin-bottom: 0.35rem;
}

.page-content--wide {
  max-width: 900px;
}

.glossary-list {
  margin: 0 0 2rem;
}

.glossary-list dt {
  margin: 1rem 0 0.25rem;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.glossary-list dt:first-child {
  margin-top: 0.5rem;
}

.glossary-list dd {
  margin: 0 0 0 1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 2rem 1.5rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-company {
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 0 0 0.75rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-cta {
  margin: 0 0 0.5rem;
}

.footer-cta a {
  font-weight: 600;
  color: var(--color-accent);
}

.footer-cta a:hover {
  text-decoration: underline;
}

.footer-qr {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line, #e5e7eb);
}
.footer-qr p {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.footer-qr img {
  display: block;
  width: 100px;
  height: 100px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-logo {
  font-weight: 700;
  margin: 0 0 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero {
    padding: 5rem 1rem 3rem;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .contents-item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
  }

  .contents-num {
    font-size: 1.25rem;
  }

  .page-hero {
    padding: 3rem 1rem 2rem;
  }

  .page-content {
    padding: 2rem 1rem 3rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .data-table th {
    width: 32%;
  }
}

@media (max-width: 480px) {
  .hero-price-value {
    font-size: 1.75rem;
  }

  .price-card {
    padding: 1.75rem 1.5rem;
  }
}
