/* ---------- 全体 ---------- */
.main.page {
  padding: 60px 20px;
  background-color: #f7fafd;
  font-family: 'Noto Sans JP', sans-serif;
}

.wysiwyg-editor {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- メイン・サイドバー構成 ---------- */
.content-sidebar-wrapper {
	display: flex;
	flex-direction: row;
	gap: 40px;
}

.contentout {
  width: 70%;
}

.sidebar {
  width: 30%;
}

/* ---------- ブログ記事カード ---------- */
.blog-list__list-item {
  margin-bottom: 40px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.blog-list__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.blog-item {
	display: flex;
	flex-direction: row;
	color: inherit;
	text-decoration: none;
}

/* アイキャッチ画像 */
.blog-item__thumbnail {
	width: 30%;
	overflow: hidden;
}

.blog-item__thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* コンテンツ */
.blog-item__content {
	width: 70%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-item__title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

.blog-item__button {
  margin-top: auto;
	text-align: right;
}

.blog-item__button-more {
  display: inline-block;
  color: #5b9fbf;
  font-weight: 600;
  border-bottom: 2px solid #5b9fbf;
  transition: all 0.3s ease;
}

.blog-item__button-more:hover {
  color: #417c9c;
  border-color: #417c9c;
}

/* ---------- サイドバー ---------- */
.sidebar {
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sidebar-section {
  margin-bottom: 40px;
}

.sidebar-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid #5b9fbf;
  color: #333;
}

.sidebar-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 12px;
  font-size: 15px;
}

.sidebar-list a {
  color: #5b9fbf;
  text-decoration: none;
  transition: color 0.3s;
}

.sidebar-list a:hover {
  color: #417c9c;
}

/* ---------- レスポンシブ ---------- */
@media screen and (max-width: 1024px) {
  .content-sidebar-wrapper {
    flex-direction: column;
  }

  .contentout,
  .sidebar {
    width: 100%;
  }

  .sidebar {
    margin-top: 40px;
  }
}
