/* voice.css */
.page-voices .page-hero{
  padding: 72px 0 40px;
  background:
    radial-gradient(700px 360px at 18% 18%, rgba(40,200,255,.18), transparent 60%),
    radial-gradient(720px 360px at 82% 10%, rgba(255,122,24,.14), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,248,251,.92));
  border-bottom: 1px solid rgba(6,48,85,.10);
}

.page-voices .eyebrow{
  margin: 0 0 10px;
  font-weight: 1000;
  letter-spacing: .18em;
  color: rgba(6,48,85,.7);
  font-size: 12px;
}

.page-voices .page-title{
  margin: 0 0 12px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  font-weight: 1000;
  color: #063055;
}

.page-voices .page-lead{
  margin: 0 0 18px;
  max-width: 64ch;
  color: rgba(6,48,85,.78);
  font-weight: 800;
  line-height: 1.9;
}

/* anchor nav */
.page-voices .anchor-nav{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.page-voices .anchor-nav a{
  display:inline-flex;
  align-items:center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration:none;
  border: 2px solid rgba(6,48,85,.18);
  background: rgba(255,255,255,.82);
  color:#063055;
  font-weight: 900;
  font-size: 12px;
}

/* section head */
.page-voices .voices-section .section-header{
  margin-bottom: 16px;
}
.page-voices .voices-section .section-title{
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 1000;
  color: #063055;
}
.page-voices .voices-section .section-lead{
  margin: 0;
  color: rgba(6,48,85,.68);
  font-size: 13px;
  font-weight: 800;
}

/* grid */
.page-voices .voices-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 1100px){
  .page-voices .voices-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .page-voices .voices-grid{ grid-template-columns: 1fr; }
}

/* card */
.page-voices .voice-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(6,48,85,.14);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(11,42,85,.10);
  padding: 16px 16px 14px;
}

.page-voices .voice-head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}

.page-voices .avatar{
  width: 40px; height: 40px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 1000;
  color:#063055;
  background: rgba(40,200,255,.18);
  border: 2px solid rgba(6,48,85,.14);
}

.page-voices .voice-name{
  margin: 0;
  font-weight: 1000;
  color:#063055;
}
.page-voices .voice-type{
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 900;
  color: rgba(6,48,85,.62);
}

/* highlight */
.page-voices .voice-highlight{
  margin: 0 0 10px;
  font-weight: 1000;
  color:#063055;
}
.page-voices .voice-highlight.is-emotion{ color: #ff2a6d; }
.page-voices .voice-highlight.is-love{ color: #ff7a18; }

.page-voices .voice-body p{
  margin: 0;
  color: rgba(6,48,85,.82);
  font-weight: 700;
  line-height: 1.85;
}
.page-voices .voice-body p + p{ margin-top: 10px; }

/* details */
.page-voices details.voice-more{
  margin-top: 6px;
}
.page-voices .voice-summary{
  cursor: pointer;
  font-weight: 800;
  color: rgba(6,48,85,.78);
}
.page-voices .more-label{
  margin-left: 8px;
  font-weight: 1000;
  color: #0f6fb8;
}

/* CTA */
.page-voices .cta-section .cta-box{
  background: rgba(255,255,255,.92);
  border: 2px solid rgba(6,48,85,.18);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(11,42,85,.10);
}
.page-voices .cta-title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 1000;
  color:#063055;
}
.page-voices .cta-lead{
  margin: 0 0 14px;
  color: rgba(6,48,85,.72);
  font-weight: 800;
  line-height: 1.9;
}



/* CTA内の主ボタン：文字が消えるのを強制的に防ぐ */
.cta-section .btn.btn-primary,
.cta-box .btn.btn-primary,
.page-voices .btn.btn-primary{
  color: #fff !important;
}

/* ついでに、もしa全般にcolor:inherit;が入ってても負けないように */
.cta-section a.btn.btn-primary{
  -webkit-text-fill-color: #fff;
}
.cta-section .btn.btn-primary{
  position: relative;
  z-index: 5;
}