/* FAVTOWNキャリア 基本スタイル */

/* === ショートコード: 企業ロゴ一覧 === */
.logo-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.company-logo-item {
  display: block;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #fff;
}


.company-logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.company-name-fallback {
  display: block;
  font-size: var(--14px);
  font-weight: 500;
  color: #156fc6;
  padding: 10px 0;
}

/* === ショートコード: 就職支援情報一覧 === */
.support-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.support-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}


.support-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.support-content {
  padding: 16px;
}

.support-content h3 {
  margin: 0 0 12px 0;
  font-size: var(--16px);
  line-height: 1.4;
}

.support-content h3 a {
  color: #333;
  text-decoration: none;
}

.support-excerpt {
  color: #27292b;
  
  font-size: var(--13px);
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  margin: 0 0 12px 0;
}

.support-more-link {
  display: inline-block;
  font-size: var(--14px);
  color: #156fc6;
  text-decoration: none;
  font-weight: 500;
}

/* === TOPページ レイアウト === */
.favtown-top-main {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.favtown-side-nav {
  position: absolute;
  right: -200px;
  top: 0;
  width: 180px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .logo-list {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
  }

  .support-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .favtown-side-nav {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}
