.note-feed-list li + li {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eee;
}

.note-feed-list a {
  display: flex;
  gap: 12px;
  align-items: center;
}

.note-feed-thumb {
  width: 92px;
  flex-shrink: 0;
}

.note-feed-thumb img {
  width: 100%;
  display: block;
}

.note-feed-title {
  line-height: 1.5;
  color: #444;
}

/* ===== FROM MILK PC調整 ===== */
@media (min-width: 768px) {

  .note-feed-thumb {
    width: 140px;
  }

  .note-feed-list a {
    align-items: center;
    gap: 18px;
  }

  .note-feed-title {
    font-size: 18px;
    line-height: 1.5;
  }

  .note-feed-more {
    margin-top: 28px;
  }

}

/* ===== PC ブランド選択 ===== */

.section-brand {
  width: 760px;

  margin: 0 auto 70px;
}

.section-brand-list {
  display: flex;
  justify-content: center;

  gap: 14px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.section-brand-list li {
  width: 250px;

  padding: 10px;

  border: 1px solid #c4a379;
  border-radius: 3px;

  box-sizing: border-box;

  transition:
    opacity .2s ease,
    transform .2s ease;
}

.section-brand-list li:hover {
  opacity: .7;

  transform: translateY(-2px);
}

.section-brand-list li a {
  display: block;
  line-height: 0;
}

.section-brand-list img {
  width: 100%;
  height: auto;

  display: block;
}