/* リンク一覧 */
.links-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* リンクカード */
.link-item {
  display: flex;
  padding: 1.2rem 1.5rem;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  text-decoration: none;
  background: #fff;
  align-items: center;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease background-color 0.25s ease;
}

/* hover */
.link-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  background: rgba(0, 112, 142, 0.05);
}

/* 中身 */
.link-text {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

.link-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}

.link-desc {
  font-size: 0.75rem;
  color: #666;
}

/* アイコン */
.link-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  transition: background-color 0.25s ease;
}

.link-icon i {
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: color 0.25s ease;
}

/* hover時：色だけ変更 */
.link-item:hover .link-icon {
  background: var(--primary-color);
}

.link-item:hover .link-icon i {
  color: #fff;
}

