@charset "UTF-8";
/* base */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
.c-pink {
  color: var(--color-pink);
}

:root {
  --color-base: #A8935E;
  --color-white: #FFF;
  --color-black: #333;
  --color-pink: #FFC3BB;
  --color-blue: #091E5D;
  --color-bg: #252525;
  --color-bg-white: #FCFAFA;
  --color-gradient-brown: linear-gradient(90deg, #9C8754 0%, #AA9971 100%);
  --font-serif: "Libre Baskerville";
  --font-sans: "Noto Sans";
}

:root {
  --color-base: #A8935E;
  --color-white: #FFF;
  --color-black: #333;
  --color-pink: #FFC3BB;
  --color-blue: #091E5D;
  --color-bg: #252525;
  --color-bg-white: #FCFAFA;
  --color-gradient-brown: linear-gradient(90deg, #9C8754 0%, #AA9971 100%);
  --font-serif: "Libre Baskerville";
  --font-sans: "Noto Sans";
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-size: 1.6rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--color-base);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 1240px;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .container {
    width: 95vw;
  }
}

.section {
  padding-block: 8rem;
}
@media screen and (max-width: 640px) {
  .section {
    padding-block: 4rem;
  }
}

section {
  scroll-margin-top: 100px;
  /* PCナビ高さ */
}
@media (max-width: 768px) {
  section {
    scroll-margin-top: 60px;
    /* SPナビ高さ */
  }
}

@media (min-width: 769px) {
  .is-sp {
    display: none;
  }
}
@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
#service {
  background: url(../images/bg-service.svg) no-repeat top/contain;
}

#price {
  background: url(../images/bg-price.svg) no-repeat top/cover;
}

#example {
  background: var(--color-gradient-brown);
}

.c-contact--normal {
  background: url("../images/bt-cta.svg") center/contain no-repeat;
}

.c-contact--blue {
  background: url("../images/bt-cta.svg") center/cover no-repeat, var(--color-blue);
}

/* layout */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  height: 10rem;
  padding: 1.9rem 4rem;
  justify-content: space-between;
  align-items: center;
  background-color: #252525;
}
@media screen and (max-width: 786px) {
  .site-header {
    height: 7rem;
    padding: 1.6rem 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 100%;
  width: auto;
  max-height: 100%;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 4rem;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  font-family: var(--font-serif);
}
@media (max-width: 640px) {
  .nav-list {
    width: 100%;
    justify-content: space-between;
    font-size: 1.2rem;
  }
}

/* 画面外読み上げ用（アクセシビリティ） */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 既存のPCナビにクラスを付けたので調整 */
.g-nav {
  display: block;
}

/* ハンバーガー（SPで表示） */
.nav-toggle {
  display: none;
  width: 4.6rem;
  height: 4.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle__line {
  display: block;
  width: 3.2rem;
  height: 3px;
  margin: 5px auto;
  background: #c9b083;
  /* 画像のゴールド寄せ */
}

/* SPメニュー（オーバーレイ） */
/* フルスクリーンメニュー */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #252525;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}

/* 中央レイアウト */
.sp-menu__panel {
  width: 100%;
  max-width: 520px;
  padding: 6rem 3rem;
  position: relative;
  text-align: center;
}

/* ×ボタン */
.sp-menu__close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  background: none;
  border: 0;
  color: #c9b083;
  font-size: 3.2rem;
  cursor: pointer;
}

/* メインリスト */
.sp-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-serif);
  text-align: left;
}

.sp-menu__list li {
  margin-bottom: 1.6rem;
}

.sp-menu__list a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.sp-menu__list a:hover {
  color: #c9b083;
}

/* 下部リンク */
.sp-menu__divider {
  border: 0;
  border-top: 1px solid rgba(201, 176, 131, 0.4);
  margin: 3rem 0;
}

.sp-menu__sub {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-menu__sub li {
  margin-bottom: 1rem;
}

.sp-menu__sub a {
  font-size: 1.6rem;
  color: rgba(242, 242, 242, 0.8);
  text-decoration: none;
}

/* 背景スクロール防止 */
body.is-menu-open {
  overflow: hidden;
}

/* ====== ここがレスポンシブ切替の肝 ====== */
@media (max-width: 640px) {
  .g-nav {
    display: none;
    /* PCナビは隠す */
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .sp-menu__panel {
    margin-top: 0rem;
    padding: 5rem 3.2rem 4rem;
  }
  .sp-menu__list a,
  .sp-menu__sub a {
    font-size: 1.8rem;
  }
}
.l-hero h1 {
  margin: 0 0 var(--space-2);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.l-hero p {
  margin: 0;
  color: var(--sub-text);
  max-width: 60ch;
}

/* ======================================
   CONCEPT
====================================== */
#concept.section {
  position: relative;
  background: #0b2a63;
  /* 濃いネイビー */
  padding: clamp(64px, 8vw, 110px) 0;
  overflow: hidden;
  text-align: center;
}

#concept .container {
  width: min(1040px, 92%);
  margin-inline: auto;
}

#concept .l-heading3 {
  position: relative;
  margin-bottom: clamp(18px, 3vw, 28px);
}

#concept .l-heading3__sub {
  position: absolute;
  left: 50%;
  top: clamp(-22px, -3vw, -10px);
  transform: translateX(-50%);
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(56px, 10vw, 110px);
  letter-spacing: 0.14em;
  line-height: 1;
  background: linear-gradient(128deg, rgba(156, 135, 84, 0.2) -1.21%, rgba(170, 153, 113, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
}

/* 金色のリード */
#concept .l-heading3__lead {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-top: clamp(18px, 2.2vw, 26px);
  color: #c9a25a;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* 花びらSVG（concept.svg）をリード右へ */
#concept .l-heading3__lead::after {
  content: "";
  position: absolute;
  top: 60%;
  right: -20%;
  transform: translateY(-50%);
  width: 76px;
  height: 68px;
  background: url("../images/concept.svg") no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  #concept .l-heading3__lead::after {
    right: -22vw;
    top: 100%;
  }
}

/* 本文 */
#concept .c-contents {
  margin-top: clamp(14px, 2vw, 18px);
}

#concept .c-paragraph {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0.02em;
}

/* ちょいリッチにするなら（任意） */
#concept .c-paragraph {
  text-wrap: pretty;
  /* 対応ブラウザなら読みやすく */
}

/* SP微調整 */
@media (max-width: 600px) {
  #concept .l-heading3__sub {
    letter-spacing: 0.1em;
  }
}
/* ============ SP Quick Menu ============ */
.sp-quickmenu {
  background: var(--color-black);
  padding: 6.4rem 0 7.2rem;
}

/* PCでは非表示にしたい場合（必要なら） */
@media (min-width: 768px) {
  .sp-quickmenu {
    display: none;
  }
}
.sp-quickmenu__inner {
  width: min(92vw, 680px);
  margin: 0 auto;
}

.sp-quickmenu__title {
  margin: 0 0 4.2rem;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #b79f67;
  /* ゴールド */
}

.sp-quickmenu__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 2.2rem;
}

.sp-quickmenu__item--wide {
  grid-column: 1/-1;
}

.sp-quickmenu__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: center;
  height: 164px;
  min-height: 17.2rem;
  padding: 2.6rem 1.6rem 2.2rem;
  text-decoration: none;
  background: linear-gradient(180deg, #b79f67 0%, #a08a58 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.55), 0 2px 0 rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.sp-quickmenu__btn:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}

.sp-quickmenu__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.2rem;
  height: 6.2rem;
  margin-bottom: 2rem;
}

.sp-quickmenu__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sp-quickmenu__label {
  font-family: var(--font-sans);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

/* 端末が小さい時に詰める */
@media (max-width: 375px) {
  .sp-quickmenu__title {
    font-size: 2.8rem;
  }
  .sp-quickmenu__label {
    font-size: 2.2rem;
  }
  .sp-quickmenu__btn {
    min-height: 16.2rem;
  }
  .sp-quickmenu__icon {
    width: 5.6rem;
    height: 5.6rem;
    margin-bottom: 1.6rem;
  }
}
:root {
  --color-base: #A8935E;
  --color-white: #FFF;
  --color-black: #333;
  --color-pink: #FFC3BB;
  --color-blue: #091E5D;
  --color-bg: #252525;
  --color-bg-white: #FCFAFA;
  --color-gradient-brown: linear-gradient(90deg, #9C8754 0%, #AA9971 100%);
  --font-serif: "Libre Baskerville";
  --font-sans: "Noto Sans";
}

/* =========================================
  Footer
========================================= */
.footer {
  background: var(--color-black);
  padding: 48px 0 32px;
  text-align: center;
}

.footer__menu {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 480px) {
  .footer__menu {
    gap: 1rem;
    flex-direction: column;
  }
}

.footer__link {
  color: #a78f5a;
  /* ゴールド系 */
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__copyright {
  margin: 0;
  font-size: 12px;
  color: #a78f5a;
  letter-spacing: 0.05em;
}

/* components */
/*==================================================
 *  Heading2
 *==================================================*/
.c-heading2__lead {
  position: relative;
  color: var(--color-base);
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  width: fit-content;
  margin-block: 0;
  margin-inline: auto;
  text-align: center;
  /* 左ライン */
}
.c-heading2__lead:before, .c-heading2__lead:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10rem;
  height: 1px;
  background-color: var(--color-base);
  transform: translateY(-50%);
}
@media (max-width: 640px) {
  .c-heading2__lead:before, .c-heading2__lead:after {
    width: 4rem;
  }
}
.c-heading2__lead {
  /* 左 */
}
.c-heading2__lead:before {
  right: 100%;
  margin-right: 2rem;
}
.c-heading2__lead {
  /* 右 */
}
.c-heading2__lead:after {
  left: 100%;
  margin-left: 2rem;
}

.c-heading2__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-base);
  width: fit-content;
  margin-block: 0 0.8rem;
  margin-inline: auto;
  text-align: center;
}

.c-heading2__text {
  text-align: center;
  color: var(--color-base);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  width: fit-content;
  margin-inline: auto;
  margin-block: 3.2rem;
}

/*==================================================
 *  Heading3
 *==================================================*/
.c-heading3 {
  position: relative;
  color: var(--color-base);
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 700;
  margin-block: 3.4rem;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  /* 左ライン */
}
.c-heading3:before, .c-heading3:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4rem;
  height: 1px;
  background-color: var(--color-base);
  transform: translateY(-50%);
}
.c-heading3 {
  /* 左 */
}
.c-heading3:before {
  right: 100%;
  margin-right: 2rem;
}
.c-heading3 {
  /* 右 */
}
.c-heading3:after {
  left: 100%;
  margin-left: 2rem;
}

@media screen and (max-width: 786px) {
  #sittersTrack {
    padding: 2.5vw;
  }
}

/* 横スクロールの本体 */
.c-sitters {
  display: flex;
  gap: 3.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}
@media screen and (max-width: 786px) {
  .c-sitters {
    align-items: flex-end;
  }
}
.c-sitters::-webkit-scrollbar {
  /* Chrome/Safari */
  display: none;
}
.c-sitters.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.sitters-slider {
  display: grid;
  gap: 1.6rem;
  /* 矢印ナビ（下中央） */
}
.sitters-slider__nav {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
.sitters-slider {
  /* 矢印ボタンの見た目 */
}
.sitters-slider__btn {
  width: 4.4rem;
  height: 3.2rem;
  border: 0;
  background: transparent;
  color: #a78f5a;
  font-size: 3.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.sitters-slider__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.card {
  width: 30vw;
  display: flex;
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 2.4rem;
  gap: 3.2rem;
  border: 2px solid var(--color-base);
  background: var(--color-bg-white);
}
@media screen and (max-width: 786px) {
  .card {
    width: 95vw;
    flex-direction: column;
  }
}
@media screen and (max-width: 786px) {
  .card__left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
  .card__left img {
    width: 137px;
    height: 137px;
  }
}
.card__right {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
}
@media screen and (max-width: 786px) {
  .card__right {
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 786px) {
  .card__profile--wrap {
    width: 100%;
  }
}
.card__name, .card__skill-heading {
  color: var(--color-base);
  font-family: var(--font-serif);
  font-style: normal;
  line-height: normal;
}
.card__name {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
}
.card__skill-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.card__skill-list {
  color: var(--color-black);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
}
.card__img {
  width: 138px;
  height: 138px;
}

.card .button-wrapper {
  width: fit-content;
  margin-left: auto;
}

.card__button {
  display: flex;
  width: 13.1rem;
  padding: 0.4rem 0.8rem;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-base);
  color: var(--white, #FFF);
  font-family: "Libre Baskerville";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  cursor: pointer;
}
.card__button:before {
  content: ">";
}

.c-button {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
  isolation: isolate;
  isolation: isolate;
}

.c-button__text {
  position: relative;
  display: inline-block;
  color: var(--color-base);
  font-size: 2.4rem;
  font-weight: 700;
  isolation: isolate;
  padding: 2.4rem;
  background: var(--color-white);
  text-decoration: none;
  border: 1px solid var(--color-white);
  transition: transform 0.3s;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .c-button__text {
    font-size: 1.6rem;
    padding: 1rem;
  }
}

.c-button--brown .c-button__text {
  background-color: var(--color-base);
  color: var(--color-white);
}

.c-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-white);
  background: rgba(37, 37, 37, 0.4);
  transform: translate(8px, 8px);
  transition: transform 0.3s ease;
  z-index: -1;
  /* 背面固定 */
  pointer-events: none;
  /* クリック阻害防止 */
}

.c-button:hover {
  transform: translate(8px, 8px);
}

.c-button:hover::after {
  transform: translate(0, 0);
}

.c-contact__heading {
  font-family: "Libre Baskerville";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-block: 0 2.4rem;
}

.c-contact__sub {
  color: var(--color-base);
  text-align: center;
  font-family: "Libre Baskerville";
  font-size: 2rem;
  font-weight: 700;
  line-height: 42px;
  margin-block: 0 1.6rem;
}

/* =========================
  Sitter Modal
========================= */
.sitter-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.sitter-modal[aria-hidden=false] {
  display: block;
}

.sitter-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.sitter-modal__panel {
  position: absolute;
  inset: 4rem;
  margin: auto;
  max-width: 1200px;
  height: min(720px, 100vh - 8rem);
  background: #fff;
  border: 1px solid rgba(167, 143, 90, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  overflow: auto;
  outline: none;
}

.sitter-modal__inner {
  padding: 3.2rem 4rem 2.4rem;
}

.sitter-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-base, #a78f5a);
  font-size: 40px;
  line-height: 1;
}

.sitter-modal__top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3.2rem;
  align-items: start;
}

.sitter-modal__profile {
  text-align: center;
}

.sitter-modal__avatar {
  width: 190px;
  height: 190px;
  margin: 0 auto 1.6rem;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid rgba(167, 143, 90, 0.35);
}

.sitter-modal__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sitter-modal__name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--color-base, #a78f5a);
  font-weight: 500;
}

.sitter-modal__message {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  line-height: 24px;
  color: rgba(34, 34, 34, 0.85);
  margin-bottom: 3rem;
}

.sitter-modal__message p {
  margin: 0;
}

.sitter-modal__middle,
.sitter-modal__bottom {
  font-family: var(--font-sans);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 786px) {
  .sitter-modal__middle,
  .sitter-modal__bottom {
    gap: 1rem;
    margin-top: 1rem;
    flex-direction: column;
  }
}

.sitter-modal__col {
  flex: 1;
}

.sitter-modal__bottom > .sitter-modal__col:first-child {
  flex: initial;
}

.sitter-modal__label {
  margin: 0 0 1.2rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-base, #a78f5a);
  font-weight: 500;
}

.sitter-modal__list {
  margin: 0 0 2.4rem;
  padding-left: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(34, 34, 34, 0.85);
}

.sitter-modal__actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

.sitter-modal__btn {
  min-width: 220px;
  padding: 1.2rem 2.4rem;
  border: 1px solid rgba(167, 143, 90, 0.8);
  background: transparent;
  color: var(--color-base, #a78f5a);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  cursor: pointer;
}

/* SP */
@media (max-width: 900px) {
  .sitter-modal__panel {
    inset: 1.6rem;
    height: calc(100vh - 3.2rem);
  }
  .sitter-modal__inner {
    padding: 2.4rem;
  }
  .sitter-modal__top {
    grid-template-columns: 1fr;
  }
  .sitter-modal__middle {
    grid-template-columns: 1fr 1fr;
  }
  .sitter-modal__bottom {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .sitter-modal__middle {
    grid-template-columns: 1fr;
  }
}
#strengths {
  background: var(--color-gradient-brown);
}
#strengths .c-heading2__sub, #strengths .c-heading2__lead, #strengths .c-heading2__text {
  color: var(--color-white) !important;
}
#strengths .c-heading2__lead:before, #strengths .c-heading2__lead:after {
  background-color: var(--color-white) !important;
}

.c-strengths {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
@media screen and (max-width: 640px) {
  .c-strengths {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.c-strengths__item {
  width: 314px;
  height: 305px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
  color: #FFF;
  font-family: var(--font-sans);
  font-weight: 600;
  background-size: cover;
  background-position: center;
  /* 画像の指定 */
}
.c-strengths__item:nth-child(1) {
  background-image: url(../images/strengths01.png);
}
.c-strengths__item:nth-child(2) {
  background-image: url(../images/strengths02.png);
}
.c-strengths__item:nth-child(3) {
  background-image: url(../images/strengths03.png);
}
.c-strengths p {
  margin: 0;
}

.c-service {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 640px) {
  .c-service {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.c-service__item {
  background-color: var(--color-white);
  height: auto;
  width: 396px;
  padding: 4rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (max-width: 640px) {
  .c-service__item {
    width: 100%;
  }
}
.c-service__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2rem;
}
.c-service__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: var(--color-black);
}

.coupons {
  padding: 4rem;
  background: var(--color-gradient-brown);
}
@media screen and (max-width: 640px) {
  .coupons {
    padding: 2rem;
  }
}
.coupons__heading {
  color: var(--color-white);
  text-align: center;
  font-family: "Noto Sans";
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  font-weight: 700;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .coupons__heading {
    font-size: 2rem;
    line-height: 30px;
  }
}
.coupons__text {
  color: var(--color-white);
  text-align: center;
  font-family: "Noto Sans";
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
}
@media screen and (max-width: 640px) {
  .coupons__text {
    font-size: 2rem;
  }
}
.coupons__whatsapp {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-base);
  padding: 0.4rem 0.8rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 42px;
}
@media screen and (max-width: 640px) {
  .coupons__whatsapp {
    font-size: 2rem;
  }
}
.coupons__items {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 640px) {
  .coupons__items {
    flex-direction: column;
    gap: 2rem;
  }
}
.coupons__button {
  width: fit-content;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 640px) {
  .coupons__button {
    margin-block: 2rem;
  }
}

.fee__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .fee__wrap {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
.fee__items {
  position: relative;
  width: 350px;
  background: var(--color-white);
}
@media screen and (max-width: 640px) {
  .fee__items {
    width: 100%;
  }
}
.fee__items > .fee__border {
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.fee__items > .fee__border .fee__note {
  border-bottom: 1px solid var(--color-base);
  padding-bottom: 1.6rem;
}
.fee__items > .fee__item:last-child {
  padding: 1.6rem 2.4rem 2.4rem 2.4rem;
}
.fee__plus {
  display: flex;
  align-items: center;
}
.fee__heading {
  padding: 0.8rem 2.4rem;
  margin: 0;
  background: var(--color-base);
  color: var(--color-white);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.fee p {
  margin: 0;
}
.fee__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-black);
}
.fee__text {
  font-size: 2rem;
  font-weight: 400;
}
.fee__price {
  font-size: 2rem;
  font-weight: 700;
}
.fee__note {
  font-size: 1.4rem;
  font-weight: 400;
}

.option {
  margin-top: 3.2rem;
  padding: 2rem 2.4rem;
  background: var(--color-white);
}
.option > h4 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-block: 0 3.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid;
}
.option__items {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}
@media screen and (max-width: 640px) {
  .option__items {
    flex-direction: column;
  }
}
.option__item {
  flex: 1;
}
.option__heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.6rem !important;
}
.option__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-black);
}
.option__list {
  color: var(--color-black);
  padding: 0;
  list-style: none;
  margin-block: 0.8rem 0;
}

.vip__item {
  display: flex;
  gap: 3.2rem;
}
@media screen and (max-width: 640px) {
  .vip__item {
    gap: 2.5rem;
    flex-direction: column;
  }
}
.vip__item--num {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
}
.vip__item--heading {
  margin: 1.6rem 0;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
}
.vip__item--text {
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .vip__item.--reverse {
    flex-direction: row-reverse;
  }
}
.vip__item:not(:last-child) {
  padding-bottom: 3.2rem;
  border-bottom: 1px solid var(--color-base);
  margin-bottom: 3.2rem;
}
.vip__right {
  flex: 1;
}

.meals__items {
  display: flex;
  justify-content: space-evenly;
  gap: 3.2rem;
}
@media screen and (max-width: 640px) {
  .meals__items {
    flex-direction: column;
    align-items: center;
  }
}
.meals__item {
  width: 275px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  border: 1px solid var(--color-base);
}
@media screen and (max-width: 640px) {
  .meals__item {
    width: 85vw;
  }
}
.meals__heading {
  margin: 0;
  font-size: 2rem;
  color: var(--color-white);
}
.meals__text {
  margin: 0;
  font-size: 1.6rem;
  color: var(--color-white);
}

/* =========================
  Price Example
========================= */
#example .c-heading2 .c-heading2__sub,
#example .c-heading2 .c-heading2__lead {
  color: var(--color-white) !important;
}
#example .c-heading2 .c-heading2__lead:before,
#example .c-heading2 .c-heading2__lead:after {
  background-color: var(--color-white) !important;
}

.c-example {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.8rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 900px) {
  .c-example {
    overflow-x: scroll;
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
}

/* card */
.c-example__item {
  background: var(--color-white, #fff);
  padding: 4rem 4.8rem;
  box-sizing: border-box;
}

/* ---- top profile area ---- */
.c-example__profile {
  display: grid;
  grid-template-columns: 195px 1fr;
  column-gap: 4rem;
  align-items: start;
}

.c-example__profile-image {
  display: block;
  width: 195px;
  height: 195px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(167, 143, 90, 0.35);
  box-sizing: border-box;
}

.c-example__profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-example__profile-details {
  padding-top: 1.2rem;
}

.c-example__profile-detail {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-black, #222);
}

.c-example__summary {
  margin-top: 3.2rem;
}

.c-example__summary-list {
  margin: 0;
}

.c-example__summary-row {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 2.4rem;
  row-gap: 1.2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(167, 143, 90, 0.55);
}

.c-example__summary-row:first-child {
  border-top: none;
  padding-top: 0;
}

.c-example__summary-term,
.c-example__summary-price {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--color-black, #222);
}

.c-example__summary-term {
  font-weight: 400;
}

.c-example__summary-price {
  text-align: right;
  white-space: nowrap;
}

/* total */
.c-example__summary-row--total {
  padding-bottom: 0;
}

.c-example__summary-row--total .c-example__summary-term,
.c-example__summary-row--total .c-example__summary-price {
  font-weight: 600;
}

/* note */
.c-example__summary-note {
  grid-column: 1/-1;
  margin: 1.2rem 0 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(34, 34, 34, 0.75);
}

/* =========================
  Responsive
========================= */
@media (max-width: 900px) {
  .c-example__item {
    padding: 3.2rem;
  }
  .c-example__profile {
    grid-template-columns: 140px 1fr;
    column-gap: 2.4rem;
  }
  .c-example__profile-image {
    width: 140px;
    height: 140px;
  }
  .c-example__profile-detail,
  .c-example__summary-term,
  .c-example__summary-price {
    font-size: 1.35rem;
  }
  .c-example__scroll {
    margin-top: 2rem;
    margin-left: auto;
    width: fit-content;
  }
  .c-example__scroll img {
    width: 30vw;
  }
}
@media (max-width: 520px) {
  .c-example__profile {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
  }
  .c-example__profile-image {
    margin: 0 auto;
  }
}
/* =========================
  Flow
========================= */
.c-flow {
  margin-top: 5.6rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  /* カード間＋矢印分 */
}

/* card */
.c-flow__item {
  position: relative;
  background: var(--color-white, #fff);
  border: 1px solid rgba(167, 143, 90, 0.55);
  padding: 3.2rem 4.8rem;
  display: grid;
  grid-template-columns: 1fr 373px;
  column-gap: 6.4rem;
  align-items: start;
  box-sizing: border-box;
}

/* 下向き矢印（カードとカードの間） */
.c-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3.6rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 2rem solid transparent;
  border-right: 2rem solid transparent;
  border-top: 1.4rem solid rgba(167, 143, 90, 0.9);
}

/* left */
.c-flow__left {
  min-width: 0;
}

.c-flow__heading {
  margin: 0 0 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(167, 143, 90, 0.55);
}

.c-flow__num {
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: rgba(167, 143, 90, 0.9);
  font-family: var(--font-serif);
}

.c-flow__heading h3 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: rgba(167, 143, 90, 0.95);
  font-family: var(--font-sans);
}

.c-flow__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.c-flow__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  color: var(--color-black);
}

/* right image */
.c-flow__right {
  display: flex;
  justify-content: flex-end;
}

.c-flow__image {
  display: block;
  width: 373px;
  max-width: 100%;
  aspect-ratio: 373/276;
  overflow: hidden;
  background: #eee;
}

.c-flow__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
  Responsive
========================= */
@media (max-width: 1024px) {
  .c-flow__item {
    grid-template-columns: 1fr 320px;
    column-gap: 4rem;
  }
  .c-flow__image {
    width: 320px;
    aspect-ratio: 320/236;
  }
}
@media (max-width: 768px) {
  .c-flow {
    gap: 4rem;
  }
  .c-flow__item {
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
    padding: 2.4rem;
  }
  .c-flow__right {
    justify-content: center;
  }
  .c-flow__image {
    width: min(100%, 520px);
    aspect-ratio: 373/276;
  }
  .c-flow__item:not(:last-child)::after {
    bottom: -3rem;
    border-left-width: 1.6rem;
    border-right-width: 1.6rem;
    border-top-width: 1.2rem;
  }
}
:root {
  --color-base: #A8935E;
  --color-white: #FFF;
  --color-black: #333;
  --color-pink: #FFC3BB;
  --color-blue: #091E5D;
  --color-bg: #252525;
  --color-bg-white: #FCFAFA;
  --color-gradient-brown: linear-gradient(90deg, #9C8754 0%, #AA9971 100%);
  --font-serif: "Libre Baskerville";
  --font-sans: "Noto Sans";
}

/* =========================================================
  FAQ Accordion (details/summary)
========================================================= */
.c-faq {
  margin-top: 3.2rem;
}

.c-faq__list {
  display: grid;
  gap: 24px;
}

/* 外枠：カンプの黒い太枠 */
.c-faq__item {
  background: var(--color-white);
}

/* summaryのデフォルトマーカー消し */
.c-faq__summary {
  list-style: none;
  cursor: pointer;
}

.c-faq__summary::-webkit-details-marker {
  display: none;
}

/* 質問行 */
.c-faq__summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  position: relative;
}

.c-faq__q {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-base);
  flex: 0 0 auto;
}

.c-faq__question {
  flex: 1 1 auto;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 26px;
  color: var(--color-black);
}

.c-faq__chev {
  width: 12px;
  height: 12px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.c-faq__item[open] .c-faq__chev {
  transform: rotate(-135deg);
}

/* 回答エリア */
.c-faq__answer {
  background: #ededed;
  padding: 18px 22px;
  margin: 0 22px 22px;
}

.c-faq__answer p {
  margin: 0;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

/* ---------------------------------------------------------
  開閉アニメーション（CSSのみ）
  - bodyを grid で 0fr/1fr にして滑らかに
--------------------------------------------------------- */
.c-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.c-faq__body > * {
  overflow: hidden;
}

.c-faq__item[open] .c-faq__body {
  grid-template-rows: 1fr;
}

/* ---------------------------------------------------------
  フォーカス可視化（キーボード操作時に見やすく）
--------------------------------------------------------- */
.c-faq__summary:focus-visible {
  outline: 3px solid rgba(139, 122, 76, 0.45);
  outline-offset: 4px;
}

/* ---------------------------------------------------------
  Responsive
--------------------------------------------------------- */
@media (max-width: 767px) {
  .c-faq__item {
    border-width: 8px;
  }
  .c-faq__summary {
    padding: 16px 16px;
    gap: 12px;
  }
  .c-faq__answer {
    margin: 0 16px 16px;
    padding: 16px 16px;
  }
}
/* =========================================
  About Us
========================================= */
#about {
  background: var(--color-white);
}

.c-about {
  padding: 64px 0;
}

.l-container {
  width: min(1040px, 100% - 48px);
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .l-container {
    width: 95vw;
  }
}

/* 見出し（中央 + 左右ライン） */
.c-section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.c-section-heading__eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: #a78f5a;
}

.c-section-heading__title {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
  color: #a78f5a;
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 18px;
}

/* 左右ライン */
.c-section-heading__title::before,
.c-section-heading__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: #a78f5a;
  opacity: 0.8;
}

/* 本体：定義リストを2カラムに */
.c-about__list {
  margin-block: 3.2rem 0;
  padding: 0;
}

.c-about__row {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(167, 143, 90, 0.7);
}

.c-about__term {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: #a78f5a;
}

.c-about__desc {
  margin: 0;
  color: #a78f5a;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 767px) {
  .c-about {
    padding: 48px 0;
  }
  .c-section-heading__title {
    font-size: 28px;
  }
  .c-section-heading__title::before,
  .c-section-heading__title::after {
    width: 64px;
  }
  .c-about__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }
}