/* サイド＋メイン全体を1080に */
/* サブページ本文 強制上書き */
.sub-main,
.sub-main * {
  font-size: 16px !important;
  line-height: 1.8 !important;
}
.sub-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  padding: 40px 20px;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

/* 左30% */
.sub-side {
  width: 30%;
}

/* 右70% */
.sub-main {
  width: 70%;
}

/* SP */
@media (max-width: 768px) {
  .sub-wrap {
    flex-direction: column;
  }

  .sub-side,
  .sub-main {
    width: 100%;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .sub-wrap {
    flex-direction: column;
  }

  .sub-side {
    width: 100%;
  }
}

/**************************************
 * 在校生の声
 * ************************************/
/* ===== 全体 ===== */
.voice-box {
  border: 1px solid #ccc;
  padding: 25px;
  margin-bottom: 40px;
  background: #fff;
}

/* ===== 画像（400×300固定） ===== */
.voice-img {
  text-align: center;
  margin-bottom: 20px;
}

.voice-img img {
  width: 400px;
  height: 300px;
  object-fit: cover;
}

/* ===== 名前 ===== */
.voice-name {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* ===== タイトル ===== */
.voice-title {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

/* ===== 質問ボックス（ここがポイント） ===== */
.voice-q {
  border: 2px solid #333;
  padding: 12px 15px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

/* ===== 回答 ===== */
.voice-a {
  padding-left: 5px;
  margin-bottom: 10px;
  line-height: 1.8;
}

/* ===== 動画 ===== */
.voice-movie {
  display: flex;
  gap: 30px;
}

.voice-movie-left {
  width: 50%;
}

.voice-movie-left iframe {
  width: 100%;
  height: 280px;
}

.voice-movie-right {
  width: 50%;
}

/* ===== スマホ ===== */
@media (max-width: 768px) {

  .voice-img img {
    width: 100%;
    height: auto;
  }

  .voice-movie {
    flex-direction: column;
  }

  .voice-movie-left,
  .voice-movie-right {
    width: 100%;
  }
}