* {
  box-sizing: border-box;
}

body {
  margin: 0;
  line-height: 1.8;
}

.voices-page {
  width: min(1160px, 96vw);
  margin: 0 auto;
  padding: 28px 0 36px;
}

.voices-header {
  text-align: center;
  margin-bottom: 22px;
}

.voices-subtitle {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.voices-title-image {
  width: min(820px, 94%);
  height: auto;
}

.voices-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 36px;
  align-items: start;
		margin-top:50px;
}

.voices-column {
  display: grid;
  gap: 16px;
}

.voice-card {
  position: relative;
  margin: 0;
  padding: 20px 34px 20px 18px;
  background: #f3e8c5;
}

.voice-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 23px;
  background: url("./img/voice_box_bg.png") right top / 23px 16px repeat-y;
}

.voice-card p {
  margin: 0;
	background: #f3e8c5;
	background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #f3e8c5 50%, #f3e8c5 100%), /* 点線1の色 */
                    linear-gradient(180deg, #ccc 1px, transparent 1px); /* 点線2の色と太さ */
  background-size: 8px 100%, /* 点線1のサイズ */
                   100% 2.5em; /* 点線2のサイズ */
  line-height: 2.5em; /* 文字の高さ */
	padding-bottom: 1px; /* 最終行の下にも罫線を引く */
}



.voice-meta {
  text-align: right;
  font-weight: 700;
}

.voice-photo {
  margin: 0;
}

.voice-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
}

.voices-center-image {
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

.voices-center-image img {
  display: block;
  width: min(180px, 100%);
  height: auto;
}

@media (max-width: 900px) {
  .voices-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .voices-center-image {
    justify-content: center;
  }

  .voices-center-image img {
    width: 140px;
  }
}

.voice-card p{
	text-align:left;
}

.voice-meta{
	text-align:right !important;
}
