/* =============================================
   リード文セクション上部余白
============================================= */
.about-section--bleed-right {
  padding-top: calc(var(--section-py) + 48px);
  align-items: center;
}

.about-section--bleed-right .about__image img {
  height: 300px;
}

/* =============================================
   ページヘッダー タイトル行間調整
============================================= */
.page-header--bg .page-header__title ruby {
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 4px;
}
.page-header--bg .page-header__title rt {
  margin-bottom: 0;
}

/* =============================================
   お客様の声 CTA
============================================= */
.voice-cta-section {
  padding: 0;
}

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

.voice-cta__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 64px;
}

.voice-cta__text {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 40px;
  color: var(--color-text);
}

.voice-cta__btn {
  display: inline-block;
  padding: 20px 80px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  transition: background 0.2s;
  text-decoration: none;
  margin: auto;
  border-radius: 9999px;
}

.voice-cta__btn:hover {
  background: var(--color-accent);
}

.voice-cta__tel {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: -4px;
}

.voice-cta__image {
  overflow: hidden;
}

.voice-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

/* =============================================
   お客様の声 一覧
============================================= */
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.voice-card {
  display: flex;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--color-border);
  padding: 25px;
  transition: box-shadow 0.2s;
  color: inherit;
}

.voice-card__thumb {
  flex-shrink: 0;
}

.voice-card__thumb img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.voice-card__content {
  flex: 1;
  min-width: 0;
}

.voice-card__meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 23px;
  margin-bottom: 20px;
}

.voice-card__meta {
  padding-bottom: 23px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.voice-card__name {
  font-size: 1.15rem;
  font-weight: 500;
}
.voice-card__date { font-size: 0.75rem; color: var(--color-text-sub); flex-shrink: 0; }

.voice-card__body {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.9;
  margin-bottom: 12px;
}

.voice-card__more { font-size: 0.8rem; color: var(--color-accent); }

/* =============================================
   お客様の声 詳細
============================================= */
.voice-single__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.voice-single__thumb img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.voice-single__name { font-size: 1.2rem; font-weight: 500; margin-bottom: 4px; }
.voice-single__body { margin-bottom: 56px; }

/* =============================================
   レスポンシブ
   タブレット: 800px - 1279px
   スマホ:     〜799px
============================================= */
@media (min-width: 800px) and (max-width: 1279px) {
  /* CTA 画像を背景にしテキストを中央重ね */
  .voice-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    height: 320px;
    overflow: hidden;
    background: none;
  }
  .voice-cta__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  .voice-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55);
  }
  .voice-cta__body {
    position: relative;
    z-index: 2;
    justify-content: center;
    width: 100%;
    padding: 0 24px;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .voice-cta__text {
    text-align: left;
    font-size: 0.8rem;
    margin: auto 0;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }
  .voice-cta__btn {
    font-size: 0.9rem;
    margin: 0 auto;
    border-width: 2px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 9999px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.6;
    transition: background 0.2s, color 0.2s, border 0.2s;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0);
    width: 100%;
    max-width: 380px;
  }
  .voice-cta__btn:hover {
    background: #fff;
    color: #222;
    border-color: #fff;
  }
  .voice-cta__tel {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 2px;
  }
}
@media (max-width: 799px) {
  .about__heading {
    font-size: 1.4rem;
  }
  /* お客様の声カード：縦積み */
  .voice-card {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
  }
  .voice-card__thumb img {
    width: 130px;
    height: 130px;
  }
  /* CTA 画像を背景にしテキストを中央重ね */
  .voice-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    height: 300px;
    overflow: hidden;
    background: none;
  }
  .voice-cta__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }
  .voice-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55);
  }
  .voice-cta__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 24px;
    text-align: center;
  }
  .voice-cta__text {
    font-size: 0.8rem;
    margin-bottom: 32px;
    color: #fff;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }
  .voice-cta__btn {
    font-size: 0.9rem;
    margin: 0 auto;
    border-width: 2px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 9999px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.6;
    transition: background 0.2s, color 0.2s, border 0.2s;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0);
    line-height: 1.8;
    width: 100%;
    max-width: 380px;
  }
  .voice-cta__btn:hover {
    background: #fff;
    color: #222;
    border-color: #fff;
  }
  .voice-cta__tel {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-top: -7px;
  }

  /* CTA */
  .voice-cta { grid-template-columns: 1fr; }
  .voice-cta__body { padding: 56px 24px; }
  .voice-cta__image img { min-height: 220px; }
}
