@charset "UTF-8";
/* CSS Document */
.adapt-interview p {
line-height: 2;  
}
.adapt-top a{
  display: block;
  margin: 10px 0;
  text-align: center;
}

.lh2 {
  line-height: 2
}
.fontsmall {
  padding: 20px 30px;
  font-size: 12px;
  line-height: 1.6;
  background-color: var(--gray-100);
}

.main-visual-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 個別インタビューページへのリンク部分：全体のレイアウト */
/* 親コンテナ */
.interview-flex-container {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 5px;       /* 要素間の隙間（モダンブラウザ対応） */
  margin-top: 10px;
  padding: 0;
}

/* 各カードの設定 */
.interview-card {
  /* 4カラム計算：(100% - 隙間5px * 4) / 4 */
  width: calc((100% - 20px) / 4); 
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

/* ホバー時の装飾 */
.interview-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.interview-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* サムネイル */
.thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #f0f0f0;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキストエリア */
.content {
  padding: 15px;
  flex-grow: 1; /* 高さを揃えるため */
}

.title {
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.6;
  margin: 0;
}
.fontbold {
  font-weight: bold;
}

/* レスポンシブ対応 */
/* タブレット：2カラム */
@media (max-width: 900px) {
  .interview-card {
    width: calc((100% - 20px) / 2);
  }
}

/* スマホ：1カラム */
@media (max-width: 600px) {
  .interview-card {
    width: 100%;
  }
}