@charset "utf-8";
/* CSS Document */

/* セクション全体 */
.voice-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  background: #f9fafc;
  text-align: center;
}
.voice01{
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}
/* 大見出し */
.voice-title {
  font-size: 1.8rem;
  color: #001f3f; /* ネイビー */
  margin-bottom: 40px;
  border-bottom: 3px solid #001f3f;
  display: inline-block;
  padding-bottom: 6px;
}

/* グリッド配置（PCで2列、スマホで1列） */
.voice-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}


@media (min-width: 768px) {
  .voice-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* カード全体 */
.voice-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* 小見出し（カード上部） */
.voice-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #001f3f;
  border-left: 4px solid #001f3f;
  padding-left: 10px;
  margin-bottom: 16px;
}

/* 写真＋本文のレイアウト */
.voice-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* 写真 */
.voice-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

/* 名前・コメント部分 */
.voice-name {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 8px;
}

.voice-comment {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

.voice-link {
  color: #0056b3;
  font-size: 0.9rem;
  text-decoration: underline;
}

/* ホバー効果 */
.voice-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
/* その他の声セクション */
.voice-section-sub {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 40px 20px 60px;
  background: #fff;
  border-top: 3px solid #001f3f;
}

/* 小見出し */
.voice-sub-title {
  font-size: 1.4rem;
  color: #001f3f;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}

.voice-sub-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #001f3f;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* グリッド配置 */
.voice-sub-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .voice-sub-grid {
    grid-template-columns: 1fr 1fr;
  }
.voice01{
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}	
}

/* その他の声セクション */
.voice-section-sub {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #fff;
  border-top: 3px solid #001f3f;
}

/* 小見出し */
.voice-sub-title {
  font-size: 1.4rem;
  color: #001f3f;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
}

.voice-sub-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #001f3f;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* 1列表示（PC・スマホ共通） */
.voice-sub-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 各コメントアイテム */
.voice-sub-item {
  background: #f9fafc;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 18px 24px;
  text-align: left;
  transition: background 0.3s;
}

.voice-sub-item:hover {
  background: #f0f4f8;
}



/* アイテムのデザイン（別カラー） */
.voice-sub-item02 {
	background-color: #D6E5FD; /* ← 背景を淡い青系などに変更 */
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 18px 24px;
	text-align: left;
	transition: background 0.3s;
}

.voice-sub-item02:hover {
	background-color: #CFD6E1;
}

/* 名前とコメント */
.voice-sub-name {
  font-weight: 600;
  color: #001f3f;
  margin-bottom: 6px;
}

.voice-sub-comment {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* スマホで縦レイアウト */
@media (max-width: 600px) {

  .voice-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }	
	.voice01{
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}	
  .voice-card {
	flex-direction: column;
	align-items: center;
	text-align: left;
  }

  .voice-photo img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
  }
	.voice-comment{
	text-align: left;	
	}
}
