/**
 * 周辺情報（地域ガイド）— 太平プラン系 黄緑アクセント・カード型
 */
.tp-area-guide {
  --ag-accent: #7cb342;
  --ag-accent-dark: #558b2f;
  --ag-accent-soft: #e8f5d4;
  --ag-card-border: #d7e6c8;
  --ag-text-muted: #4a5d3a;
}

.ag-page .ag-hero {
  background: linear-gradient(135deg, var(--ag-accent-soft) 0%, #f8faf6 55%, #fff 100%);
  border: 1px solid var(--ag-card-border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(85, 139, 47, 0.08);
}

.ag-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ag-accent-dark);
  margin: 0 0 0.35rem;
}

.ag-hero__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.5rem;
}

.ag-hero__lead {
  margin: 0;
  color: var(--ag-text-muted);
  line-height: 1.65;
  max-width: 52rem;
}

.ag-hero--compact {
  padding: 1.25rem 1.25rem 1rem;
}

.ag-section {
  margin-bottom: 2rem;
}

.ag-h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--ag-accent);
  display: inline-block;
}

.ag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ag-card-border);
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.ag-pill:hover {
  background: var(--ag-accent-soft);
  border-color: var(--ag-accent);
}

.ag-region-root {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.ag-region-root a {
  font-weight: 600;
  color: var(--ag-accent-dark);
  text-decoration: none;
}

.ag-region-root a:hover {
  text-decoration: underline;
}

.ag-note {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.ag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

/* 周辺情報一覧: PC 4列 / タブレット 3列 / スマホ 1列 */
.ag-grid--spots {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

@media (max-width: 1100px) {
  .ag-grid--spots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ag-grid--spots {
    grid-template-columns: minmax(0, 1fr);
  }
}

.ag-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* 一覧: エリアタブ（地域ポータル風 pill・横スクロール） */
.ag-region-tabs-wrap {
  margin: 0 0 1.1rem;
  padding: 0.2rem 0;
  overflow: hidden;
}

.ag-region-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem 0.85rem;
  margin: 0;
  padding: 0.35rem 0.25rem 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.ag-region-tabs::-webkit-scrollbar {
  height: 6px;
}

.ag-region-tabs::-webkit-scrollbar-thumb {
  background: rgba(124, 179, 66, 0.35);
  border-radius: 999px;
}

.ag-region-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 179, 66, 0.35);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  color: #3f4f2a;
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.ag-region-tab:hover {
  background: var(--ag-accent-soft);
  border-color: var(--ag-accent);
  color: #1e293b;
  box-shadow: 0 6px 18px rgba(85, 139, 47, 0.14);
  transform: translateY(-2px);
}

.ag-region-tab.is-active {
  color: #1b3308;
  border-color: var(--ag-accent);
  background: linear-gradient(180deg, #f9fff0 0%, #fff 55%);
  box-shadow: 0 8px 22px rgba(85, 139, 47, 0.22);
  transform: translateY(-1px);
}

.ag-region-tab--busy {
  border-color: rgba(230, 126, 34, 0.45);
  background: linear-gradient(180deg, #fffaf2 0%, #fff 60%);
}

.ag-region-tab--busy:hover {
  border-color: #e67e22;
}

.ag-region-tab__label {
  white-space: nowrap;
}

.ag-region-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  font-size: 0.72rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(124, 179, 66, 0.14);
  border: 1px solid rgba(124, 179, 66, 0.25);
  color: var(--ag-accent-dark);
}

.ag-region-tab.is-active .ag-region-tab__count {
  background: var(--ag-accent);
  color: #fff;
  border-color: var(--ag-accent-dark);
}

.ag-section--spot-list .ag-h2 {
  margin-bottom: 0.65rem;
}

.ag-card {
  border-radius: 14px;
  border: 1px solid var(--ag-card-border);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(30, 41, 59, 0.06);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

.ag-card:hover {
  box-shadow: 0 12px 32px rgba(85, 139, 47, 0.16);
  transform: translateY(-4px);
  border-color: var(--ag-accent);
}

.ag-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}

.ag-card__thumb-wrap {
  position: relative;
}

.ag-card__thumb {
  aspect-ratio: 16 / 10;
  height: auto;
  max-height: none;
  overflow: hidden;
  background: linear-gradient(160deg, #eef6e8, #f1f5f9);
}

.ag-card:hover .ag-card__thumb img {
  transform: scale(1.05);
}

.ag-card__thumb img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.ag-card__thumb--empty {
  aspect-ratio: 16 / 10;
  min-height: 0;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ag-card__thumb-placeholder {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.ag-card__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
  min-width: 0;
}

.ag-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  background: var(--ag-accent-soft);
  color: var(--ag-accent-dark);
  margin-bottom: 0.35rem;
}

.ag-badge--lg {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
}

.ag-badge--cat-transit {
  background: #e8f5d4;
  color: #33691e;
  border: 1px solid rgba(124, 179, 66, 0.45);
}

.ag-badge--cat-retail {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid rgba(230, 126, 34, 0.35);
}

.ag-badge--cat-school {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid rgba(33, 150, 243, 0.35);
}

.ag-badge--cat-park {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.35);
}

.ag-badge--cat-mall {
  background: #f3e5f5;
  color: #6a1b9a;
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.ag-badge--cat-default {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.ag-card__title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0.25rem 0 0.2rem;
  color: #0f172a;
}

.ag-card__loc {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
}

.ag-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.15rem;
}

.ag-card__meta-row .ag-badge {
  margin-bottom: 0;
}

.ag-card__area-pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ag-accent-dark);
  background: #f1f8e9;
  border: 1px solid rgba(124, 179, 66, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ag-card__excerpt {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #475569;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.ag-card__more {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ag-accent-dark);
}

.ag-subnav {
  background: #f8faf6;
  border: 1px solid var(--ag-card-border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
}

.ag-subnav__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ag-accent-dark);
  margin: 0 0 0.5rem;
}

.ag-subnav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.ag-subnav__list a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.ag-subnav__list a:hover {
  text-decoration: underline;
}

.ag-detail-hero {
  max-width: 100%;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 1.25rem;
  border: 1px solid var(--ag-card-border);
  box-shadow: 0 12px 32px rgba(30, 41, 59, 0.1);
}

.ag-detail-hero--banner {
  border-radius: 16px;
  margin-bottom: 1rem;
}

.ag-detail-hero--banner .ag-detail-hero__media {
  position: relative;
  width: 100%;
  max-height: min(52vh, 420px);
  overflow: hidden;
  border-radius: inherit;
  background: #e2e8f0;
}

.ag-detail-hero--banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: min(52vh, 420px);
  min-height: 200px;
  object-fit: cover;
  object-position: center;
}

.ag-detail__intro {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--ag-card-border);
  box-shadow: 0 4px 16px rgba(30, 41, 59, 0.05);
}

.ag-detail__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.6rem;
  margin-bottom: 0.5rem;
}

.ag-detail__meta-row .ag-badge {
  margin-bottom: 0;
}

.ag-detail__area-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ag-accent-dark);
  background: var(--ag-accent-soft);
  border: 1px solid rgba(124, 179, 66, 0.4);
}

.ag-detail__title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 900;
  margin: 0;
  color: #0f172a;
}

.ag-detail__spec {
  margin: 0;
}

.ag-spec dt {
  font-weight: 700;
  color: var(--ag-accent-dark);
  font-size: 0.8rem;
  margin-top: 0.65rem;
}

.ag-spec dd {
  margin: 0.15rem 0 0;
  color: #334155;
}

.ag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.ag-btn--map {
  background: #fff;
  border-color: #cbd5e1;
  color: #1e293b;
}

.ag-btn--map:hover {
  background: #f8fafc;
}

.ag-btn--primary {
  background: var(--ag-accent);
  color: #fff;
  border-color: var(--ag-accent-dark);
}

.ag-btn--primary:hover {
  background: var(--ag-accent-dark);
}

.ag-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.ag-gallery__item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ag-card-border);
}

.ag-gallery__item img {
  width: 100%;
  max-width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* 詳細: 地図埋め込み（Google / OSM） */
.ag-map--embed .ag-map__frame {
  box-shadow: 0 8px 28px rgba(30, 41, 59, 0.08);
}

.ag-map__frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--ag-card-border);
  background: #e2e8f0;
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.ag-map__frame--tall {
  aspect-ratio: auto;
  height: 420px;
  min-height: 320px;
}

.ag-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ag-map__external {
  margin: 0.85rem 0 0;
}

.ag-prose {
  line-height: 1.85;
  color: #334155;
}

.ag-voice__text {
  margin: 0;
  line-height: 1.75;
  color: #334155;
}

.ag-rent__lead {
  margin: 0 0 0.75rem;
  color: #475569;
}

.ag-attribution {
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.ag-breadcrumb a {
  color: #2563eb;
}

/* ----- 一覧: Google 写真クレジット（サムネ下） ----- */
.ag-card__photo-credit {
  margin: 0;
  padding: 0.35rem 0.65rem 0.45rem;
  font-size: 0.65rem;
  line-height: 1.35;
  color: #64748b;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), #f8fafc);
  border-top: 1px solid #e2e8f0;
}

/* ----- 詳細: Google 写真クレジット・横スクロールギャラリー ----- */
.ag-photo-credit {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

.ag-gallery--slider .ag-slider {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.25rem 0 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.ag-gallery--slider .ag-slider__item {
  flex: 0 0 min(88vw, 520px);
  margin: 0;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ag-card-border);
  box-shadow: 0 4px 14px rgba(30, 41, 59, 0.08);
}

.ag-gallery--slider .ag-slider__item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ag-detail--article .ag-gallery--slider .ag-slider__item img {
  height: 200px;
}

@media (min-width: 768px) {
  .ag-gallery--slider .ag-slider__item img {
    height: 280px;
  }

  .ag-detail--article .ag-gallery--slider .ag-slider__item img {
    height: 220px;
  }
}

.ag-contact-cta__actions {
  margin: 0;
}

.ag-ls-related-properties {
  margin: 0 0 1rem;
}

.ag-ls-related-properties__lead {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
}

.ag-contact-cta .ag-ls-related-properties .pd-related {
  margin: 0 0 0.75rem;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.ag-card__facts {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0.35rem 0 0.5rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #64748b;
}

.ag-card__station,
.ag-card__rating {
  display: block;
}

.ag-detail__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.5rem 1rem;
}

.ag-review-badge {
  margin: 0;
  font-size: 0.9rem;
  color: #b45309;
}

.ag-review-badge__stars {
  color: #f59e0b;
  letter-spacing: 0.05em;
}

.ag-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 1.25rem;
}

.ag-review-item {
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
}

.ag-review-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.ag-review-item__stars {
  color: #f59e0b;
}

.ag-review-item__date {
  color: #94a3b8;
  font-size: 0.8rem;
}

.ag-review-item__body {
  margin: 0;
  line-height: 1.7;
  color: #334155;
  white-space: pre-wrap;
}

.ag-review-item__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.ag-review-item__photo {
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.ag-reviews__notice {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0 0 0.75rem;
}

.ag-reviews__form-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.ag-reviews__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0.5rem 0 0.25rem;
}

.ag-reviews__input,
.ag-reviews__textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.45rem 0.6rem;
}

.ag-reviews__stars-input {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ag-reviews__form-msg--ok {
  color: #15803d;
}

.ag-reviews__form-msg--err {
  color: #b91c1c;
}

.ag-reviews__photo-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.ag-reviews__photo-thumb {
  position: relative;
  display: inline-block;
}

.ag-reviews__photo-thumb img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
}

.ag-reviews__photo-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  border: none;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  padding: 2px 5px;
}

.ag-btn--outline {
  background: #fff;
  color: var(--ag-accent-dark);
  border-color: var(--ag-accent);
}

.ag-hero--portal {
  position: relative;
  overflow: hidden;
}

.ag-hero--portal::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(124, 179, 66, 0.12), transparent 55%);
}

.ag-h2__sub {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  border-bottom: none;
  vertical-align: middle;
}

.ag-pills--dense {
  gap: 0.4rem 0.55rem;
}

.ag-pills--dense .ag-pill {
  font-size: 0.82rem;
  padding: 0.35rem 0.75rem;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.04);
}

.ag-section--pref-aside {
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
}

.ag-note--pref {
  margin: 0;
  padding: 0.65rem 0.85rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px dashed #cbd5e1;
}

/* トップ: 暮らしトピック hub */
.ag-hub__intro {
  margin: 0 0 1rem;
  color: var(--ag-text-muted);
  line-height: 1.65;
  max-width: 48rem;
}

.ag-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

@media (max-width: 900px) {
  .ag-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .ag-hub__grid {
    grid-template-columns: 1fr;
  }
}

.ag-hub__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--ag-card-border);
  background: #fff;
  text-decoration: none;
  color: inherit;
  min-height: 5.5rem;
  box-shadow: 0 4px 14px rgba(30, 41, 59, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.ag-hub__card:hover {
  transform: translateY(-3px);
  border-color: var(--ag-accent);
  box-shadow: 0 10px 26px rgba(85, 139, 47, 0.14);
}

.ag-hub__card-title {
  font-size: 0.95rem;
  font-weight: 900;
  color: #0f172a;
}

.ag-hub__card-lead {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #64748b;
}

.ag-hub__card--areas .ag-hub__card-title {
  color: var(--ag-accent-dark);
}

/* 詳細: 生活感ヒント */
.ag-life-hints__lead {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  line-height: 1.65;
  color: #475569;
}

.ag-life-hints__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 800px) {
  .ag-life-hints__grid {
    grid-template-columns: 1fr;
  }
}

.ag-life-hints__item {
  padding: 0.65rem 0.5rem 0;
  border-top: 3px solid var(--ag-accent-soft);
}

.ag-life-hints__item-title {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ag-accent-dark);
}

.ag-life-hints__item-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: #475569;
}

/* 賃貸 CTA */
.ag-rent--cta .ag-rent__actions {
  margin: 0;
}

.ag-btn--rent {
  padding: 0.7rem 1.35rem;
  font-size: 0.95rem;
  border-radius: 999px;
}

.ag-region-tabs-wrap {
  filter: drop-shadow(0 2px 10px rgba(30, 41, 59, 0.06));
}
