/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 87:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.news-topics-section {
  padding: 40px 20px;
}

/* ✅ ヘッダー（News 見出し部分） */
.news-topics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.news-topics-header h2 {
  margin: 0;
}

/* ✅ 記事リスト */
.news-topics-list .news-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

.news-image {
  flex: 0 0 100px;
  height: 100px;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-text {
  flex: 1;
}
.news-text .date {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

/* ✅ 記事タイトル → 普通のフォント + レスポンシブ対応 */
.news-text .title {
  font-weight: normal;
  font-family: var(--font-body-family, sans-serif);
  line-height: 1.4;
  margin: 0;
}

/* PC表示 */
@media screen and (min-width: 769px) {
  .news-topics-header h2 {
    font-size: 24px; /* News の大きさ（Prestige見出しフォント） */
  }
  .news-text .title {
    font-size: 16px; /* 記事タイトル */
  }
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
  .news-image {
    flex: 0 0 100px;
    height: 100px;
  }
  .news-topics-header h2 {
    font-size: 20px; /* スマホ時の News */
  }
  .news-text .title {
    font-size: 13px; /* スマホ時のタイトル */
  }
}
</style>