/*子ページリストの装飾*/
.child-page-section {
  margin: 20px 0;
  padding: 0;
}
.related-links-heading {
  font-size: 1.5em;
  font-weight: bold;
	margin-bottom: 15px;
  color: #333;
	text-align: center;
	border:none;
}

/* リンクリストのラッパー */
.child-page-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* リストアイテム */
.child-page-links li {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
  overflow: hidden;
  margin: 0;
}

/* カードホバー時のアニメーション */
.child-page-links li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* リンクをブロック要素として設定 */
.child-page-links a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
	color:var(--vk-color-primary);
  transition: color 0.3s ease, background-color 0.3s ease;
  text-align: center;
}
.child-page-links a::after{
	content:">";
	padding-left:5px;
}
/* ホバー時のリンク色 */
.child-page-links a:hover {
	color:var(--vk-color-primary);
}