/* ============================================
   はぐゆぅ ホームページ 共通スタイル
   ペットシッター・動物訪問看護・介護サポート
============================================ */

:root {
  /* カラーパレット */
  --cream: #FDF6EF;        /* ベース背景 */
  --cream-deep: #F9EDDF;   /* 濃いめセクション背景 */
  --card-bg: #FFFDFA;      /* カード背景 */
  --green: #7D8E63;        /* メイングリーン */
  --green-dark: #6B7C52;   /* 濃いグリーン（hover） */
  --green-pale: #EEF2E4;   /* 薄グリーン背景 */
  --footer-green: #868F6D; /* フッター */
  --orange: #F18658;       /* CTAオレンジ */
  --orange-dark: #E0703F;  /* オレンジhover */
  --orange-text: #E07B45;  /* アクセント文字 */
  --orange-pale: #FCEADF;  /* 薄オレンジ背景 */
  --pink-pale: #F9E8E3;    /* 薄ピンク背景 */
  --brown: #5D4A35;        /* 見出し */
  --text: #6E5C49;         /* 本文 */
  --text-light: #8A7A68;   /* 補足 */
  --price-red: #D9534F;    /* 料金の赤 */
  --line-green: #06C755;   /* LINEブランド */
  --border-dot: #D9C9B5;   /* 点線 */

  --radius-card: 22px;
  --radius-img: 16px;
  --shadow-card: 0 4px 18px rgba(140, 110, 80, 0.10);
  --font: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", sans-serif;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.9;
  letter-spacing: 0.06em;
  font-size: 16px;
  overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- 共通レイアウト ---------- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--deep { background: var(--cream-deep); }

/* ---------- セクション見出し ---------- */
.sec-head { text-align: center; margin-bottom: 44px; }
.sec-label {
  display: inline-block;
  color: var(--green);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  margin-bottom: 6px;
}
.sec-label--en { font-size: 1.02rem; color: var(--orange-text); letter-spacing: 0.18em; }
.sec-title {
  color: var(--brown);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.6;
}
.sec-sub { margin-top: 12px; font-size: 0.98rem; color: var(--text); }
.dot-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin: 14px auto 0; color: var(--orange);
}
.dot-divider::before, .dot-divider::after {
  content: ""; width: 90px; border-top: 3px dotted #EBB58F;
}
.dot-divider .flower { font-size: 0.9rem; line-height: 1; }

/* 花アイコン（SVG） */
.icon-flower { width: 16px; height: 16px; fill: var(--orange); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(140, 110, 80, 0.18);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(140, 110, 80, 0.24); }
.btn--line { background: var(--green); color: #fff; }
.btn--line:hover { background: var(--green-dark); }
.btn--contact { background: var(--orange); color: #fff; }
.btn--contact:hover { background: var(--orange-dark); }
.btn .btn-icon { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }

/* ---------- ヘッダー ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 246, 239, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(217, 201, 181, 0.35);
}
.header-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; gap: 18px;
  padding: 10px 20px;
  flex-wrap: nowrap;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo img { width: 58px; height: 58px; }
.header-logo .logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.header-logo .logo-name { color: var(--green-dark); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.12em; }
.header-logo .logo-tag { font-size: 0.62rem; color: var(--text-light); letter-spacing: 0.04em; }
.gnav { margin-left: auto; }
.gnav ul { display: flex; gap: 26px; }
.gnav a {
  font-size: 0.92rem; color: var(--brown); font-weight: 500;
  padding: 6px 2px; position: relative; white-space: nowrap;
}
.gnav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--orange); border-radius: 2px;
  transition: width 0.25s ease;
}
.gnav a:hover::after, .gnav a[aria-current="page"]::after { width: 100%; }
.header-cta { display: flex; gap: 10px; flex-shrink: 0; }
.header-cta .btn { padding: 9px 18px; font-size: 0.85rem; box-shadow: none; }

/* ハンバーガー */
.menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 6px;
  width: 46px; height: 46px;
  background: none; border: none; cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  display: block; width: 26px; height: 3px; margin: 0 auto;
  background: var(--green-dark); border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- ヒーロー共通 ---------- */
.hero { position: relative; overflow: hidden; }
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(320px, 46%) 1fr;
  gap: 40px; align-items: center;
  padding: 56px 20px 64px;
}
.hero-copy h1 {
  color: var(--green-dark);
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  font-weight: 700; letter-spacing: 0.12em; line-height: 1.7;
}
.hero-copy h1 .accent-brown { color: var(--brown); }
.hero-lead { margin-top: 22px; padding-top: 20px; border-top: 2px dotted var(--border-dot); }
.hero-lead .highlight { color: var(--orange-text); font-weight: 700; }
.hero-lead p + p { margin-top: 14px; }
.hero-btns { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-photo img {
  width: 100%; border-radius: 28px; object-fit: cover;
  box-shadow: 0 10px 30px rgba(140, 110, 80, 0.15);
}

/* 花のボーダー装飾 */
.flower-border {
  height: 72px;
  background-image: url("../assets/images/flower-line.webp");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: center bottom;
}

/* ---------- カード共通 ---------- */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* ---------- お悩みセクション ---------- */
.worry-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.worry-card { padding: 18px 18px 24px; text-align: center; }
.worry-card img { border-radius: var(--radius-img); aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.worry-card h3 {
  margin-top: 16px; color: var(--brown);
  font-size: 1.02rem; line-height: 1.7; letter-spacing: 0.06em;
  padding-bottom: 12px; border-bottom: 2px dotted var(--border-dot);
}
.worry-card p { margin-top: 12px; font-size: 0.88rem; color: var(--green-dark); line-height: 1.9; }
.worry-card .note { font-size: 0.74rem; color: var(--text-light); margin-top: 8px; }
.worry-message {
  margin-top: 44px; text-align: center;
  font-size: clamp(1rem, 2.4vw, 1.2rem); line-height: 2.1;
  color: var(--brown);
}
.worry-message .name { color: var(--green); font-weight: 700; }
.worry-message .em { color: var(--orange-text); font-weight: 700; }
.paw-deco { color: var(--orange); font-size: 1.3rem; }

/* ---------- サービスカード ---------- */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }
.service-card { text-align: center; padding-bottom: 26px; }
.service-card .photo { position: relative; }
.service-card .photo img { width: 100%; object-fit: cover; }
.service-card .icon-badge {
  position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--card-bg);
}
.service-card .icon-badge--orange { background: var(--orange); }
.service-card .icon-badge svg { width: 26px; height: 26px; fill: #fff; }
.service-card h3 {
  margin-top: 42px; color: var(--brown); font-size: 1.2rem; letter-spacing: 0.1em;
}
.service-card .head-divider {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 8px auto 14px; color: var(--orange);
}
.service-card .head-divider::before, .service-card .head-divider::after {
  content: ""; width: 56px; border-top: 2px dotted #EBB58F;
}
.service-card p { padding: 0 22px; font-size: 0.92rem; text-align: center; }
.service-card .note { margin-top: 10px; font-size: 0.78rem; color: var(--text-light); }
.tag-row { display: flex; justify-content: center; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.tag {
  padding: 5px 16px; border-radius: 999px; font-size: 0.8rem;
  background: var(--green-pale); color: var(--green-dark);
}
.tag--orange { background: var(--orange-pale); color: var(--orange-text); }
.center-btn { text-align: center; margin-top: 40px; }

/* ---------- ご利用の流れ ---------- */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  position: relative;
}
.steps-grid + .steps-grid { margin-top: 40px; }
.step-card { position: relative; padding: 24px 22px 26px; }
.step-num {
  position: absolute; top: -16px; left: -10px;
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; line-height: 1.1;
  box-shadow: 0 3px 10px rgba(140,110,80,0.2);
}
.step-num .en { font-size: 0.58rem; letter-spacing: 0.14em; }
.step-num .n { font-size: 1.3rem; }
.step-num--orange { background: #EE9C6C; }
.step-num--green { background: #97A87E; }
.step-num--pink { background: #E8A794; }
.step-card h3 {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--brown); font-size: 1.08rem; letter-spacing: 0.08em;
  margin-bottom: 16px; padding-left: 30px;
}
.step-card h3 svg { width: 26px; height: 26px; fill: var(--green); flex-shrink: 0; }
.step-card img { border-radius: var(--radius-img); object-fit: cover; width: 100%; }
.step-card .dots {
  text-align: center; color: var(--border-dot); letter-spacing: 0.4em;
  margin: 12px 0 6px; font-size: 0.8rem;
}
.step-card p { font-size: 0.88rem; text-align: center; line-height: 1.95; }
.step-arrow {
  position: absolute; top: 50%; right: -27px; transform: translateY(-50%);
  color: var(--green); font-size: 1.2rem; z-index: 2;
  letter-spacing: 0.1em;
}
.flow-note {
  margin-top: 44px; text-align: center;
  background: var(--cream-deep);
  border-radius: 999px; padding: 14px 26px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 0.95rem; color: var(--brown);
}

/* ---------- 対応エリア・営業時間 ---------- */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 26px; align-items: stretch;
}
.info-card { padding: 30px 30px 34px; }
.info-card h3 {
  text-align: center; color: var(--green-dark);
  font-size: 1.3rem; letter-spacing: 0.16em;
}
.info-card .head-divider {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 8px auto 18px; color: var(--orange);
}
.info-card .head-divider::before, .info-card .head-divider::after {
  content: ""; width: 70px; border-top: 2px dotted #EBB58F;
}
.info-card .area-text { text-align: center; font-size: 0.95rem; }
.info-card .area-text .em { color: var(--green-dark); font-weight: 700; }
.info-card .map { margin-top: 18px; border-radius: var(--radius-img); }
.hours-row { display: flex; align-items: flex-start; gap: 16px; margin-top: 16px; }
.hours-label {
  flex-shrink: 0; padding: 4px 18px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 700; color: #fff;
}
.hours-label--green { background: var(--green); }
.hours-label--orange { background: var(--orange); }
.hours-value { font-size: 1.05rem; color: var(--brown); line-height: 1.6; }
.hours-value .small { display: block; font-size: 0.78rem; color: var(--text-light); }
.hours-divider { border-top: 2px dotted var(--border-dot); margin: 18px 0; }
.pets-block { margin-top: 30px; padding-top: 24px; border-top: 2px dotted var(--border-dot); }
.pets-block h3 { margin-bottom: 4px; }
.pets-block .pets-text { text-align: center; font-size: 0.95rem; margin-top: 12px; }
.pets-icons { display: flex; justify-content: center; margin-top: 18px; }
.pets-icons img { max-width: 320px; width: 80%; }

/* ---------- 事業者情報 ---------- */
.biz-wrap { padding: 44px 40px; }
.biz-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 30px; margin-top: 8px; }
.biz-block { background: var(--cream); border-radius: var(--radius-img); padding: 28px 26px; }
.biz-block .biz-label {
  display: block; width: fit-content; margin: -42px auto 14px;
  padding: 5px 22px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 700;
}
.biz-label--green { background: var(--green-pale); color: var(--green-dark); }
.biz-label--orange { background: var(--orange-pale); color: var(--orange-text); }
.biz-insurance { text-align: center; font-size: 0.98rem; line-height: 2.1; color: var(--brown); }
.biz-insurance .divider { border-top: 2px dotted var(--border-dot); margin: 12px auto; width: 80%; }
.biz-insurance .note { font-size: 0.78rem; color: var(--text-light); line-height: 1.8; }
.biz-table { width: 100%; font-size: 0.95rem; }
.biz-table th, .biz-table td {
  text-align: left; padding: 9px 4px;
  border-bottom: 2px dotted var(--border-dot);
  vertical-align: top;
}
.biz-table tr:last-child th, .biz-table tr:last-child td { border-bottom: none; }
.biz-table th { color: var(--orange-text); font-weight: 500; white-space: nowrap; padding-right: 18px; }
.biz-table td { color: var(--brown); }
.biz-footnote { text-align: center; margin-top: 26px; font-size: 0.92rem; color: var(--brown); }

/* ---------- フッターCTA ---------- */
.footer-cta { position: relative; overflow: hidden; background: var(--cream-deep); }
.footer-cta-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(280px, 44%) 1fr;
  gap: 36px; align-items: center;
  padding: 0 20px;
}
.footer-cta-photo img { width: 100%; height: 100%; object-fit: cover; }
.footer-cta-copy { padding: 48px 10px; text-align: center; }
.footer-cta-copy p {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: var(--brown); line-height: 2.2; letter-spacing: 0.1em;
}
.footer-cta-copy .em { color: var(--green-dark); font-weight: 700; }
.footer-cta-btns { display: flex; gap: 16px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

/* ---------- フッター ---------- */
.footer { background: var(--footer-green); color: #fff; }
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
  padding: 44px 20px;
  flex-wrap: wrap;
}
.footer-logo {
  width: 150px; height: 150px; border-radius: 50%;
  background: #fff; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo img { width: 118px; height: 118px; }
.footer-nav {
  flex: 1;
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 14px 30px;
  padding: 0 10px;
  border-left: 2px dotted rgba(255,255,255,0.4);
  border-right: 2px dotted rgba(255,255,255,0.4);
  min-width: 300px;
}
.footer-nav a { font-size: 0.9rem; color: #fff; white-space: nowrap; }
.footer-nav a:hover { text-decoration: underline; }
.footer-sns { display: flex; gap: 22px; flex-shrink: 0; }
.footer-sns a { text-align: center; font-size: 0.72rem; color: #fff; }
.footer-sns .sns-circle {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px;
  transition: background 0.2s ease;
}
.footer-sns a:hover .sns-circle { background: rgba(255,255,255,0.15); }
.footer-sns svg { width: 26px; height: 26px; fill: #fff; }
.footer-copy {
  text-align: center; padding: 14px;
  font-size: 0.75rem; color: rgba(255,255,255,0.85);
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* ---------- 下層ページ ヒーロー ---------- */
.page-hero { overflow: hidden; }
.page-hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(300px, 44%) 1fr;
  gap: 40px; align-items: center;
  padding: 52px 20px 58px;
}
.page-hero .label { color: var(--orange-text); letter-spacing: 0.2em; font-size: 1rem; }
.page-hero h1 {
  margin-top: 6px;
  color: var(--brown); font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700; letter-spacing: 0.14em; line-height: 1.7;
  padding-bottom: 14px; border-bottom: 2px dotted var(--border-dot);
}
.page-hero .lead { margin-top: 20px; font-size: 0.98rem; }
.page-hero .lead .em-name { color: var(--green-dark); font-weight: 700; }
.page-hero .lead p + p { margin-top: 12px; }
.page-hero-photo img {
  width: 100%; border-radius: 30px; object-fit: cover;
  box-shadow: 0 10px 30px rgba(140,110,80,0.14);
}

/* ---------- プロフィール ---------- */
.greeting-box { max-width: 780px; margin: 0 auto; text-align: center; }
.greeting-box p + p { margin-top: 26px; }
.greeting-box .em { color: var(--green-dark); font-weight: 700; }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.story-photo img {
  width: 100%; border-radius: var(--radius-card); object-fit: cover;
  box-shadow: var(--shadow-card);
}
.story-text p + p { margin-top: 18px; }
.story-text .quote-box {
  background: var(--green-pale);
  border-radius: var(--radius-img);
  padding: 20px 26px; margin: 22px 0;
  color: var(--green-dark); font-weight: 700; line-height: 2.1;
}
.story-text .quote-box--orange { background: var(--orange-pale); color: var(--orange-text); }
.story-text .em-orange { color: var(--orange-text); font-weight: 700; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 34px 24px 30px; }
.value-card--yellow { background: #FBF3E3; }
.value-card--green { background: #F0F3E8; }
.value-card--pink { background: #FBEDE8; }
.value-card .v-icon {
  width: 74px; height: 74px; border-radius: 50%;
  background: #fff; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.value-card .v-icon svg { width: 38px; height: 38px; fill: var(--green); }
.value-card h3 { color: var(--brown); font-size: 1.08rem; margin-bottom: 12px; line-height: 1.7; }
.value-card p { font-size: 0.88rem; }
.value-closing { margin-top: 40px; text-align: center; font-size: 1.02rem; line-height: 2.2; color: var(--brown); }

.dogs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 940px; margin: 0 auto; }
.dog-card { padding: 22px 26px 28px; text-align: center; }
.dog-card img { border-radius: var(--radius-img); width: 100%; object-fit: cover; }
.dog-card h3 { margin-top: 18px; color: var(--green-dark); font-size: 1.15rem; letter-spacing: 0.08em; }
.dog-card p { margin-top: 12px; font-size: 0.9rem; text-align: center; }
.dogs-closing { margin-top: 38px; text-align: center; font-size: 0.98rem; line-height: 2.2; }

.career-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.career-card { padding: 34px 26px 30px; text-align: center; }
.career-card--yellow { background: #FBF5E4; }
.career-card--white { background: var(--card-bg); }
.career-card--pink { background: #FBEFE9; }
.career-card .c-icon {
  width: 92px; height: 92px; border-radius: 50%;
  background: #E4E9D4; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
}
.career-card .c-icon svg { width: 46px; height: 46px; fill: var(--green-dark); }
.career-card h3 { color: var(--brown); font-size: 1.35rem; letter-spacing: 0.3em; margin-bottom: 18px; }
.career-card ul { text-align: left; }
.career-card li {
  position: relative; padding: 10px 0 10px 22px;
  font-size: 0.92rem; line-height: 1.8;
  border-bottom: 2px dotted var(--border-dot);
}
.career-card li:last-child { border-bottom: none; }
.career-card li::before {
  content: ""; position: absolute; left: 4px; top: 20px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
}
.career-card li .sub { display: block; font-size: 0.82rem; color: var(--text-light); }

/* ---------- サービス・料金 ---------- */
.walk-note-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; }
.walk-photo-card { text-align: center; padding-bottom: 24px; }
.walk-photo-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.walk-photo-card p { margin-top: 16px; font-size: 0.92rem; padding: 0 18px; }
.note-card { padding: 26px 26px 30px; }
.note-card h3 {
  text-align: center; color: var(--green-dark); font-size: 1.1rem;
  letter-spacing: 0.14em; margin-bottom: 16px;
}
.note-card--orange h3 { color: var(--orange-text); }
.note-card ul li {
  position: relative; padding: 9px 0 9px 34px;
  font-size: 0.9rem; border-bottom: 2px dotted var(--border-dot);
  line-height: 1.8;
}
.note-card ul li:last-child { border-bottom: none; }
.note-card .check li::before {
  content: "✓"; position: absolute; left: 4px; top: 9px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 0.75rem; display: flex; align-items: center; justify-content: center;
}
.note-card .flower-list li::before {
  content: "❀"; position: absolute; left: 6px; top: 9px;
  color: var(--orange); font-size: 1rem;
}

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-card { overflow: hidden; }
.price-card .price-head {
  text-align: center; padding: 12px;
  font-weight: 700; font-size: 1.05rem; letter-spacing: 0.1em;
}
.price-card .price-head .small { font-size: 0.82rem; font-weight: 500; }
.price-head--green { background: var(--green-pale); color: var(--green-dark); }
.price-head--orange { background: var(--orange-pale); color: var(--orange-text); }
.price-head--blue { background: #E3EBF0; color: #5C7A8A; }
.price-head--pink { background: var(--pink-pale); color: #C97B6A; }
.price-body { padding: 10px 28px 18px; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 13px 2px;
  border-bottom: 2px dotted var(--border-dot);
  font-size: 0.98rem; color: var(--brown);
}
.price-row:last-child { border-bottom: none; }
.price-row .price { color: var(--price-red); font-weight: 700; font-size: 1.25rem; }
.price-row .price .unit, .price-row .price .small { font-size: 0.82rem; font-weight: 500; }
.price-note-in { text-align: center; font-size: 0.8rem; color: var(--text-light); padding-bottom: 12px; }
.price-option {
  margin-top: 24px; display: flex; align-items: center;
  border-radius: 999px; overflow: hidden;
  background: var(--card-bg); box-shadow: var(--shadow-card);
}
.price-option .opt-label {
  flex-shrink: 0; background: var(--pink-pale); color: #C97B6A;
  font-weight: 700; padding: 14px 30px; font-size: 1rem;
}
.price-option .opt-body {
  flex: 1; display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 30px; font-size: 0.95rem; color: var(--brown);
  flex-wrap: wrap; gap: 6px;
}
.price-option .price { color: var(--price-red); font-weight: 700; font-size: 1.2rem; }
.price-footnote {
  margin-top: 26px; text-align: center;
  background: var(--card-bg); border-radius: var(--radius-img);
  padding: 18px 24px; font-size: 0.92rem; line-height: 2;
  box-shadow: var(--shadow-card);
}

.fee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fee-card { text-align: center; padding: 24px 14px 26px; }
.fee-card .f-icon {
  width: 74px; height: 74px; border-radius: 50%;
  background: #fff; border: 2px solid var(--green-pale);
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
}
.fee-card .f-icon svg { width: 40px; height: 40px; fill: var(--green-dark); }
.fee-card .dist {
  font-size: 0.95rem; color: var(--brown);
  padding-bottom: 10px; margin-bottom: 10px;
  border-bottom: 2px dotted var(--border-dot);
}
.fee-card .price { color: var(--price-red); font-weight: 700; font-size: 1.5rem; line-height: 1.4; }
.fee-card .price .unit, .fee-card .price .small { font-size: 0.85rem; }
.fee-note {
  margin-top: 26px;
  display: flex; align-items: center; gap: 20px;
  background: var(--card-bg); border-radius: var(--radius-img);
  padding: 20px 28px; box-shadow: var(--shadow-card);
  font-size: 0.92rem; line-height: 2;
}
.fee-note .fee-note-label {
  flex-shrink: 0; color: var(--green-dark); font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.fee-note + .fee-note { margin-top: 16px; }

.cancel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 940px; margin: 0 auto; }
.cancel-card { text-align: center; overflow: hidden; }
.cancel-card .c-head { padding: 20px 10px 12px; }
.cancel-card--green .c-head { background: #F0F3E8; }
.cancel-card--orange .c-head { background: #FCF0E2; }
.cancel-card--red .c-head { background: #FBE9E7; }
.cancel-card .c-icon {
  width: 66px; height: 66px; border-radius: 50%; background: #fff;
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
}
.cancel-card .c-icon svg { width: 34px; height: 34px; }
.cancel-card--green svg { fill: var(--green); }
.cancel-card--orange svg { fill: var(--orange); }
.cancel-card--red svg { fill: #D9534F; }
.cancel-card .c-when {
  font-size: 1.05rem; font-weight: 700; padding: 14px 0 6px;
}
.cancel-card--green .c-when { color: var(--green-dark); }
.cancel-card--orange .c-when { color: var(--orange-text); }
.cancel-card--red .c-when { color: #C4534E; }
.cancel-card .c-fee {
  font-size: 1.7rem; font-weight: 700; color: var(--brown);
  padding: 4px 16px 10px;
  border-top: 2px dotted var(--border-dot);
  margin: 0 22px;
}
.cancel-card .c-fee .num { color: #D9534F; font-size: 2.1rem; }
.cancel-card .c-fee .unit { font-size: 1rem; }
.cancel-card p { font-size: 0.82rem; padding: 0 18px 22px; }
.cancel-note {
  margin-top: 34px; text-align: center;
  font-size: 0.95rem; line-height: 2.3; color: var(--brown);
}
.cancel-note .divider {
  width: 320px; max-width: 70%; margin: 6px auto;
  border-top: 3px dotted #EBB58F;
}

/* ---------- お問い合わせ ---------- */
.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 960px; margin: 0 auto; }
.method-card { padding: 32px 30px 34px; }
.method-head { display: flex; align-items: center; gap: 16px; justify-content: center; }
.method-head .line-icon, .method-head .m-icon { width: 64px; height: 64px; flex-shrink: 0; }
.method-head .m-icon {
  border-radius: 14px; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.method-head .m-icon svg { width: 34px; height: 34px; fill: #fff; }
.method-head .m-title { text-align: left; }
.method-head .m-title h3 { color: var(--green-dark); font-size: 1.3rem; letter-spacing: 0.06em; }
.method-card--form .method-head .m-title h3 { color: var(--orange-text); }
.method-head .m-title .m-sub {
  font-size: 0.85rem; color: var(--brown);
  padding-top: 4px; margin-top: 4px;
  border-top: 2px dotted var(--border-dot);
}
.method-body { display: flex; gap: 18px; margin-top: 22px; align-items: center; }
.method-body .qr {
  width: 110px; height: 110px; flex-shrink: 0;
  background: #fff; border: 2px dotted var(--border-dot); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; color: var(--text-light); text-align: center;
  line-height: 1.6; padding: 8px;
}
.method-body p { font-size: 0.88rem; }
.method-card .btn { width: 100%; margin-top: 22px; }

.form-wrap {
  max-width: 760px; margin: 0 auto;
  background: var(--cream-deep);
  border-radius: var(--radius-card);
  padding: 40px 44px;
}
.form-row { display: grid; grid-template-columns: 220px 1fr; gap: 12px; align-items: center; margin-bottom: 20px; }
.form-label { font-size: 0.92rem; color: var(--brown); text-align: right; }
.form-label .req { color: var(--orange-text); font-size: 0.75rem; margin-left: 6px; }
.form-label .opt { color: var(--text-light); font-size: 0.75rem; margin-left: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid #E5D8C8; border-radius: 10px;
  background: #fff; font-family: var(--font); font-size: 0.95rem;
  color: var(--brown);
}
.form-input::placeholder, .form-textarea::placeholder { color: #C4B5A3; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: 2px solid var(--green); border-color: transparent;
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-submit { text-align: center; margin-top: 28px; }
.form-submit .btn { min-width: 220px; }
.form-note { text-align: center; margin-top: 18px; font-size: 0.82rem; color: var(--text-light); line-height: 2; }

/* ---------- ページ内共通装飾 ---------- */
.paw-bg { position: relative; }
.deco-paw {
  position: absolute; opacity: 0.35; width: 46px; height: 46px;
  fill: #EDBA96; pointer-events: none;
}

/* ---------- スクロールアニメーション ---------- */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   レスポンシブ
============================================ */
@media (max-width: 1420px) {
  .header-logo .logo-tag { display: none; }
  .gnav ul { gap: 18px; }
  .gnav a { font-size: 0.88rem; }
  .header-cta .btn { padding: 8px 14px; font-size: 0.8rem; }
  .header-cta .btn .btn-icon { width: 18px; height: 18px; }
}

@media (max-width: 1024px) {
  .gnav {
    position: fixed; inset: 0; top: 78px;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 34px 30px;
    overflow-y: auto;
    z-index: 99;
  }
  .gnav.open { transform: translateX(0); }
  .gnav ul { flex-direction: column; gap: 0; }
  .gnav a {
    display: block; padding: 16px 6px; font-size: 1.05rem;
    border-bottom: 2px dotted var(--border-dot);
  }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .worry-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .steps-grid + .steps-grid { margin-top: 34px; }
  .step-arrow { display: none; }
  .fee-grid { grid-template-columns: repeat(2, 1fr); }
  .walk-note-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .hero-inner, .page-hero-inner { grid-template-columns: 1fr; gap: 28px; padding-top: 36px; padding-bottom: 44px; }
  .hero-photo { order: -1; }
  .page-hero-photo { order: -1; }

  .section { padding: 54px 0; }
  .service-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .service-grid--two { grid-template-columns: 1fr; max-width: 480px; }
  .info-grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; gap: 40px; }
  .biz-wrap { padding: 36px 24px; }
  .footer-cta-inner { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .footer-cta-photo img { max-height: 300px; }
  .footer-cta-copy { padding: 36px 22px 44px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-nav { border: none; grid-template-columns: repeat(2, auto); justify-content: center; text-align: center; }

  .story { grid-template-columns: 1fr; gap: 26px; }
  .story--reverse .story-photo { order: -1; }
  .value-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .dogs-grid { grid-template-columns: 1fr; max-width: 520px; }
  .career-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  .price-grid { grid-template-columns: 1fr; }
  .cancel-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-option { flex-direction: column; align-items: stretch; border-radius: var(--radius-img); }
  .price-option .opt-label { text-align: center; }
  .fee-note { flex-direction: column; gap: 8px; text-align: center; }

  .contact-methods { grid-template-columns: 1fr; max-width: 520px; }
  .form-wrap { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 6px; margin-bottom: 18px; }
  .form-label { text-align: left; }
}

@media (max-width: 540px) {
  body { font-size: 15px; }
  .worry-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .fee-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-btns .btn, .footer-cta-btns .btn { width: 100%; }
  .header-logo img { width: 48px; height: 48px; }
  .header-logo .logo-name { font-size: 1.1rem; }
  .hours-row { flex-direction: column; gap: 8px; }
}
