/* ===============================
   全体コンテナ
================================ */
.content {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===============================
   ページタイトル（H1）
================================ */
.content h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 0.03em;
}

/* ===============================
   セクション見出し（H2）
================================ */
.content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #222;

  margin: 40px 0 20px;
  padding-left: 14px;

  border-left: 4px solid #1c66a6;
  border-bottom: 1px solid #cfcfcf;

  padding-bottom: 10px;
}


/* ===============================
   カラムレイアウト（Gutenberg）
================================ */
.content .wp-block-columns {
  gap: 80px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .content .wp-block-columns {
    gap: 30px;
  }
}

/* ===============================
   リストデザイン
================================ */
/* 既存の黒丸を消す */
/* ul のデフォルトを消す */
.content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* liをflexにして、アイコン＋本文を横並びに */
.content li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  line-height: 1.9;
}

/* 丸＋三角を1枚のSVGとして描画 */
.content li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;

  /* 緑丸＋中央の白▶（ピクセル単位で中央に固定） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2356a82f'/%3E%3Cpath d='M6.5 4.8 L11.0 8.0 L6.5 11.2 Z' fill='white'/%3E%3C/svg%3E");
}

/* もう三角は不要 */
.content li::after {
  content: none;
}

/* ===============================
   リンクデザイン（大学サイト風）
================================ */
.content a {
  color: #003399;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.content a:hover {
  opacity: 0.75;
}

/* ===============================
   セクション間余白調整
================================ */
.content h2:first-of-type {
  margin-top: 0;
}

/* ===============================
   パンくず調整（任意）
================================ */
.content nav {
  margin-bottom: 20px;
  font-size: 13px;
  color: #64748b;
}