@charset "utf-8";

/* ==========================================================
   brand-article.css
   ブランドアーティクルLPスタイル
   ========================================================== */

/* ---------- Hero ---------- */
.ba-hero {
  position: relative;
  overflow: hidden;
  background-color: #1a2f24;
}

.ba-hero__bg {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  opacity: 0.58;
}

.ba-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 2.5rem; /* top: ヘッダ分の余白を確保 */
}

.ba-hero__eyebrow {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.12em;
  background: rgba(62,91,74,0.72);
  padding: 0.25rem 1rem;
  border-radius: 100vh;
  margin-bottom: 0.75rem;
}

.ba-hero__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  margin-bottom: 0.875rem;
}

.ba-hero__sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ---------- Hero button (property-detail外なのでスコープ解除) ---------- */
.ba-hero .btn {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.875rem 3.5rem;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  border: none;
}

.ba-hero a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  border-bottom: 0.3125rem solid #b84c00;
}

.ba-hero a.btn--orange:hover {
  margin-top: 3px;
  color: #fff;
  background: #f56500;
  border-bottom: 2px solid #b84c00;
}

.ba-hero a.btn--shadow {
  box-shadow: 0 3px 0.3125rem rgba(0, 0, 0, .35);
}

/* ---------- Stats bar ---------- */
.ba-stats {
  display: flex;
  background: #3e5b4a;
}

.ba-stats__item {
  flex: 1;
  text-align: center;
  padding: 1.125rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.ba-stats__item:last-child {
  border-right: none;
}

.ba-stats__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.ba-stats__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.25rem;
}

/* ---------- Section headings ---------- */
.ba-h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a2f24;
  padding: 0.5rem 0 0.5rem 1rem;
  margin: 2.75rem 0 1.25rem;
  border-left: 4px solid #3e5b4a;
  line-height: 1.4;
}

.ba-h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2f24;
  margin: 1.75rem 0 0.75rem;
  padding-bottom: 0.375rem;
  border-bottom: 2px solid #d8e8dc;
}

/* ---------- Section containers ---------- */
.ba-section--light {
  background: #f5fbf7;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.25rem 0;
}

/* ---------- Feature (alternating layout) ---------- */
.ba-feature {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.ba-feature--reverse {
  flex-direction: row-reverse;
}

.ba-feature__img {
  flex: 0 0 46%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
}

.ba-feature__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ba-feature__body {
  flex: 1;
  padding-top: 0.25rem;
}

.ba-feature__badge {
  display: inline-block;
  background: #3e5b4a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.875rem;
  border-radius: 100vh;
  margin-bottom: 0.625rem;
  letter-spacing: 0.08em;
}

.ba-feature__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2f24;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.ba-feature__text {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.8;
}

.ba-feature__list {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}

.ba-feature__list li {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 0.3rem;
  list-style: disc;
}

/* ---------- Photo strip (3-column) ---------- */
.ba-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.ba-photo-strip__item {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ba-photo-strip__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ba-photo-strip__caption {
  font-size: 0.8rem;
  color: #555;
  text-align: center;
  padding: 0.375rem 0.5rem;
  background: #f5fbf7;
}

/* ---------- Life rhythm grid (3-column) ---------- */
.ba-life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.25rem 0;
}

.ba-life-card__img {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
}

.ba-life-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ba-life-card__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a2f24;
  text-align: center;
}

.ba-life-card__sub {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 0.125rem;
}

/* ---------- Performance cards ---------- */
.ba-perf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0.75rem 0;
}

.ba-perf-card {
  background: #fff;
  border: 1px solid #d8e8dc;
  border-radius: 0.75rem;
  padding: 1.125rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.ba-perf-card__icon {
  flex: 0 0 auto;
  width: 2.625rem;
  height: 2.625rem;
  background: #f0f6f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3e5b4a;
  font-size: 1.125rem;
}

.ba-perf-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a2f24;
  margin-bottom: 0.3rem;
}

.ba-perf-card__text {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.65;
}

/* ---------- Review section ---------- */
.ba-review-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.ba-review-section-title::before {
  content: '';
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  flex: 0 0 auto;
}

.ba-review-section-title--positive { color: #1a7a4e; }
.ba-review-section-title--positive::before { background: #2ea870; }
.ba-review-section-title--negative { color: #a06010; }
.ba-review-section-title--negative::before { background: #f0a030; }

.ba-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 1rem;
}

.ba-review-card {
  background: #fff;
  border-radius: 0.625rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.ba-review-card--positive {
  border-left: 4px solid #2ea870;
}

.ba-review-card--negative {
  border-left: 4px solid #f0a030;
}

.ba-review-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2f24;
  margin-bottom: 0.375rem;
}

.ba-review-card__body {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.7;
}

.ba-review-card__source {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.375rem;
}

.ba-review-card__note {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e4ede7;
}

.ba-review-card__note--positive { color: #1a7a4e; }
.ba-review-card__note--negative { color: #a06010; }

/* ---------- Tables ---------- */
.ba-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
}

.ba-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

.ba-table--sm {
  min-width: 0;
}

.ba-table--wide {
  min-width: 620px;
}

.ba-table th,
.ba-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #d8e8dc;
  font-size: 0.9375rem;
  line-height: 1.6;
  vertical-align: top;
}

.ba-table thead th {
  background: #3e5b4a;
  color: #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.ba-table tbody th {
  background: #f0f6f2;
  font-weight: 700;
  color: #1a2f24;
  white-space: nowrap;
  width: 25%;
}

.ba-table tbody tr:nth-child(even) td {
  background: #fafcfa;
}

.ba-table--compare .ba-table__hl > td,
.ba-table--compare .ba-table__hl > td {
  background: #eef7f2 !important;
  font-weight: 600;
}

/* ---------- CTA block (パネルカードスタイル) ---------- */
.ba-cta {
  display: flex;
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 2.5rem 0;
  background: #2d4437;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  color: #fff;
}

.ba-cta__img {
  flex: 0 0 320px;
  width: 320px;
}

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

.ba-cta__content {
  flex: 1;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.ba-cta .ba-cta__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100vh;
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  width: fit-content;
}

.ba-cta .ba-cta__title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.ba-cta .ba-cta__sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.375rem;
  line-height: 1.7;
}

/* ---------- FAQ accordion (details/summary) ---------- */
.ba-faq-list {
  margin: 1rem 0;
}

.ba-faq-item {
  border: 1px solid #d8e8dc;
  border-radius: 0.625rem;
  margin-bottom: 0.625rem;
  overflow: hidden;
}

.ba-faq-item summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a2f24;
  background: #f0f6f2;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
}

.ba-faq-item summary::-webkit-details-marker { display: none; }

.ba-faq-item summary::before {
  content: 'Q';
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  background: #3e5b4a;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1;
}

.ba-faq-item summary::after {
  content: '';
  flex: 0 0 auto;
  margin-left: auto;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #3e5b4a;
  border-bottom: 2px solid #3e5b4a;
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.ba-faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.ba-faq-item[open] summary {
  border-bottom: 1px solid #d8e8dc;
}

.ba-faq-item__answer {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  background: #fff;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #333;
}

.ba-faq-item__answer::before {
  content: 'A';
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  background: #eb6100;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 0.1rem;
}

/* ---------- Area badges ---------- */
.ba-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1rem 0;
}

.ba-area-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375em;
  padding: 0.5rem 1.125rem;
  background: #fff;
  border: 1.5px solid #3e5b4a;
  border-radius: 100vh;
  color: #3e5b4a;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.ba-area-badge:hover {
  background: #3e5b4a;
  color: #fff;
}

/* ---------- ToC ---------- */
.ba-toc {
  background: #f5fbf7;
  border: 1px solid #c8dfd0;
  border-radius: 0.625rem;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.ba-toc__head {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #3e5b4a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.ba-toc__list {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.ba-toc__list li {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  font-size: 0.875rem;
}

.ba-toc__list li::before {
  content: '▶';
  font-size: 0.5625rem;
  color: #3e5b4a;
  flex: 0 0 auto;
}

.ba-toc__list a {
  color: #1a2f24;
  text-decoration: none;
}

.ba-toc__list a:hover {
  color: #3e5b4a;
  text-decoration: underline;
}

/* ---------- Separator ---------- */
.ba-sep {
  height: 3px;
  background: linear-gradient(90deg, #3e5b4a 0%, #2ea870 100%);
  border-radius: 2px;
  margin: 2.5rem 0;
  border: none;
}

/* ---------- Award badge ---------- */
.ba-award {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff8ee;
  border: 1.5px solid #e8c060;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #7a5500;
  margin: 0; /* flex gap で制御するため個別 margin は 0 */
}

/* ---------- お悩みカード ---------- */
.ba-nayami {
  margin: 1.5rem 0;
}

.ba-nayami__lead {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2f24;
  margin-bottom: 1rem;
}

.ba-nayami-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.ba-nayami-card {
  background: #fff;
  border-radius: 0.625rem;
  padding: 1.125rem 1rem 1.125rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-top: 3px solid #3e5b4a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.ba-nayami-card__img {
  height: 96px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-nayami-card__img img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ba-nayami-card__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  line-height: 1.65;
  text-align: center;
}

.ba-nayami__resolve {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #3e5b4a;
  background: #f0f6f2;
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
}

/* ---------- サ高住との違いコールアウト ---------- */
.ba-diff-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #f0f6f2 0%, #e8f4ed 100%);
  border: 2px solid #3e5b4a;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 0.375rem;
}

.ba-diff-title {
  flex: 0 0 auto;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #3e5b4a;
  line-height: 1.6;
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  border-right: 2px solid #b8d8c4;
  white-space: nowrap;
}

.ba-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  flex: 1;
}

.ba-diff-item {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.ba-diff-item__label {
  font-size: 0.8125rem;
  color: #666;
  line-height: 1.55;
}

.ba-diff-item__val {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2f24;
}

.ba-diff-item__val strong {
  color: #eb6100;
  font-size: 1.375rem;
  font-weight: 800;
}

.ba-diff-note {
  font-size: 0.75rem;
  color: #999;
  text-align: right;
  margin-bottom: 0.25rem;
}

/* ---------- ライフリズム アイコンカード ---------- */
.ba-life-icon-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

.ba-life-icon-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f5fbf7;
  border: 1px solid #d8e8dc;
  border-radius: 0.625rem;
  padding: 1rem 1.25rem;
}

.ba-life-icon-card__icon {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #3e5b4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-top: 0.125rem;
}

.ba-life-icon-card__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a2f24;
  margin-bottom: 0.375rem;
}

.ba-life-icon-card__text {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
}

/* ---------- 入居者の声（吹き出しスタイル） ---------- */
.ba-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1rem 0;
}

.ba-voice-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.ba-voice-card__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.ba-voice-card__img {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #3e5b4a;
}

.ba-voice-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ba-voice-card__profile {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #3e5b4a;
}

.ba-voice-card__bubble {
  background: #f5fbf7;
  border: 1px solid #d0e6d8;
  border-radius: 0 0.625rem 0.625rem 0.625rem;
  padding: 0.875rem 1rem;
  position: relative;
}

.ba-voice-card__bubble::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 20px;
  border-width: 0 7px 9px;
  border-style: solid;
  border-color: transparent transparent #d0e6d8;
}

.ba-voice-card__bubble::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 21px;
  border-width: 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent #f5fbf7;
}

.ba-voice-card__text {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.7;
}

/* ==========================================================
   Responsive — PC (min-width: 48.0625rem)
   ========================================================== */
@media (min-width: 48.0625rem) {

  .ba-hero__bg {
    height: 520px;
  }

  .ba-hero__title {
    font-size: 2.25rem;
  }

  .ba-stats__num {
    font-size: 1.875rem;
  }

  .ba-stats__label {
    font-size: 0.8125rem;
  }

  .ba-toc__list {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ==========================================================
   Responsive — SP (max-width: 48rem)
   ========================================================== */
@media (max-width: 48rem) {

  .ba-hero {
    margin-top: 4.375rem;
  }

  .ba-hero__bg {
    height: 280px;
  }

  .ba-hero__overlay {
    padding-top: 1.5rem;
  }

  .ba-hero__title {
    font-size: 1.25rem;
  }

  .ba-hero__sub {
    display: none;
  }

  .ba-stats {
    flex-wrap: wrap;
  }

  .ba-stats__item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 0.875rem 0.5rem;
  }

  .ba-stats__num {
    font-size: 1.25rem;
  }

  .ba-h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }

  .ba-feature {
    flex-direction: column;
  }

  .ba-feature--reverse {
    flex-direction: column;
  }

  .ba-feature__img {
    flex: 0 0 auto;
    width: 100%;
  }

  .ba-photo-strip {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .ba-life-grid {
    grid-template-columns: 1fr;
  }

  .ba-perf-grid {
    grid-template-columns: 1fr;
  }

  .ba-review-grid {
    grid-template-columns: 1fr;
  }

  .ba-nayami-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ba-nayami-card {
    flex-direction: row;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem;
    text-align: left;
  }

  .ba-nayami-card__img {
    height: 96px;
    width: 96px;
    flex: 0 0 96px;
  }

  .ba-nayami-card__text {
    text-align: left;
  }

  .ba-diff-box {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    padding: 1rem;
  }

  .ba-diff-title {
    padding-right: 0;
    padding-bottom: 0.75rem;
    margin-right: 0;
    border-right: none;
    border-bottom: 2px solid #b8d8c4;
    white-space: normal;
    text-align: center;
  }

  .ba-diff-grid {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  .ba-voice-grid {
    grid-template-columns: 1fr;
  }

  .ba-table th,
  .ba-table td {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }

  /* ba-table--sm: キー/バリュー行はカードレイアウト */
  .ba-table--sm tbody tr {
    display: block;
    border: 1px solid #d8e8dc;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    overflow: hidden;
  }
  .ba-table--sm tbody th,
  .ba-table--sm tbody td {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: none;
    box-sizing: border-box;
  }
  .ba-table--sm tbody th {
    background: #f0f6f2;
    font-weight: 700;
    border-bottom: 1px solid #d8e8dc;
    white-space: normal;
  }

  .ba-cta {
    flex-direction: column;
  }

  .ba-cta__img {
    flex: none;
    width: 100%;
    height: 180px;
  }

  .ba-cta__content {
    padding: 1.5rem 1.25rem;
  }

  .ba-cta__title {
    font-size: 1.0625rem;
  }

  .ba-toc {
    padding: 1rem;
  }

}
