@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&family=M+PLUS+Rounded+1c:wght@300;400;500;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #FAF6F1;
  --bg-section:  #F3EBE2;
  --bg-card:     #FFFFFF;
  --border:      #E2CEBA;
  --text:        #3D2B1F;
  --text-light:  #7A5C4E;
  --accent:      #9B6F5A;
  --accent-dark: #7A4F3A;
  --line:        #06C755;
  --line-hover:  #05A847;
  --radius:      16px;
  --shadow:      0 2px 16px rgba(100,60,40,.08);
  --max-w:       720px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.container.narrow { max-width: 560px; }

.section {
  padding: 72px 0;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

h2 {
  font-family: 'Klee One', cursive;
  font-size: clamp(22px, 5vw, 30px);
  color: var(--accent-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

h3 {
  font-family: 'Klee One', cursive;
  font-size: 16px;
  color: var(--accent-dark);
  line-height: 1.6;
  margin-bottom: 8px;
}

p { margin-bottom: 16px; color: var(--text-light); font-size: 14px; line-height: 1.9; }
p:last-child { margin-bottom: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  max-width: 100%;
  white-space: nowrap;
}
.btn-line {
  background: var(--line);
  color: #fff;
}
.btn-line:hover { background: var(--line-hover); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--bg-section); }

.btn-large { padding: 16px 40px; font-size: 16px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(100,60,40,.06);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Klee One', cursive;
  font-size: 20px;
  color: var(--accent-dark);
  font-weight: 600;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--line);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background .2s;
}
.header-cta:hover { background: var(--line-hover); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #FDF8F3 0%, #F0E4D8 100%);
  padding: 56px 0;
}
.hero > * { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

.eyebrow {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Klee One', cursive;
  font-size: clamp(24px, 5.5vw, 31px);
  color: var(--accent-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}
.hero h1 span { display: inline-block; }

.hero .lead {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.hero-buttons .btn { width: 100%; }

.hero-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 8px;
  margin-bottom: 0;
}

.hero-image {
  margin-top: 40px;
}
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(100,60,40,.12);
}

/* ===== PROMISES（3つの約束） ===== */
.promises {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 44px;
  text-align: center;
}
.promises-title {
  font-family: 'Klee One', cursive;
  font-size: 18px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 24px;
}
.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.promise-list li {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.promise-num {
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--accent);
  font-weight: 700;
}
.promise-list strong {
  font-family: 'Klee One', cursive;
  font-size: 17px;
  color: var(--accent-dark);
}
.promise-sub {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq { background: var(--bg); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 44px 16px 48px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  line-height: 1.7;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: 'Q';
  position: absolute;
  left: 18px;
  top: 15px;
  font-family: 'Klee One', cursive;
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
}
.faq-item summary::after {
  content: '＋';
  position: absolute;
  right: 18px;
  top: 16px;
  color: var(--accent);
  font-size: 16px;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 20px 18px 48px;
  margin: 0;
  font-size: 13px;
  position: relative;
}
.faq-item p::before {
  content: 'A';
  position: absolute;
  left: 18px;
  font-family: 'Klee One', cursive;
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 600;
}

/* ===== LINE CTA SECTION ===== */
.line-cta-section {
  background: var(--accent-dark);
  padding: 48px 20px;
  text-align: center;
  overflow: hidden;
}
.line-cta-text {
  font-family: 'Klee One', cursive;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.line-notes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.75);
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--bg-section);
  text-align: center;
}
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.problem-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  box-shadow: var(--shadow);
}
.problem-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--accent);
}
.problem-note {
  font-family: 'Klee One', cursive;
  font-size: 16px;
  color: var(--accent-dark);
  font-weight: 600;
  margin: 0;
}

/* ===== CONCEPT ===== */
.concept {
  text-align: center;
}
.concept-quote {
  font-family: 'Klee One', cursive;
  font-size: 15px;
  color: var(--accent-dark);
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  background: var(--bg-section);
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
  margin-top: 24px;
}

/* ===== POINTS / CARDS ===== */
.points { background: var(--bg-section); text-align: center; }

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: left;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body { padding: 20px; }
.card-body p { margin: 0; }

/* ===== SERVICES ===== */
.services { background: var(--bg); }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.service-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.service-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-dark);
}
.service-item h3 { margin-bottom: 6px; }
.service-item p { margin: 0; }

/* ===== PRICE ===== */
.price {
  background: var(--bg-section);
  text-align: center;
}
.price-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  gap: 12px;
}
.price-row:last-child { border-bottom: none; }
.price-breed { color: var(--text); font-weight: 500; }
.price-val { color: var(--accent-dark); font-weight: 700; white-space: nowrap; }
.price-note {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ===== CONSULTATION ===== */
.consultation {
  background: linear-gradient(135deg, #FDF8F3 0%, #F0E4D8 100%);
  text-align: center;
}
.consultation p { margin-bottom: 12px; }
.consultation .btn { margin-top: 8px; }

/* ===== VOICE ===== */
.voice { background: var(--bg-section); text-align: center; }
.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
.voice-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: left;
  box-shadow: var(--shadow);
}
.voice-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.voice-text::before {
  content: '❝';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}
.voice-from {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== THOUGHT ===== */
.thought { background: var(--bg); }
.thought-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.thought-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 240px;
}
.thought-quote {
  font-family: 'Klee One', cursive;
  font-size: 15px;
  color: var(--accent-dark);
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  background: var(--bg-section);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 8px;
}

/* ===== SHOP ===== */
.shop { background: var(--bg-section); }
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}
.shop-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
.shop-table { width: 100%; border-collapse: collapse; }
.shop-table th, .shop-table td {
  padding: 10px 8px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.shop-table tr:last-child th,
.shop-table tr:last-child td { border-bottom: none; }
.shop-table th {
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
  width: 80px;
}
.shop-table td { color: var(--text); }
.shop-table a { color: var(--accent); text-decoration: underline; }
.shop-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 260px;
}
.shop-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--accent-dark);
  padding: 72px 20px;
  text-align: center;
  overflow: hidden;
}
.final-cta h2 {
  font-family: 'Klee One', cursive;
  color: #fff;
  font-size: clamp(22px, 5vw, 28px);
  margin-bottom: 16px;
}
.final-cta p {
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  font-size: 14px;
}

/* ===== PRICE PAGE ===== */
.page-hero {
  background: linear-gradient(160deg, #FDF8F3 0%, #F0E4D8 100%);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Klee One', cursive;
  font-size: clamp(28px, 6vw, 36px);
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.page-hero .lead {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.course-guide { padding: 40px 0 8px; }
.course-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.course-note p {
  font-size: 13px;
  margin-bottom: 12px;
}
.course-note p:last-child { margin-bottom: 0; }
.course-note strong { color: var(--accent-dark); }

.full-price { padding-top: 48px; }
.table-wrap { overflow-x: auto; }
.full-price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 13px;
}
.full-price-table th {
  background: var(--accent);
  color: #fff;
  padding: 12px 10px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}
.full-price-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.full-price-table tbody tr:last-child td { border-bottom: none; }
.full-price-table tbody tr:nth-child(even) { background: var(--bg); }
.full-price-table td:nth-child(2),
.full-price-table td:nth-child(3) {
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}
.td-dash { color: var(--text-light) !important; font-weight: 400 !important; }

.options { background: var(--bg-section); }
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.option-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.option-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.option-price {
  font-family: 'Klee One', cursive;
  font-size: 16px;
  color: var(--accent-dark);
  font-weight: 600;
  margin: 0;
}

.back-link { margin-top: 24px; }
.back-link a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  font-size: 13px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 32px 20px;
  font-size: 12px;
  line-height: 1.9;
}
.footer-name {
  font-family: 'Klee One', cursive;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}
.footer-copy { margin-top: 8px; color: rgba(255,255,255,.4); }
.footer-area { font-size: 11px; color: rgba(255,255,255,.55); }
.footer p { color: rgba(255,255,255,.7); margin: 0; }

/* ===== DESKTOP (768px+) ===== */
@media (min-width: 768px) {

  .hero {
    padding: 80px 0;
  }
  .hero > * {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
  }
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 20px;
  }
  .hero > * {
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-buttons .btn { width: auto; }
  .hero-image { margin-top: 0; }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .voice-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .thought-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
  .thought-image {
    flex: 0 0 280px;
  }
  .thought-image img {
    height: 320px;
  }

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

  .problem-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .promise-list {
    flex-direction: row;
    max-width: var(--max-w);
  }
  .promise-list li { flex: 1; }
}
