/* 共通変数 */
:root {
  --header-wave-h: 58px;
  --hero-bottom-wave-h: 40px;
  --hero-content-h: 140px;
  --hero-safe-top: calc(var(--header-wave-h) + 18px);
  --hero-safe-bottom: calc(var(--hero-bottom-wave-h) + 10px);
}

/* ヘッダー下の波 */
.cloud-bottom {
  position: relative;
  line-height: 0;
  margin-bottom: -1px;
  z-index: 10;
}

.cloud-bottom svg {
  display: block;
  width: 100%;
  height: var(--header-wave-h);
}

.cloud-bottom path {
  fill: #ffffff;
}

body {
  font-family: "Zen Maru Gothic", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #5b4a42;
}

/* PC改行コントロール　<br class="pc-br"> 　*/
.pc-br {
  display: block;
}

@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

/* mobile改行コントロール　<br class="u-sp-only"> 　*/
.u-sp-only {
  display: none;
}

@media (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

/*==========================
  タイトル
============================*/
.page-hero {
  position: relative;
  overflow: hidden;
  background: #f8f3ed;
  z-index: 1;
  min-height: calc(
    var(--hero-content-h) + var(--hero-safe-top) + var(--hero-safe-bottom)
  );
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.76) 0%,
    rgba(255, 255, 255, 0.58) 45%,
    rgba(255, 255, 255, 0.64) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  min-height: calc(
    var(--hero-content-h) + var(--hero-safe-top) + var(--hero-safe-bottom)
  );
  padding-top: var(--hero-safe-top);
  padding-right: 20px;
  padding-bottom: var(--hero-safe-bottom);
  padding-left: 20px;
  display: grid;
  place-items: center;
  text-align: center;
}

.page-hero-title {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-title img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 92px;
  margin: 0 auto;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.9));
}

.page-hero-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 4;
  pointer-events: none;
}

.page-hero-wave svg {
  display: block;
  width: 100%;
  height: var(--hero-bottom-wave-h);
}

.page-hero-wave path {
  fill: #ffff; /* 次セクションの背景色に合わせる */
}

@media (max-width: 1024px) {
  :root {
    --header-wave-h: 48px;
    --hero-bottom-wave-h: 32px;
    --hero-content-h: 150px;
    --hero-safe-top: calc(var(--header-wave-h) + 26px);
    --hero-safe-bottom: calc(var(--hero-bottom-wave-h) + 10px);
  }

  .page-hero-title img {
    max-height: 78px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-wave-h: 34px;
    --hero-bottom-wave-h: 22px;
    --hero-content-h: 120px;
    --hero-safe-top: calc(var(--header-wave-h) + 48px);
    --hero-safe-bottom: calc(var(--hero-bottom-wave-h) + 8px);
  }

  .page-hero-inner {
    padding-top: var(--hero-safe-top);
    padding-right: 15px;
    padding-left: 15px;
  }

  .page-hero-title img {
    max-height: 54px;
  }
}

/*==========================
  セクションタイトル
============================*/
.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  width: 100%;
  margin-bottom: 30px;
}

.section-title-side {
  min-width: 0;
  display: flex;
  align-items: center;
}

.section-title-side-left {
  justify-content: flex-end;
}

.section-title-side-right {
  justify-content: flex-start;
}

.section-title-side img {
  display: block;
  width: min(100%, 210px);
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.section-title-main {
  display: flex;
  justify-content: center;
}

.section-title-main img {
  display: block;
  width: 350px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .section-title {
    column-gap: 14px;
    margin-bottom: 24px;
  }

  .section-title-side img {
    width: min(100%, 140px);
  }

  .section-title-main img {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .section-title {
    column-gap: 8px;
    margin-bottom: 20px;
  }

  .section-title-side {
    height: 34px;
    overflow: hidden;
  }

  .section-title-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-title-main img {
    width: 230px;
  }
}

/*==========================
  プラン紹介
============================*/
.simple-plan-section,
.simple-plan-section * {
  box-sizing: border-box;
}

.simple-plan-section {
  background: #ffffff;
  padding: 80px 20px;
  overflow: hidden;
}

.simple-plan-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* 導入 */
.simple-plan-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.simple-plan-label {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 28px;
  border: 2px solid #6bbf59;
  border-radius: 999px;
  color: #6bbf59;
  font-size: 1rem;
  font-weight: 700;
}

.simple-plan-heading {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.45;
  color: #5b4a42;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.simple-plan-heading span {
  color: #7fae64;
}

.simple-plan-heading::after {
  content: "";
  display: block;
  width: 78%;
  height: 2px;
  margin-top: 18px;
  background: repeating-linear-gradient(
    90deg,
    #6bbf59 0,
    #6bbf59 10px,
    transparent 10px,
    transparent 18px
  );
}

.simple-plan-text {
  margin: 0;
  font-size: 19px;
  line-height: 2;
  color: #5b4a42;
  font-weight: 500;
}

.simple-plan-text strong {
  color: #6f9f58;
}

.simple-plan-pets img {
  display: block;
  width: 100%;
  height: auto;
}

/* 比較表 */
.simple-plan-compare {
  margin-bottom: 36px;
}

.simple-plan-compare-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 1.6rem;
  color: #5b4a42;
}

.simple-plan-compare table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 2px solid #e4d9c8;
  border-radius: 18px;
  background: #fff;
}

.simple-plan-compare th,
.simple-plan-compare td {
  padding: 20px;
  border-right: 1px solid #e4d9c8;
  border-bottom: 1px solid #e4d9c8;
  text-align: center;
  font-size: 18px;
  color: #5b4a42;
  font-weight: 700;
}

.simple-plan-compare th {
  background: #fffaf0;
}

.simple-plan-compare th:nth-child(2) {
  background: #f2f8e8;
  color: #6f9f58;
}

.simple-plan-compare th:nth-child(3) {
  background: #eef7fd;
  color: #5d91bd;
}

.simple-plan-compare tr:last-child td {
  border-bottom: none;
}

.simple-plan-compare th:last-child,
.simple-plan-compare td:last-child {
  border-right: none;
}

.simple-plan-compare td:not(:first-child) {
  font-size: 24px;
}

.simple-plan-compare .green {
  color: #6f9f58;
  font-size: 18px;
}

.simple-plan-compare .blue {
  color: #5d91bd;
  font-size: 18px;
}

.simple-plan-note {
  margin: 18px 0 0;
  text-align: center;
  color: #5b4a42;
  font-size: 17px;
  font-weight: 700;
}

/* プラン詳細 */
.simple-plan-detail {
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  margin-bottom: 28px;
  box-shadow: 0 6px 18px rgba(139, 173, 122, 0.13);
}

.simple-plan-detail-green {
  border: 2px solid #cdddbb;
}

.simple-plan-detail-blue {
  border: 2px solid #cdddeb;
}

.simple-plan-detail-head {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
}

.simple-plan-detail-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.simple-plan-detail-green .simple-plan-detail-icon {
  background: #f3f8e8;
}

.simple-plan-detail-blue .simple-plan-detail-icon {
  background: #eaf4fb;
}

.simple-plan-detail-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.simple-plan-badge {
  display: inline-block;
  margin: 0 0 8px;
  padding: 5px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.simple-plan-detail-green .simple-plan-badge {
  background: #6f9f58;
}

.simple-plan-detail-blue .simple-plan-badge {
  background: #5d91bd;
}

.simple-plan-detail h3 {
  margin: 0 0 8px;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
}

.simple-plan-detail-green h3 {
  color: #6f9f58;
}

.simple-plan-detail-blue h3 {
  color: #5d91bd;
}

.simple-plan-detail-head p:last-child {
  margin: 0;
  font-size: 17px;
  color: #5b4a42;
  font-weight: 600;
}

/* 流れ */
.simple-plan-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.simple-plan-flow div {
  position: relative;
  padding: 18px 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee1d1;
  text-align: center;
}

.simple-plan-flow div:not(:last-child)::after {
  content: "▶";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  color: #e5b69c;
  font-size: 14px;
  z-index: 2;
}

.simple-plan-flow img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}

.simple-plan-flow span {
  display: block;
  color: #5b4a42;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.simple-plan-detail-text {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.9;
  color: #5b4a42;
  font-weight: 600;
}

/* おすすめ */
.simple-plan-recommend {
  padding: 22px 26px;
  border-radius: 18px;
}

.simple-plan-detail-green .simple-plan-recommend {
  background: #f7fbef;
}

.simple-plan-detail-blue .simple-plan-recommend {
  background: #f0f8fd;
}

.simple-plan-recommend h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #5b4a42;
}

.simple-plan-recommend ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-plan-recommend li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 17px;
  color: #5b4a42;
  font-weight: 600;
}

.simple-plan-recommend li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6bbf59;
  font-weight: 700;
}

/* 骨壺無料 */
.simple-plan-free {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 30px;
  align-items: center;
  padding: 34px 40px;
  border: 2px solid #e5dcc0;
  border-radius: 24px;
  background: #fffdf6;
}

.simple-plan-free-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.45;
  color: #6f9f58;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.simple-plan-free-title span {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.simple-plan-free-image img {
  display: block;
  width: 100%;
  height: auto;
}

.simple-plan-free-text p {
  position: relative;
  margin: 0 0 14px;
  padding-left: 30px;
  font-size: 18px;
  line-height: 1.8;
  color: #5b4a42;
  font-weight: 700;
}

.simple-plan-free-text p::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6bbf59;
}

@media (max-width: 768px) {
  .simple-plan-section {
    padding: 64px 16px;
  }

  .simple-plan-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .simple-plan-pets {
    max-width: 280px;
    margin: 0 auto;
  }

  .simple-plan-heading {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .simple-plan-heading::after {
    width: 100%;
  }

  .simple-plan-text {
    font-size: 16px;
  }

  .simple-plan-compare {
    overflow-x: auto;
  }

  .simple-plan-compare table {
    min-width: 620px;
  }

  .simple-plan-detail {
    padding: 26px 20px;
  }

  .simple-plan-detail-head {
    align-items: flex-start;
  }

  .simple-plan-detail h3 {
    font-size: 2rem;
  }

  .simple-plan-flow {
    grid-template-columns: 1fr;
  }

  .simple-plan-flow div:not(:last-child)::after {
    content: "▼";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -15px;
    transform: translateX(-50%);
  }

  .simple-plan-free {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 22px;
  }

  .simple-plan-free-image {
    max-width: 230px;
    margin: 0 auto;
  }

  .simple-plan-free-text p {
    text-align: left;
  }
}

/*==========================
  時間
============================*/
.visit-flow-section,
.visit-flow-section * {
  box-sizing: border-box;
}

.visit-flow-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0 88px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 253, 248, 0.82) 0%,
      rgba(255, 255, 255, 0.72) 50%,
      rgba(237, 245, 221, 0.82) 100%
    ),
    url("../img/visit-flow-bg.webp") center center / cover no-repeat;
}

.visit-flow-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  min-height: 460px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  color: #5b4a42;
}

/* 上テキスト */
.visit-flow-lead {
  position: relative;
  display: inline-block;
  margin: 0 0 24px;
  line-height: 1.7;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  letter-spacing: 0.08em;
}

.visit-flow-lead::after {
  content: "";
  position: absolute;
  left: -56px;
  right: -56px;
  bottom: -10px;
  height: 1px;
  background: #d8cdaa;
}

/* メインタイトル */
.visit-flow-title {
  margin: 0 0 24px;
  line-height: 1.25;
  font-size: clamp(2.8rem, 4vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #5b4a42;
}

/* リボン */
.visit-flow-ribbon {
  display: inline-block;
  margin-bottom: 24px;
  padding: 12px 56px;
  background: #6bbf59;
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  letter-spacing: 0.08em;
  line-height: 1.5;
  clip-path: polygon(6% 0, 100% 0, 94% 50%, 100% 100%, 6% 100%, 0 50%);
}

/* 時間 */
.visit-flow-time {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  min-width: 500px;
  padding: 16px 52px;
  border: 2px dashed #bfd4a5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #5b4a42;
}

.visit-flow-time span {
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.visit-flow-time strong {
  color: #8bad55;

  font-size: clamp(4.8rem, 8vw, 6.8rem);

  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* 波 */
.visit-flow-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.visit-flow-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.visit-flow-wave path {
  fill: #fffcf1; /* 次セクション背景色 */
}

@media screen and (max-width: 768px) {
  .visit-flow-section {
    padding: 44px 0 72px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 253, 248, 0.86) 0%,
        rgba(255, 255, 255, 0.76) 50%,
        rgba(237, 245, 221, 0.86) 100%
      ),
      url("../img/visit-flow-bg.webp") center center / cover no-repeat;
  }

  .visit-flow-inner {
    min-height: auto;
    padding: 0 18px 70px;
  }

  .visit-flow-lead {
    margin-bottom: 20px;
  }

  .visit-flow-lead::after {
    left: -20px;
    right: -20px;
  }

  .visit-flow-title {
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .visit-flow-ribbon {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 18px;
  }

  .visit-flow-time {
    min-width: 0;
    width: 100%;
    gap: 18px;
    padding: 14px 24px;
  }

  .visit-flow-wave svg {
    height: 24px;
  }
}

/*==========================
  料金表 & オプション
============================*/
.price-section,
.price-section * {
  box-sizing: border-box;
}

.price-section {
  position: relative;
  background: #fffcf1;
  padding: 80px 20px 120px;
  overflow: hidden;
}

.price-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.price-title {
  margin: 0 0 34px;
}

.price-title img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.price-plan-list {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 10px 14px;
  max-width: 980px;
  margin: 0 auto;
}

.price-head,
.price-weight,
.price-plan-price {
  min-height: 96px;
  border: 2px solid #6bbf59;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 82% 38%,
      rgba(255, 255, 255, 0.95),
      transparent 28%
    ),
    linear-gradient(90deg, #ffffff 0%, #f1f7e7 100%);
  box-shadow: 0 4px 12px rgba(139, 173, 122, 0.18);
  color: #5b4a42;
}

.price-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 25px;
  font-weight: 800;
}

.price-weight-head {
  visibility: hidden;
}

.plan-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.price-weight {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  padding: 12px 22px;
  font-size: 30px;
  font-weight: 800;
  text-align: left;
}

.price-animal {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.price-plan-price {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
}

.price-note {
  margin: 18px 0 18px;
  font-size: 19px;
  line-height: 1.7;
  color: #5b4a42;
  font-weight: 700;
  text-align: center;
}

.price-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: stretch;
}

.price-night,
.price-last {
  min-width: 250px;
  background: linear-gradient(180deg, #8fb383 0%, #789f6b 100%);
  color: #ffffff;
  border: 2px solid #bfd4a5;
  border-radius: 14px;
  padding: 10px 24px;
  box-shadow: 0 4px 12px rgba(139, 173, 122, 0.22);
}

.price-night p,
.price-last p {
  margin: 0 0 5px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.price-night span {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.price-last strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
}

.price-plan-price-wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .price-section {
    padding: 52px 10px 72px;
    overflow: hidden;
  }

  .price-title {
    margin-bottom: 20px;
  }

  .price-title img {
    max-width: 190px;
  }

  .price-plan-list {
    grid-template-columns: 29% 1fr 1fr;
    gap: 6px;
    width: 100%;
    max-width: 100%;
  }

  .price-head,
  .price-weight,
  .price-plan-price {
    min-height: 66px;
    border-radius: 12px;
    border-width: 2px;
    width: 100%;
    min-width: 0;
  }

  .price-head {
    gap: 4px;
    padding: 6px 2px;
  }

  .price-head strong {
    font-size: 13px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .plan-icon {
    width: 24px;
    height: 24px;
  }

  .price-weight {
    grid-template-columns: 28px 1fr;
    gap: 4px;
    padding: 6px 5px;
  }

  .price-weight strong {
    font-size: 17px;
    line-height: 1;
    white-space: nowrap;
  }

  .price-animal {
    width: 26px;
    height: 26px;
  }

  .price-plan-price {
    padding: 4px 2px;
    font-size: 22px;
    line-height: 1;
    white-space: nowrap;
  }

  .price-note {
    width: 100%;
    max-width: 100%;
    margin: 14px auto 12px;
    font-size: 12px;
    line-height: 1.6;
    padding: 0 4px;
  }

  .price-bottom {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .price-night,
  .price-last {
    flex: 1;
    min-width: 0;
    min-height: 78px;
    border-radius: 12px;
    padding: 10px 10px;
  }

  .price-night p,
  .price-last p {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.2;
  }

  .price-night span {
    font-size: 10px;
    line-height: 1.5;
  }

  .price-last strong {
    font-size: 34px;
    line-height: 1;
  }

  .price-plan-price-wide {
    font-size: 19px;
    padding: 4px 8px;
    text-align: center;
    line-height: 1.4;
  }
}

/*========================== オプション追加 ============================*/
.price-option-intro {
  max-width: 1200px;
  margin: 56px auto 0;
  text-align: left;
}

.price-option-title {
  margin: 0 0 18px;
  line-height: 1;
}

.price-option-title img {
  display: block;
  max-width: 350px;
  width: 100%;
  height: auto;
}

.price-option-text {
  margin: 0;
  font-size: 20px;
  line-height: 2;
  color: #5b4a42;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.price-option-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  max-width: 1000px;
  margin: 34px auto 0;
}

.price-option-card {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 2px solid #d8e3c5;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 14px rgba(139, 173, 122, 0.16);
  text-align: left;
}

/* PCでは中身をgridの直下扱いにする */
.price-option-content {
  display: contents;
}

.price-option-head,
.price-option-desc {
  grid-column: 1;
}

.price-option-image {
  grid-column: 2;
  grid-row: 1 / 3;
}

/* 色違い */
.price-option-card-a {
  background: linear-gradient(135deg, #fffef8 0%, #f3f8e8 100%);
}

.price-option-card-b {
  background: linear-gradient(135deg, #fffafa 0%, #fbeaea 100%);
  border-color: #efd0cd;
}

.price-option-card-c {
  background: linear-gradient(135deg, #fffdf6 0%, #fff2d8 100%);
  border-color: #efd9a8;
}

.price-option-card-d {
  background: linear-gradient(135deg, #fafdff 0%, #eaf4fb 100%);
  border-color: #cdddeb;
}

/* ヘッド */
.price-option-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.price-option-head span {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #8bad7a;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  font-weight: 700;
}

.price-option-card-b .price-option-head span {
  background: #d98989;
}

.price-option-card-c .price-option-head span {
  background: #d9a52e;
}

.price-option-card-d .price-option-head span {
  background: #7898b5;
}

/* タイトル */
.price-option-head h3 {
  margin: 0 0 6px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.45;
  color: #5b4a42;
  font-weight: 700;
}

/* 金額 */
.price-option-head p {
  margin: 0;
  font-size: 1.15rem;
  color: #6f9f58;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price-option-card-b .price-option-head p {
  color: #c46f6f;
}

.price-option-card-c .price-option-head p {
  color: #c28a20;
}

.price-option-card-d .price-option-head p {
  color: #5f83a2;
}

/* 説明文 */
.price-option-desc {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.9;
  color: #5b4a42;
  font-weight: 500;
}

/* 画像 */
.price-option-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .price-option-intro {
    margin-top: 48px;
  }

  .price-option-title {
    margin-bottom: 14px;
  }

  .price-option-title img {
    max-width: 280px;
  }

  .price-option-text {
    font-size: 17px;
    line-height: 1.9;
  }

  .price-option-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }

  .price-option-card {
    display: block;
    padding: 20px;
  }

  .price-option-content {
    display: flex;
    flex-direction: column;
  }

  .price-option-head {
    order: 1;
  }

  .price-option-image {
    order: 2;
    margin-top: 16px;
  }

  .price-option-desc {
    order: 3;
  }

  .price-option-head span {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
}

/* 次セクションにつなぐ波 */
.price-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.price-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.price-wave path {
  fill: #ffffff; /* 次のセクション背景色に合わせて変更 */
}

/*==========================
  流れ
============================*/
.usage-flow-section,
.usage-flow-section * {
  box-sizing: border-box;
}

.usage-flow-section {
  position: relative;
  background: #ffffff;
  padding: 90px 20px 120px;
  overflow: hidden;
}

.usage-flow-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.usage-flow-title {
  margin: 0 0 42px;
}

.usage-flow-title img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.usage-flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.usage-flow-steps::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: #999;
  z-index: 0;
}

.usage-flow-step {
  position: relative;
}

.usage-flow-number {
  position: absolute;
  top: -10px;
  left: 10px;
  margin: 0;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #e5e5e5;
  z-index: 0;
}

.usage-flow-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 14px;
  border: 3px solid #777;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usage-flow-icon img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.usage-flow-text {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
  color: #555;
  font-weight: 700;
}

.usage-flow-text span {
  color: #6bbf59;
}

.usage-flow-note {
  margin: 42px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: #777;
}

/* 次セクションにつなぐ波 */
.usage-flow-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.usage-flow-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.usage-flow-wave path {
  fill: #eaf3f6; /* 次のセクション背景色に変更 */
}

@media (max-width: 768px) {
  .usage-flow-section {
    padding: 64px 16px 92px;
  }

  .usage-flow-title {
    margin-bottom: 34px;
  }

  .usage-flow-title img {
    max-width: 210px;
  }

  .usage-flow-steps {
    display: block;
    max-width: 320px;
  }

  .usage-flow-steps::before {
    display: none;
  }

  .usage-flow-step + .usage-flow-step {
    margin-top: 34px;
  }

  .usage-flow-number {
    font-size: 36px;
  }

  .usage-flow-icon {
    width: 120px;
    height: 120px;
  }

  .usage-flow-icon img {
    width: 100px;
    height: 100px;
  }

  .usage-flow-text {
    font-size: 17px;
  }

  .usage-flow-note {
    margin-top: 32px;
    font-size: 13px;
  }

  .usage-flow-wave svg {
    height: 24px;
  }
}

/*==========================
  支払い方法
============================*/
:root {
  --bg: #ffffff;
  --ink: #111;
  --bar: #3c3c3c;
  --border: #cfcfcf;
  --gap: 14px;
}

* {
  box-sizing: border-box;
}

.sheet {
  max-width: 1000px;
  width: 100%;
  margin: 24px auto 0;
  padding: 16px;
  background: #eaf3f6;
  color: var(--ink);
  border-radius: 8px;
}

.panel {
  border: 1px solid #e6e6e6;
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
}

.panel__title {
  background: var(--bar);
  color: #fff;
  font-weight: 700;
  padding: 19px;
  font-size: 20px;
}

.credit-row {
  padding: 16px;
}

.credit-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

/* クレジットカード横並び */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* 下段グリッド */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  padding: 16px;
  align-items: center;
  justify-items: center;
}

/* ロゴ共通 */
.logo {
  width: 100%;
  max-width: 120px;
  height: 56px;
  object-fit: contain;
  display: block;
}

/* 2カラム */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: var(--gap);
}

/* QRコード決済だけ2列 */
.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 16px;
  align-items: center;
  justify-items: center;
}

/* 枠なし */
.logo-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* QRだけ少し大きく */
.qr-logo {
  width: 100%;
  max-width: 170px;
  height: 70px;
  object-fit: contain;
  display: block;
}

@media (max-width: 480px) {
  .qr-grid {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
  }

  .qr-logo {
    max-width: 140px;
    height: 58px;
  }
}

.payment-section {
  position: relative;
  background: #eaf3f6;
  padding-bottom: 120px;
  overflow: hidden;
}

.payment-section .sheet {
  position: relative;
  z-index: 2;
}

.payment-section .usage-flow-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.payment-section .usage-flow-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.payment-section .usage-flow-wave path {
  fill: #fffcf1;
}

@media (max-width: 768px) {
  .payment-section {
    padding-bottom: 92px;
  }

  .payment-section .usage-flow-wave svg {
    height: 24px;
  }

  .panel__title {
    background: var(--bar);
    color: #fff;
    font-weight: 700;
    padding: 19px;
    font-size: 15px;
  }
}

/*==========================
  ペット火葬車について
============================*/
.service-blocks {
  position: relative;
  background: #fffdf5;
  padding: 90px 20px 120px;
  overflow: hidden;
}

.service-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.service-lead {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 20px;
  line-height: 2;
  color: #555;
}

.service-block {
  max-width: 1100px;
  margin: 0 auto 70px;
}

.service-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-block--reverse .service-inner {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.service-title h3 {
  font-size: 28px;
  margin: 0;
  color: #333;
}

.service-text p {
  font-size: 18px;
  line-height: 2;
  color: #555;
}

.service-image {
  flex: 1;
  margin: 0;
}

.service-image img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* 4枚画像ギャラリー */
.service-gallery {
  max-width: 1100px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.service-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.service-gallery-item:hover img {
  transform: scale(1.06);
}

/* ポップアップ */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  padding: 20px;
}

.service-modal.is-active {
  display: flex;
}

.service-modal img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
}

.service-modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 26px;
  cursor: pointer;
}

/* 次セクションにつなぐ波 */
.service-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.service-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.service-wave path {
  fill: #fff7f3;
}

@media (max-width: 768px) {
  .service-blocks {
    padding: 64px 16px 92px;
  }

  .service-lead {
    margin-bottom: 0;
    font-size: 17px;
    text-align: center;
  }

  .service-inner,
  .service-block--reverse .service-inner {
    flex-direction: column;
    gap: 28px;
  }

  .service-block {
    margin-bottom: 54px;
  }

  .service-heading {
    justify-content: center;
  }

  .service-title h3 {
    font-size: 24px;
  }

  .service-text p {
    font-size: 17px;
  }

  .service-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 50px;
  }

  .service-wave svg {
    height: 24px;
  }
}

/*==========================
  CTA
============================*/
.cta-section,
.cta-section * {
  box-sizing: border-box;
}

.cta-section {
  position: relative;
  z-index: 2;
  background: #fff7f3;
  padding: 100px 20px 145px;
  margin: 0;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cta-tel {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-tel img {
  display: block;
  width: 100%;
  height: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 44px;
}

.cta-button {
  width: 46%;
  max-width: 520px;
  min-height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.cta-button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.cta-button img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.cta-button-mail {
  background: #1696e7;
}

.cta-button-line {
  background: #06c755;
}

.cta-notes {
  margin-top: 34px;
  text-align: left;
  display: inline-block;
}

.cta-notes p {
  margin: 5px 0;
  font-size: 20px;
  line-height: 1.8;
  color: #5a4a43;
}

/* CTA → Footer 波 */
.cta-footer-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.cta-footer-wave svg {
  display: block;
  width: 100%;
  height: 44px;
}

.cta-footer-wave path {
  fill: #fdf5e6;
}

@media (max-width: 640px) {
  .cta-section {
    padding: 72px 16px 105px;
    margin: 0;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    margin-top: 26px;
  }

  .cta-button {
    width: 100%;
    max-width: 100%;
    min-height: 68px;
    font-size: 18px;
    gap: 10px;
  }

  .cta-button img {
    width: 28px;
    height: 28px;
  }

  .cta-notes {
    margin-top: 22px;
  }

  .cta-notes p {
    font-size: 16px;
  }

  .cta-footer-wave svg {
    height: 24px;
  }
}
