/* ===== ドッグケアサロン ルピナス ===== */
:root {
  --orange: #f08300;
  --orange-dark: #d97000;
  --orange-light: #ffb35c;
  --orange-pale: #fff3e2;
  --cream: #fffaf3;
  --brown: #5c4632;
  --text: #4a3f35;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 16px rgba(240, 131, 0, 0.10);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.9;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--orange-dark); }

.pc-only { display: inline; }
.sp-only { display: none; }

/* ===== ヘッダー ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 250, 243, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--orange-pale);
}
.header-inner {
  max-width: 1080px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--brown);
  font-weight: 700; font-size: 1.05rem;
}
.brand-icon { font-size: 1.3rem; }
.global-nav { display: flex; gap: 24px; }
.global-nav a {
  text-decoration: none; color: var(--text);
  font-weight: 500; font-size: 0.95rem;
  padding: 4px 2px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.global-nav a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.nav-toggle { display: none; }

/* ===== ヒーロー ===== */
.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 179, 92, 0.35) 0, transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(255, 179, 92, 0.25) 0, transparent 40%),
    linear-gradient(160deg, var(--orange-pale) 0%, #ffe8cc 55%, #ffdcb3 100%);
  padding: 88px 20px 96px;
  text-align: center;
}
.hero-sub {
  display: inline-block;
  background: var(--white); color: var(--orange-dark);
  font-weight: 700; font-size: 0.85rem;
  padding: 6px 18px; border-radius: 999px;
  box-shadow: var(--shadow); margin-bottom: 24px;
}
.hero-title {
  font-size: 2.2rem; color: var(--brown);
  font-weight: 700; line-height: 1.5; margin-bottom: 20px;
}
.hero-lead { font-size: 1.05rem; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; text-decoration: none;
  font-weight: 700; font-size: 1rem;
  padding: 14px 36px; border-radius: 999px;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 6px 18px rgba(240, 131, 0, 0.35);
}
.btn-outline {
  background: var(--white); color: var(--orange-dark);
  border: 2px solid var(--orange);
}

/* ===== お知らせ ===== */
.notice-bar {
  background: #fdeaea; border-top: 1px solid #f5c6c6; border-bottom: 1px solid #f5c6c6;
  padding: 12px 20px; text-align: center;
}
.notice-bar p { font-size: 0.92rem; color: #a94442; font-weight: 500; }

/* ===== セクション共通 ===== */
.section { padding: 72px 20px; }
.section-alt { background: var(--orange-pale); }
.container { max-width: 1080px; margin: 0 auto; }

.section-title {
  text-align: center; font-size: 1.7rem; color: var(--brown);
  font-weight: 700; margin-bottom: 16px;
}
.title-icon { margin-right: 8px; }
.section-title::after {
  content: ""; display: block; width: 56px; height: 4px;
  background: var(--orange); border-radius: 2px;
  margin: 12px auto 0;
}
.section-lead { text-align: center; margin-bottom: 40px; }

/* ===== サロンについて ===== */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow);
  text-align: center;
}
.feature-emoji { font-size: 2.4rem; margin-bottom: 12px; }
.feature-card h3 { color: var(--orange-dark); font-size: 1.1rem; margin-bottom: 12px; }
.feature-card p { font-size: 0.93rem; text-align: left; }

/* ===== メニュー ===== */
.menu-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px 32px;
  margin-bottom: 20px;
}
.menu-name {
  display: inline-block; color: var(--white); background: var(--orange);
  font-size: 1.05rem; font-weight: 700;
  padding: 6px 22px; border-radius: 999px; margin-bottom: 16px;
}
.menu-items {
  list-style: none; counter-reset: item;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px;
}
.menu-items li { counter-increment: item; display: flex; align-items: center; gap: 10px; }
.menu-items li::before {
  content: counter(item);
  flex: 0 0 auto;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.menu-desc { margin-top: 4px; }
.menu-note { margin-top: 10px; font-size: 0.9rem; color: #c0392b; }

/* ===== 料金表 ===== */
.price-note { text-align: center; font-size: 0.92rem; margin-bottom: 24px; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.price-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  min-width: 560px; font-size: 0.95rem;
}
.price-table th, .price-table td {
  padding: 10px 14px; border-bottom: 1px solid #f3e3cd;
}
.price-table thead th {
  background: var(--orange); color: var(--white);
  font-weight: 700; text-align: center; white-space: nowrap;
}
.price-table thead th:first-child { text-align: left; }
.price-table td { text-align: center; white-space: nowrap; }
.price-table td:first-child { text-align: left; font-weight: 500; white-space: normal; }
.price-table tbody tr:nth-child(even) { background: var(--orange-pale); }

.price-sub-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px;
}
.price-sub-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px 32px;
}
.price-sub-card h3 {
  color: var(--orange-dark); font-size: 1.05rem;
  border-bottom: 2px dashed var(--orange-light);
  padding-bottom: 6px; margin-bottom: 14px;
}
.price-sub-card h3.mt { margin-top: 28px; }

.dot-list { list-style: none; }
.dot-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 5px 0; font-size: 0.95rem;
  border-bottom: 1px dotted #eadbc4;
}
.dot-list li span { font-weight: 700; color: var(--orange-dark); white-space: nowrap; margin-left: 12px; }
.dot-list li.no-price { border-bottom: none; font-size: 0.85rem; color: #8a7a68; padding-top: 0; }
.dot-list.plain li { display: list-item; list-style: none; position: relative; padding-left: 1.2em; }
.dot-list.plain li::before { content: "🐾"; position: absolute; left: 0; top: 5px; font-size: 0.75em; }

.small-note { font-size: 0.85rem; color: #8a7a68; margin-top: 12px; }
.scroll-hint { display: none; text-align: right; font-size: 0.8rem; color: #8a7a68; margin-bottom: 6px; }
@media (max-width: 768px) { .scroll-hint { display: block; } }

/* ===== ご予約 ===== */
.reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.reserve-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px 32px;
}
.reserve-card h3 {
  color: var(--orange-dark); font-size: 1.05rem;
  border-bottom: 2px dashed var(--orange-light);
  padding-bottom: 6px; margin-bottom: 14px;
}
.tel-big { font-size: 1.5rem; font-weight: 700; margin: 8px 0 4px; }
.tel-big a { text-decoration: none; color: var(--orange-dark); }

/* ===== アクセス ===== */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.info-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.info-table th, .info-table td { padding: 12px 18px; border-bottom: 1px solid #f3e3cd; text-align: left; font-size: 0.95rem; }
.info-table th { width: 96px; color: var(--orange-dark); background: var(--orange-pale); font-weight: 700; }
.access-map iframe { border-radius: var(--radius); box-shadow: var(--shadow); }
.map-btn { display: block; text-align: center; margin-top: 16px; }

/* ===== フッター ===== */
.site-footer {
  background: var(--brown); color: #f7ede0;
  text-align: center; padding: 40px 20px 32px;
}
.footer-brand { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.footer-addr { font-size: 0.9rem; margin-bottom: 16px; }
.copyright { font-size: 0.8rem; opacity: 0.7; }

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }

  .global-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; gap: 0;
    border-bottom: 2px solid var(--orange-pale);
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  }
  .global-nav.open { display: flex; }
  .global-nav a { padding: 14px 24px; border-bottom: 1px solid var(--orange-pale); }

  .nav-toggle {
    display: block; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; position: relative;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--brown);
    margin: 5px auto; border-radius: 2px; transition: transform .25s, opacity .25s;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 56px 20px 64px; }
  .hero-title { font-size: 1.55rem; }
  .hero-lead { font-size: 0.95rem; }

  .section { padding: 52px 16px; }
  .section-title { font-size: 1.4rem; }

  .feature-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-card, .price-sub-card, .reserve-card { padding: 22px 20px; }

  .price-sub-grid, .reserve-grid, .access-grid { grid-template-columns: 1fr; }
  .price-table { font-size: 0.88rem; }

  .info-table th { width: 84px; }
}
