/* ▼ ベース設定 */
body.voice-page {
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.8;
  background: url("http://asagi-tax.jp.testrs.jp/002/wp-content/uploads/2025/07/trimmed_top_bg_16_9.png") no-repeat center center / cover;
  margin: 0;
  padding: 0;
  color: #333;
}

/* ▼ 共通ヘッダー（TOPと統一） */
.custom-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Zen Old Mincho", serif;
}

.custom-header-left {
  display: flex;
  align-items: center;
  font-family: 'Zen Old Mincho', serif;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #333;
}

.custom-header-left::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('http://asagi-tax.jp.testrs.jp/002/wp-content/uploads/2025/06/cropped-Asagi_zeirishi_logoDesign-A.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
}

.custom-header-right {
  padding-right: 80px;
}

.custom-header-right a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.2s ease;
}

.custom-header-right a:first-child {
  margin-left: 0;
}

.custom-header-right a:hover {
  color: #333;
  text-decoration: underline;
}

.custom-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.custom-header-right a.sns-icon {
  margin-left: 12px;
}

.custom-header-right a.sns-icon img {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.custom-header-right a.sns-icon:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}


/* ▼ 中身全体 */
.transparent-background-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 5% 80px;
}

/* ▼ 見出し */
.about-heading h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
}

.voice-page .about-heading p {
  font-size: 1rem;
  text-align: left;
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ▼ Voiceカード（グリッド2列） */
.voice-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1080px;
  margin: 60px auto;
  padding: 0 5%;
}

.voice-client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 12px 0 24px;
}

.voice-client-info img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.voice-client-info .client-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
}

.voice-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  font-family: 'Noto Sans JP', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.9;
  transition: all 0.3s ease;
}

.voice-card:hover {
  transform: translateY(-6px);
}

.voice-card .voice-label {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 8px;
  font-family: "Zen Old Mincho", serif;
  flex: 0 0 auto !important;
}

.voice-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
}

.voice-card .voice-story {
  font-size: 0.95rem;
  color: #444;
  white-space: pre-line;
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
}

.cta-btn.line {
  background-color: #06C755; /* LINEグリーン */
}

.cta-btn.insta {
  background-color: #C13584; /* インスタ風ピンク */
}

.cta-btn:hover {
  opacity: 0.85;
}


/* ▼ フッター仮指定 */
.footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 40px 0;
  background-color: #f9f9f9;
  color: #666;
}

/* ▼ スマホ対応 */
@media screen and (max-width: 768px) {
  .voice-card-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 90%;
  }

  .voice-card {
    padding: 24px;
  }

  .voice-card h3 {
    font-size: 1.1rem;
  }

  .voice-card .voice-story {
    font-size: 0.95rem;
  }
}

