/* dear Ct. - TOPページ「新着情報」セクション
   PC/SP 両方のTOPで読み込む共通スタイル（override.css はPC専用のためここには入れない）
   トーン: 見出しフォント 'Shippori Mincho', serif／アクセント #1e3a5f／罫線 #c9d4e2 */

#dct-blog-latest {
  box-sizing: border-box;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

#dct-blog-latest * {
  box-sizing: border-box;
}

.dct-blog-latest-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid #c9d4e2;
  padding-bottom: 0.5em;
  margin: 0 0 1.2em;
}

.dct-blog-latest-heading {
  margin: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #1e3a5f;
}

.dct-blog-latest-more {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #1e3a5f;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.dct-blog-latest-more:hover {
  color: #2c4f7c;
  border-color: #2c4f7c;
}

.dct-blog-latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dct-blog-latest-item {
  border-bottom: 1px dashed #c9d4e2;
}

.dct-blog-latest-item:first-child {
  border-top: 1px dashed #c9d4e2;
}

.dct-blog-latest-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  text-decoration: none;
  color: inherit;
}

.dct-blog-latest-text {
  flex: 1 1 auto;
  min-width: 0;
}

.dct-blog-latest-date {
  margin: 0 0 0.4em;
  font-size: 13px;
  color: #6b7f96;
  letter-spacing: 0.03em;
}

.dct-blog-latest-title {
  margin: 0 0 0.4em;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1e3a5f;
  transition: color 0.3s ease;
}

.dct-blog-latest-link:hover .dct-blog-latest-title {
  color: #2c4f7c;
}

.dct-blog-latest-excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.dct-blog-latest-thumb {
  flex: 0 0 120px;
  width: 120px;
  height: 90px;
  overflow: hidden;
  background: #eef1f5;
}

.dct-blog-latest-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SP（幅768px以下想定）: サムネイル縮小・余白調整 */
@media screen and (max-width: 768px) {
  #dct-blog-latest {
    max-width: 100%;
    padding: 0 5%;
    margin: 0 auto 40px;
  }

  .dct-blog-latest-heading {
    font-size: 19px;
  }

  .dct-blog-latest-more {
    font-size: 12px;
  }

  .dct-blog-latest-link {
    gap: 14px;
    padding: 14px 2px;
  }

  .dct-blog-latest-title {
    font-size: 14px;
  }

  .dct-blog-latest-excerpt {
    font-size: 12px;
  }

  .dct-blog-latest-thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 60px;
  }
}
