/* =====================
   LINKページ
===================== */
/* 全体 */
.link-page {
  /* padding: 40px 20px; */
  background: #f7efe3;
  /* max-width: 1200px; */
  margin: 5px auto 10px;}

.link-page h2 {
  text-align: center;
}

.link-section {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

/* 各リンク */
.link-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.link-title {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.link-title::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6c8ebf;
  flex-shrink: 0;
}

.link-title::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);

  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* タイトル */
.link-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* リンク */
.link-item a {
  color: #3b6ea5;
  text-decoration: none;
  font-weight: bold;
}

.link-item a:hover {
  text-decoration: underline;
}

/* 説明 */
.link-item p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}