/* ============================================================
   ページ導線テザー（Services と Profile の間）
   リゾートマンション特化型サービスへの誘導
   ============================================================ */
.page-teaser {
  background: #f8f8f8;
  padding: clamp(72px, 10vh, 120px) clamp(20px, 7.8vw, 100px);
}

.page-teaser__inner {
  max-width: 1070px;
  margin-inline: auto;
  padding: clamp(40px, 5vh, 64px) clamp(32px, 4.8vw, 72px);
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.page-teaser__text {
  max-width: 560px;
}

.page-teaser__eyebrow {
  margin: 0 0 12px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #81b29a;
  letter-spacing: 0.3em;
}

.page-teaser__title {
  margin: 0 0 12px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.19vw, 24px);
  color: #1a1a1a;
  line-height: 1.7;
}

.page-teaser__desc {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #555;
  line-height: 1.9;
}

.page-teaser__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 16px 32px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 80px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-teaser__link:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .page-teaser__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-teaser__link {
    width: 100%;
  }
}
