/* ========================================
   ペットシッター M&M ぷらす - LP デザイン
   ======================================== */
:root {
  --cream: #faf8f5;
  --sand: #f0ebe3;
  --sage: #5d7a56;
  --sage-light: #8fa88a;
  --sage-pale: #e8f0e6;
  --brown: #3d3229;
  --brown-mid: #6b5b4f;
  --brown-light: #9a8778;
  --text: #2c2620;
  --text-muted: #6b6159;
  --line-green: #06c755;
  --white: #fff;
  --font-head: 'Zen Maru Gothic', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --shadow: 0 4px 24px rgba(45, 38, 32, 0.08);
  --shadow-lg: 0 12px 48px rgba(45, 38, 32, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(45, 38, 32, 0.06);
  transition: padding 0.4s var(--ease-out);
}

.header.is-scrolled {
  padding: 10px 24px;
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  order: 1;
}

.logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s var(--ease-out);
}

.header.is-scrolled .logo-image {
  height: 40px;
}

.logo-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.3;
  white-space: nowrap;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  order: 2;
}

.nav a {
  color: var(--brown-mid);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

@media (min-width: 801px) {
  .nav a.mobile-only {
    display: none;
  }
}

.nav a:hover {
  background: rgba(93, 122, 86, 0.15);
  color: var(--sage);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  order: 3;
}

.header-cta .btn {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--brown);
  background: transparent;
  transition: all 0.2s;
}

.btn-icon:hover {
  background: rgba(93, 122, 86, 0.1);
  color: var(--sage);
}

.btn-icon:hover .icon-instagram {
  color: #e4405f;
}

.btn-icon:hover .icon-line {
  color: #06c755;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 101;
  position: relative;
  order: 4;
}

@media (min-width: 801px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--brown);
  border-radius: 2px;
  transition: 0.3s var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 800px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 80px 40px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right 0.4s var(--ease-out);
    z-index: 10;
    display: flex;
    flex-wrap: nowrap;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* ハンバーガーメニュー用のスクロールバー表示 */
  .nav::-webkit-scrollbar {
    width: 6px;
  }
  .nav::-webkit-scrollbar-track {
    background: transparent;
  }
  .nav::-webkit-scrollbar-thumb {
    background: rgba(121, 107, 98, 0.3);
    border-radius: 4px;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 1.1rem;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .nav-link-icon {
    display: flex !important;
  }
}

.nav-link-icon {
  display: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 38, 32, 0.4);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 600px) {
  .logo-link {
    flex: 1;
  }

  .logo-title {
    font-size: 0.65rem;
  }

  .logo-image {
    height: 40px;
  }

  .header.is-scrolled .logo-image {
    height: 32px;
  }

  .header {
    padding: 12px 16px;
  }

  .header.is-scrolled {
    padding: 10px 16px;
  }

  .header-cta .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary:hover {
  background: #4d6a47;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown-mid);
}

.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--sage);
  border-color: var(--white);
}

.btn-line {
  background: var(--line-green);
  color: var(--white);
}

.btn-line:hover {
  background: #05b34a;
  color: var(--white);
}

.btn-calendar {
  background: var(--brown-mid);
  color: var(--white);
}

.btn-calendar:hover {
  background: var(--brown);
  color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(44, 38, 32, 0.4), rgba(44, 38, 32, 0.4)), url('images/hero_cat.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 12px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.hero-title-accent {
  display: block;
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 24px;
  font-weight: 500;
}

.hero-area {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-cta .btn-primary {
  background: var(--white);
  color: var(--sage);
}

.hero-cta .btn-primary:hover {
  background: var(--cream);
  color: var(--brown);
}

.hero-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.hero-cta .btn-outline:hover {
  background: var(--white);
  color: var(--sage);
  border-color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll span {
  display: block;
  margin-top: 8px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ----- LP Sections ----- */
.lp-section {
  padding: 80px 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.lp-section.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.lp-section:nth-child(even) {
  background: var(--sand);
}

/* Reverse alternation from Care Support (5th child) onwards */
.lp-section:nth-child(n+5):nth-child(even) {
  background: var(--cream);
}

.lp-section:nth-child(n+5):nth-child(odd) {
  background: var(--sand);
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 8px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  color: var(--brown);
  margin: 0 0 32px;
  font-weight: 700;
}

.section-title span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.lead {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 32px;
  line-height: 1.85;
}

.sub-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--brown);
  margin: 24px 0 12px;
}

.note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 16px 0 0;
}

/* ----- About ----- */
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  margin: 0 0 20px;
}

.about-content p {
  margin: 0 0 16px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ----- Service ----- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 0 0 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  overflow: hidden;
  border-top: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 24px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--brown);
  margin: 0 0 16px;
}

.service-card ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: var(--text);
}

.service-card li {
  margin-bottom: 6px;
}

/* ----- Care Support ----- */
.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.care-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--sage-pale);
  transition: transform 0.3s var(--ease-out);
}

.care-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.care-item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.care-icon {
  font-size: 1.2rem;
}

.care-item h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--brown);
  margin: 0;
  line-height: 1.3;
}

.care-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}


.service-detail-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
  border-top: 1px dashed var(--sand);
  padding-top: 8px;
}

.service-notes {
  margin-top: 32px;
  padding: 24px;
  background: var(--sage-pale);
  border-radius: var(--radius);
}

.caution-list {
  margin: 0 0 12px;
  padding-left: 1.3rem;
}

.caution-list li {
  margin-bottom: 6px;
}

.service-notes p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.area-info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

.area-info-text {
  flex: 1;
}

.area-info-text p {
  margin: 0 0 8px 0;
}

.service-map {
  flex: 0 0 400px;
  text-align: center;
}

.area-map-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid var(--sand);
}

.map-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.transport-box {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--sage);
  margin-top: 24px;
}

.transport-box h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--brown);
  margin: 0 0 12px;
}

.transport-price {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 16px;
}

.transport-price strong {
  color: var(--sage);
  font-size: 1.2rem;
}

.transport-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.transport-notes li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 4px;
}

.transport-notes li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--sage-light);
}

.area-map-image {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: inline-block;
}

@media (max-width: 600px) {
  .area-info-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-map {
    flex: 1 1 auto;
    width: 100%;
    margin-top: 16px;
    text-align: center;
  }
}

/* ----- Promise ----- */
.promise-logo-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.promise-logo {
  max-width: 200px;
  height: auto;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px 24px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown);
}

.promise-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}

/* ----- Profile ----- */
.profile-wrapper {
  max-width: 680px;
}

.profile-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sand);
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 4px;
}

.profile-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.profile-bio p {
  margin: 0 0 14px;
  font-size: 0.98rem;
}

.profile-bio p:last-child {
  margin-bottom: 0;
}

.qualifications {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--sand);
}

.qualifications h4 {
  font-size: 0.95rem;
  color: var(--brown);
  margin: 0 0 10px;
}

.qualifications ul {
  margin: 0 0 12px;
  padding-left: 1.3rem;
}

.qualifications p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ----- Price ----- */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.section-header .section-title {
  margin-bottom: 0;
}

.btn-simulator-title {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: var(--white);
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-simulator-title:hover {
  background: #4d6a47;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 122, 86, 0.25);
}

.btn-simulator-title i,
.btn-simulator-title .icon {
  font-size: 1.1rem;
}

@media (max-width: 640px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.refuse-box,
.emergency-box,
.other-info-box {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(231, 76, 60, 0.08);
  /* 薄い赤色 */
  border-radius: var(--radius-sm);
  border-left: 4px solid #e74c3c;
}

.refuse-box h4,
.emergency-box h4,
.other-info-box h4 {
  font-size: 0.95rem;
  color: var(--brown);
  margin: 0 0 8px;
}

.refuse-box p,
.emergency-box p,
.other-info-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 8px;
  line-height: 1.6;
}

.refuse-box p:last-child,
.emergency-box p:last-child,
.other-info-box p:last-child {
  margin-bottom: 0;
}

/* ----- Price ----- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

.price-column-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price-column-side .price-card {
  flex: 1;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sand);
}

.price-card-header {
  padding: 24px;
  background: var(--sage-pale);
  border-bottom: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
}

.price-card-header h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--brown);
  margin: 0 0 8px;
  position: relative;
  z-index: 2;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  max-width: 70%;
}

.price-card-pet-img {
  position: absolute;
  right: -10px;
  bottom: -15px;
  height: 110%;
  width: auto;
  z-index: 1;
  opacity: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.price-card-body {
  padding: 24px;
  flex: 1;
}

.price-tier {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1.5px dashed var(--sage);
}

.price-tier:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.price-tier h4 {
  font-size: 1rem;
  color: var(--brown);
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-tier h4 span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.course-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.course-item {
  display: grid;
  grid-template-areas:
    "name price"
    "note note";
  justify-content: space-between;
  align-items: baseline;
  gap: 4px 8px;
}

.course-name {
  grid-area: name;
  font-size: 0.95rem;
  font-weight: 600;
}

.course-price {
  grid-area: price;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage);
}

.course-note,
.course-ext {
  grid-area: note;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.add-pet {
  padding-top: 8px;
  border-top: 1px solid var(--sand-light);
}

.stayover-box {
  background: var(--sand-light);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
}

.stayover-box h5 {
  font-size: 0.85rem;
  color: var(--brown);
  margin: 0 0 10px;
}

.stayover-box h5 span {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
}

.stayover-price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stayover-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stay-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.stay-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stay-amount {
  font-size: 0.95rem;
  color: var(--brown);
}

.stay-formula {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.9;
}

.category-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.price-card-footer {
  padding: 12px 24px;
  background: #fdfaf8;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Fee & Policies */
.fee-policies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.fee-card,
.policy-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--sand);
}

.fee-card h4,
.policy-card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--brown);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sage-pale);
}

.fee-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fee-list li {
  margin-bottom: 20px;
}

.fee-list li:last-child {
  margin-bottom: 0;
}

.fee-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.fee-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage);
}

.fee-val-list,
.fee-dist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.text-sage,
.fee-val-list .text-sage,
.fee-dist .text-sage {
  color: var(--sage) !important;
}

.fee-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.policy-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
}

.policy-card dt {
  font-weight: 700;
  color: var(--brown);
}

.policy-card dd {
  margin: 0;
  font-weight: 700;
  color: var(--sage);
}

.policy-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.price-info-notes {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-info-notes p {
  margin: 0 0 8px;
}

.price-cta {
  margin-top: 16px !important;
  font-weight: 700 !important;
  color: var(--brown) !important;
  font-size: 1rem !important;
}

/* ----- Flow ----- */
.flow-timeline {
  display: grid;
  gap: 0;
  position: relative;
  max-width: 640px;
  margin: 0 auto 24px;
}

.flow-step {
  position: relative;
  padding: 28px 28px 28px 72px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.flow-step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.flow-step:last-child {
  margin-bottom: 0;
}

/* Step Arrow */
.flow-step:not(:last-child)::after {
  content: '↓';
  position: absolute;
  bottom: -28px;
  left: 44px;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--sage);
  font-family: var(--font-head);
  font-weight: 800;
  z-index: 1;
  animation: arrow-bounce 2s infinite;
}

@keyframes arrow-bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-6px);
  }

  60% {
    transform: translateX(-50%) translateY(-3px);
  }
}

.flow-num {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 40px;
  height: 40px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.flow-step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--brown);
  margin: 0 0 8px;
}

.flow-step p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.flow-details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.flow-details li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 4px;
}

.flow-details li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.flow-details .note {
  font-size: 0.85rem;
  color: var(--brown-light);
  font-weight: 600;
}

.flow-details .note::before {
  content: '※';
}

/* Precautions */
.precautions-wrap {
  margin-top: 64px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.precautions-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--brown);
  text-align: center;
  margin: 0 auto 32px;
  width: fit-content;
  position: relative;
}

.precautions-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e74c3c;
  border-radius: 2px;
}

.precautions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.precautions-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--sage);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.precautions-card h4::before {
  content: '●';
  font-size: 0.7rem;
}

.precautions-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}

.precautions-card li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.precautions-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sage-light);
}

.flow-contact-group {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.flow-contact-group .btn {
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 18px 32px;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .flow-contact-group .btn {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
    padding: 16px 20px;
  }
}

@media (max-width: 600px) {
  .precautions-wrap {
    padding: 32px 20px;
  }

  .precautions-grid {
    gap: 24px;
  }
}

/* FAQ */
.section-faq {
  background: var(--cream) !important;
}

.faq-grid {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.faq-question,
.faq-answer {
  display: flex;
  gap: 16px;
  padding: 24px;
}

.faq-question {
  background: var(--white);
  border-bottom: 1px solid var(--sage-pale);
  align-items: center;
}

.faq-answer {
  background: #fdfaf8;
  align-items: flex-start;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.faq-question .faq-icon {
  background: var(--sage);
  color: var(--white);
}

.faq-answer .faq-icon {
  background: var(--sand);
  color: var(--brown-light);
}

.faq-question h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.4;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

@media (max-width: 600px) {

  .faq-question,
  .faq-answer {
    padding: 20px;
    gap: 12px;
  }
}

.section-contact {
  background: var(--cream) !important;
}

/* ----- CTA Strip ----- */
.cta-strip {
  padding: 32px 0 32px !important;
  /* 上下パディングを調整 */
  background: linear-gradient(135deg, var(--sage) 0%, #4a5d44 100%);
  text-align: center;
}

.cta-strip-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--white);
  margin: 0 0 24px;
  font-weight: 600;
}

.cta-strip-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ----- Profile ----- */
.section-profile {
  background: var(--sand) !important;
  padding-top: 48px !important;
}

.profile-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .profile-box {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-template-rows: auto 1fr;
    align-items: flex-start;
    padding: 56px;
    gap: 32px 48px;
  }
}

.profile-image-wrapper {
  flex-shrink: 0;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .profile-image-wrapper {
    max-width: none;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
  }
  .profile-credentials-wrapper {
    grid-column: 1;
    grid-row: 2;
  }
  .profile-text-content {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

.profile-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.profile-text-content {
  flex: 1;
}

.profile-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--sage-pale);
}

@media (min-width: 768px) {
  .profile-header {
    text-align: left;
  }
}

.profile-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--brown);
  margin: 0 0 8px;
}

.profile-name span {
  font-size: 0.95rem;
  font-weight: normal;
  color: var(--text-muted);
}

.profile-birth {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.profile-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 16px;
}

.profile-content p:last-child {
  margin-bottom: 0;
}

.profile-credentials {
  list-style: none;
  padding: 20px;
  background: #fdfaf8;
  border-radius: 8px;
  margin: 0 0 24px;
}

.profile-credentials li {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown-mid);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.profile-credentials li::before {
  content: "🐾";
  font-size: 0.9rem;
}

.profile-credentials li:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .profile-box {
    padding: 32px 20px;
  }
}

/* ----- Contact ----- */
.contact-box {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  text-align: left;
}

.contact-tel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--brown);
  text-decoration: none;
  margin: 0 0 12px;
  transition: color 0.2s;
}

.contact-tel::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.contact-tel:hover {
  color: var(--sage);
}

.contact-email {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--sage);
  text-decoration: none;
  margin: 0 0 16px;
  font-weight: 600;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-address {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--sand);
  padding: 4px 12px;
  border-radius: 20px;
  display: block;
  width: fit-content;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left;
}

.btn-contact-line,
.btn-contact-mail {
  font-family: var(--font-head);
  line-height: 1.4;
  padding: 12px 24px;
  text-align: center;
  font-size: 0.95rem;
}

.btn-contact-line {
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.2);
}

.btn-contact-mail {
  box-shadow: 0 4px 12px rgba(93, 122, 86, 0.2);
}

.contact-note:first-of-type {
  margin-top: 12px;
}

/* New Links Grid inside white box */
.contact-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.contact-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out);
}

.contact-link-item:hover {
  transform: translateY(-5px);
}

.link-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

.contact-link-item:hover .link-icon {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.link-icon svg {
  width: 32px;
  height: 32px;
}

.contact-link-item span {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
}

/* Brand Colors for Icons */
.link-line .link-icon {
  background: #06C755;
  color: var(--white);
}

.link-instagram .link-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
}

.link-calendar .link-icon {
  background: linear-gradient(135deg, #a67c00 0%, #bf953f 100%);
  color: var(--white);
}

@media (min-width: 768px) {
  .contact-box {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 56px;
  }

  .contact-info {
    text-align: left;
    flex: 1;
  }

  .contact-links-grid {
    width: auto;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .contact-box {
    padding: 40px 24px;
    gap: 32px;
  }

  .contact-info {
    text-align: left;
  }

  .contact-tel {
    justify-content: flex-start;
  }

  .contact-links-grid {
    gap: 16px;
  }

  .link-icon {
    width: 56px;
    height: 56px;
  }
}

/* ----- Footer ----- */
.footer {
  padding: 40px 24px;
  background: var(--brown);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0 0 16px;
  font-size: 1.1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: opacity 0.2s ease-out;
}

.footer-brand-link:hover {
  opacity: 0.75;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-nav a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0 0 12px;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0;
}

/* ----- Responsive ----- */
@media (max-width: 600px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .lp-section {
    padding: 56px 0;
  }

  .service-cards,
  .detail-grid,
  .price-grid,
  .price-column-side,
  .fee-policies {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .flow-step {
    padding-left: 28px;
    padding-top: 56px;
  }

  .flow-num {
    top: 20px;
    left: 24px;
  }

  .contact-cta {
    flex-direction: column;
  }

  .contact-cta .btn {
    width: 100%;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .profile-name span {
    display: block;
  }
}