/* ========= 基本文字サイズ ========= */
h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* 太字にしたいとき */
.bold {
  font-weight: bold;
}

/* フォントサイズを大きく */
.large {
  font-size: 1.5rem;
}

/* アンダーライン */
.underline {
  text-decoration: underline;
}

/* イタリック */
.italic {
  font-style: italic;
}

/* 色を強調 */
.highlight {
  color: #d9534f;
}

/* 背景色で強調 */
.bg-highlight {
  background-color: yellow;
  padding: 0.2em;
}

/* ========= パンくず（共通） ========= */
.breadcrumbs {
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;        /* 本文背景に合わせる */
  padding: 8px 12px 0 12px;      /* 上詰まりを避ける */
  margin: 0 0 12px 0;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.breadcrumbs li + li::before {
  content: "＞";
  color: #666;
  margin: 0 6px;
}

.breadcrumbs a {
  color: #002b5c;               /* 紺 */
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: #004f9f;
  text-decoration: underline;
}

/* ========= レスポンシブ ========= */
@media screen and (max-width: 768px) {
  .main-content h1 {
    font-size: 1.4rem;
  }

  .main-content {
    font-size: 85%;
  }

  .date {
    font-size: 85%;
  }

  .large {
    font-size: 1rem;
  }

  .breadcrumbs {
    padding: 6px 10px 0 10px;
    margin-bottom: 10px;
  }

  .breadcrumbs li {
    font-size: 12px;
  }

  .pc-ad{
    display: none;
  }
}