@charset "UTF-8";
/* =========================================
   PuPu COLLECTION - サービス解説ページ v3.0
   services/と同トーン：ライト背景統一
   ========================================= */


/* =========================================
   ヒービジュアル
   （sd-hero クラス継承・ダーク写真ヒーローはそのまま）
   ========================================= */
.sa-hero .sd-hero__label {
  color: rgba(26, 22, 20, 0.6);
  text-shadow: none;
}


/* =========================================
   リード
   ========================================= */
.sa-lead {
  padding: 64px 0;
  background: var(--c-bg-light);
  border-bottom: 1px solid var(--c-border-light);
}

.sa-lead__text {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--c-text-muted-on-light);
  line-height: 2.2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}


/* =========================================
   各セクション
   ========================================= */
.sa-section {
  padding: var(--sp-section) 0;
  background: var(--c-bg-light);
}

.sa-section--alt {
  background: var(--c-bg-card-light);
}

.sa-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sa-section__inner--rev {
  direction: rtl;
}

.sa-section__inner--rev > * {
  direction: ltr;
}

.sa-section__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* ラベル・タイトル（sd-section-label / sd-section-title）をライト背景用に上書き */
.sa-page .sa-section .sd-section-label {
  color: var(--c-accent);
  display: block;
  margin-bottom: 8px;
}

.sa-page .sa-section .sd-section-title {
  color: var(--c-text-on-light);
}

.sa-section__text {
  font-size: 0.9rem;
  color: var(--c-text-muted-on-light);
  line-height: 2;
  margin: 20px 0 24px;
}

/* ポイントリスト */
.sa-page .sa-section .sd-points__item {
  color: var(--c-text-on-light);
}

.sa-page .sa-section .sd-points__item i {
  color: var(--c-accent);
}


/* =========================================
   よくある質問
   ========================================= */
.sa-faq {
  padding: var(--sp-section) 0;
  background: var(--c-bg-light);
  border-top: 1px solid var(--c-border-light);
}

.sa-faq .sd-section-label {
  color: var(--c-accent);
}

.sa-faq .sd-section-title {
  color: var(--c-text-on-light);
}

.sa-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sa-faq__item {
  background: var(--c-bg-card-light);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.sa-faq__item:hover {
  border-color: rgba(0, 112, 74, 0.3);
}

.sa-faq__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-text-on-light);
  line-height: 1.6;
  border-bottom: 1px solid var(--c-border-light);
}

.sa-faq__a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--c-text-muted-on-light);
  line-height: 1.9;
}

.sa-faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--c-accent);
  color: #0a0a0a;
  margin-top: 1px;
}

.sa-faq__icon--a {
  background: rgba(26, 22, 20, 0.05);
  border: 1px solid var(--c-border-light);
  color: var(--c-text-muted-on-light);
}


/* =========================================
   店舗CTA
   ========================================= */
.sa-cta {
  padding: var(--sp-section) 0;
  background: var(--c-bg-card-light);
  text-align: center;
  border-top: 1px solid var(--c-border-light);
}

.sa-cta__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}

.sa-cta__title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 400;
  font-family: var(--font-serif);
  color: var(--c-text-on-light);
  margin-bottom: 36px;
}

.sa-cta__stores {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.sa-cta__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 32px 36px;
  background: #ffffff;
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md);
  min-width: 240px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}

.sa-cta__card:hover {
  transform: translateY(-3px);
}

.sa-cta__card--shiba {
  border-top: 2px solid var(--c-shiba);
}

.sa-cta__card--shiba:hover {
  border-color: var(--c-shiba);
}

.sa-cta__card--jiyugaoka {
  border-top: 2px solid var(--c-jiyugaoka);
}

.sa-cta__card--jiyugaoka:hover {
  border-color: var(--c-jiyugaoka);
}

.sa-cta__store-en {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted-on-light);
}

.sa-cta__store-name {
  font-size: 1.3rem;
  font-weight: 400;
  font-family: var(--font-serif);
  color: var(--c-text-on-light);
}

.sa-cta__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.sa-cta__card--shiba     .sa-cta__link { color: var(--c-shiba-dark); }
.sa-cta__card--jiyugaoka .sa-cta__link { color: var(--c-jiyugaoka); }

.sa-cta__back {
  margin-top: 8px;
}

/* 「サービス一覧に戻る」ボタン：ライト背景に合わせてアウトライン調整 */
.sa-cta__back .linkBtn {
  background: transparent;
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.sa-cta__back .linkBtn:hover {
  background: var(--c-accent);
  color: #0a0a0a;
  opacity: 1;
}


/* =========================================
   レスポンシブ
   =========================================
   PC      : 1025px〜
   Tablet  : 600px〜1024px
   Mobile  : 〜599px
   ========================================= */

/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .sa-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sa-section__inner--rev {
    direction: ltr;
  }

  .sa-section__img img {
    height: 280px;
  }

  .sa-cta__stores {
    gap: 16px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 599px) {
  .sa-section__img img {
    height: 220px;
  }

  .sa-faq__q,
  .sa-faq__a {
    padding: 16px;
  }

  .sa-cta__card {
    width: 100%;
    min-width: unset;
  }
}
