/* =========================================
   VOICE 共通幅
========================================= */

#voice-width {
  width: min(95%, 900px);
  margin: 0 auto;
}

.voice-list {
  width: min(95%, 1100px);
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  gap: 30px;
}

/* =========================================
   カード共通
========================================= */

.voice-card {
  background: #fff;
  border-radius: 22px;
  padding: 25px;
  position: relative;
  border: 2px solid #f3f5f7;
  box-shadow: 0 10px 25px rgba(6, 69, 131, 0.12);
  transition: transform .4s ease, box-shadow .4s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.voice-card:hover {
  box-shadow: 0 18px 40px rgba(6, 69, 131, 0.18);
}

/* 右下アイコン */

.voice-card i {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 18px;
  color: #2A9FD1;
  opacity: .8;
  transition: .3s ease;
}

.voice-card:hover i {
  transform: translateX(6px);
  opacity: 1;
}

/* VOICEスタンプ */

.voice-stamp {
  position: absolute;
  top: -5px;
  right: -10px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: bold;
  padding: 8px 40px;
  transform: rotate(5deg);
  background: #2A9FD1;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
  z-index: 2;
}

/* =========================================
   SPレイアウト
========================================= */

.voice-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voice-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.voice-photo img,
#voice-icon img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #ebf4f9;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  margin: 5px;
}

.voice-profile .name {
  font-size: 18px;
  font-weight: bold;
  color: #064583;
}

.voice-profile .meta {
  font-size: 13px;
  color: #999;
}

/* =========================================
   一覧コメント
========================================= */

.voice-comment {
  font-size: 1.2rem;
  line-height: 1.7rem;
  color: #333;
  position: relative;
  padding: 0 18px;
  text-wrap: balance;
}

.voice-comment::before {
  content: "“";
  position: absolute;
  left: -5px;
  top: -8px;
  font-size: 2.5rem;
  color: #2A9FD1;
  font-weight: bold;
}

/* =========================================
   詳細ページカード
========================================= */

#voice {
  background: #fff;
  border-radius: 22px;
  padding: 50px 40px;
  border: 2px solid #f3f5f7;
  box-shadow: 0 15px 35px rgba(6, 69, 131, 0.15);
  margin-bottom: 60px;
    position: relative;
}

#voice-icon {
  text-align: center;
}

#voice-photos {
  padding: 30px;
  text-align: center;
}

#voice-photos img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ebf4f9;
}

#voice-photos strong {
  display: block;
  margin-top: 15px;
  font-size: 20px;
  color: #064583;
}

/* =========================================
   大見出し
========================================= */

#voice h4 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #064583;
  line-height: 2.2rem;
  letter-spacing: .03em;

  position: relative;
  padding-left: 45px;
  margin-bottom: 45px;
  border-left:none;
}

#voice h4::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 2.8rem;
  color: #2A9FD1;
  font-weight: bold;
}

/* =========================================
   Qデザイン
========================================= */

#voice h5 {
  position: relative;
  margin-top: 45px;
  padding-left: 45px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #064583;
}

#voice h5::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #e25c83;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   A 共通デザイン（重要）
========================================= */

.voice-a {
  position: relative;
  margin: 20px 0 40px 45px;
  padding: 0;
    line-height: 1.9;
  color: #333;
  font-weight: normal;
}

.voice-a::before {
  content: "A";
  position: absolute;
  left: -45px;
  top: 0;
  width: 28px;
  height: 28px;
  background: #2A9FD1;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* A内テキスト */

.voice-a p{
  margin: 0 0 15px;
}

#voice h6 {
	font-size: 1.05rem;
	font-weight: bold;
	color: #2A9FD1;
	margin: 15px 0;
	 }



/* A内リスト */

.voice-a ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.voice-a ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.voice-a ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: .9rem;
  color: #2A9FD1;
}

/* =========================================
   PC ジグザグ
========================================= */

@media (min-width: 768px) {

  .voice-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 0;
  }

  .voice-card:nth-child(odd) {
    transform: translateX(-25px);
  }

  .voice-card:nth-child(even) {
    transform: translate(25px, 40px);
  }

  .voice-card:nth-child(odd):hover {
    transform: translate(-10px, -10px);
  }

  .voice-card:nth-child(even):hover {
    transform: translate(20px, 30px);
  }
}