/* =========================================================
  PC用デザイン
========================================================= */

/* =============
  ページ全体
============= */
.page-body {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.main-blocks {
  width: 100%;
  padding: 10px;
  background: #f8f8f8;
  margin: 0 0 0.5em 0;
  box-sizing: border-box;
}

/* =============
  ページタイトル
============= */
.page-title {
  width: 100%;
  height: 56px;
  line-height: 56px;
  padding-left: 24px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background:
    radial-gradient(ellipse at 62% 100%, rgba(120,160,210,.45) 0%, rgba(70,110,170,.35) 28%, transparent 55%),
    repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(255,255,255,.45) 3px, transparent 4px),
    linear-gradient(90deg, #0b2f75 0%, #123b86 45%, #1d4f9a 100%);
  border-radius: 3px 3px 0 0;
  border-bottom: 4px solid #c7d5ea;
  box-sizing: border-box;
  margin: 0 0 10px 0;
}

/* =============
  章タイトル
============= */
div.link-section-title {
  font-family: sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  padding-bottom: 8px;
  position: relative;
  width: 100%;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 10px;
}

div.link-section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 4px;
  background-color: #1a3c7c;
}

h2.link-section-title {
  margin: 0 !important;
}

.main-blocks .link-section-title:not(:nth-child(1 of .link-section-title)) {
  margin-top: 15px;
}

/* =============
  マルチカラム
============= */
.mt-be-column {
    flex: 1;
}

/* =============
  章タイトル
============= */
.mt-be-column p a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* 左の青いボタン */
.mt-be-column p a::before {
  content: ">";
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 35px;
  height: 20px;
  background: #4f7dbd;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
  padding-right: 10px;
}

/* hover */
.mt-be-column p a:hover {
  text-decoration: underline;
}

/* =============
  【共通】リンクコンテナ
============= */
.link-container p a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.link-container p {
  padding-bottom: 0px;
}

/* 左の青いボタン */
.link-container p a::before {
  content: ">";
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 35px;
  height: 20px;
  background: #4f7dbd;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
  padding-right: 10px;
}

/* hover */
.link-container p a:hover {
  text-decoration: underline;
}

/* =========================================================
  スマホ用デザイン
========================================================= */
@media screen and (max-width: 929px) {
  /* =============
    マルチカラム
  ============= */
  .mt-be-columns {
    gap: 0px;
    display: flex;
    flex-direction: column;
  }
}