/* —— THE BARBER STYLE / STYLIST INTERVIEW —— */
/* フォントファミリー・フォントサイズ・配色のみリクルートセクションに合わせて上書き */

.archive-archive {
  margin: 40px 0;
  font-family: 'Noto Serif JP', serif; /* フォントファミリーを統一 */
}

.archive-title {
  font-size: 1.5em;                 /* フォントサイズを統一 */
  color: #005bac;                   /* タイトルカラーを統一 */
  border-bottom: 2px solid #e60012; /* 下線色を統一 */
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.archive-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.archive-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px;
}

.archive-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.archive-item-content {
  flex: 1;
}

.item-date {
  font-size: 1em;   /* フォントサイズを統一 */
  color: #333;      /* 日付カラーを統一 */
}

.item-title {
  font-size: 1.2em;   /* フォントサイズを統一 */
  color: #e60012;     /* 見出しカラーを統一 */
  font-weight: bold;
  margin: 15px 0;
}

.btn-read {
  display: inline-block;
  padding: 4px 8px;
  background: linear-gradient(90deg, #e60012, #005bac); /* ボタン配色を統一 */
  color: #fff;                 /* ボタン文字色を統一 */
  border-radius: 4px;
  font-size: 0.9em;            /* ボタン文字サイズを統一 */
  text-decoration: none;
}