@charset "UTF-8";
/* CSS Document */
html {
    scroll-padding-top: 98px;
}
.p-article__body p {
  margin-bottom: 16px;
}
.p-article__body h2 {
  font-size: 155%;
  line-height: 1.2;
  margin: 2em 0 1.5em;
}
.p-article__body h3 {
  font-size: 133%;
  line-height: 1.2;
  margin: 2em 0 1.5em;
  background: url(/common/images/hdg_bg01.gif) 2px 0 repeat-y;
  padding-left: 17px;
}
.article-lead {
  font-size: 15px;
  color: #333;
  line-height: 1.95;
  padding: 18px 20px;
  background: #e6f6fa;
  border-radius: 0 4px 4px 0;
  margin-bottom: 24px;
}
.toc-box {
  background: #fff;
  border: 1px solid #d0daea;
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.toc-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.toc-list {
  list-style: none;
  counter-reset: toc;
}
.toc-list > li {
  counter-increment: toc;
  padding: 5px 0;
  border-bottom: 1px dashed #e8eef7;
  font-size: 13px;
}
.toc-list > li > a {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.toc-list > li > a::before {
  content: counter(toc);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #0062B1;
  border-radius: 2px;
  padding: 1px 5px;
  flex-shrink: 0;
}
.toc-sub {
  list-style: none;
  padding-left: 28px;
  margin-top: 4px;
}
.toc-sub li {
  padding: 3px 0;
  font-size: 12px;
}
.toc-sub li::before {
  content: "─";
  color: #b0c0d8;
  margin-right: 6px;
}
/* Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.data-table th {
  background: #0062B1;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 500;
  font-size: 13px;
}
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}
.data-table tr:nth-child(even) td {
  background: #f8f9fc;
}
.data-table td.hl {
  color: #1a3a6b;
  font-weight: 700;
}
/* Merit / Demerit grids */
.merit-grid, .demerit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}
.merit-card {
  background: #fff;
  border: 1px solid #d0daea;
  border-radius: 6px;
  padding: 16px;
  border-top: 3px solid #0062B1;
}
.merit-num {
  font-size: 11px;
  color: #0062B1;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.merit-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 7px;
}
.merit-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
}
.demerit-card {
  background: #fff;
  border: 1px solid #e8d8d8;
  border-radius: 6px;
  padding: 16px;
  border-top: 3px solid #a82f7e;
}
.demerit-num {
  font-size: 11px;
  color: #a82f7e;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.demerit-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 7px;
}
.demerit-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
}
/* Boxes */
.caution-box {
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 18px 22px;
  margin: 20px 0;
}
.caution-box-title {
  font-size: 13px;
  font-weight: 700;
  color: #666;
  margin-bottom: 10px;
}
.summary-box {
  background: #e6f6fa;
  border: 1px solid #c5d5ea;
  border-radius: 6px;
  padding: 20px 24px;
  margin: 28px 0;
}
.summary-box-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a3a6b;
  margin-bottom: 12px;
}
.summary-box ul {
  list-style: none;
  padding: 0;
}
.summary-box li {
  font-size: 14px;
  color: #333;
  padding: 5px 0 5px 20px;
  position: relative;
  border-bottom: 1px dashed #d0daea;
}
.summary-box li:last-child {
  border-bottom: none;
}
.summary-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a3a6b;
  font-weight: 700;
}
.column_img {
  margin-bottom: 2em;
}
/* CTA */
.cta-inline {
  background: #0062B1;
  border-radius: 6px;
  padding: 22px 24px;
  margin: 28px 0;
  text-align: center;
}
.cta-inline p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.cta-btn-main {
  display: inline-block;
  background: #fff;
  color: #1a3a6b;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 4px;
}