body {
  margin: 0;
  overflow-x: hidden;
  margin: 0;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho",
    "MS PMincho", serif;
  line-height: 1.6;
}

.page-header {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

/* 背景画像 */
.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(1.1);
}

/* h1 を画面のど真ん中に固定 */
.page-header-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;

  display: grid;
  place-items: center;
}

/* タイトル本体（アイコン＋文字＋アイコン） */
.page-header-title__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* テキスト */
.page-header-title__text {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  line-height: 1;
}

/* アイコン */
.page-header-title__icon {
  width: 30px;
  height: 50px;
  object-fit: contain;
  opacity: 0.95;
}

@media (max-width: 600px) {
  .page-header {
    height: 150px;
  }

  .page-header-title__text {
    font-size: 18px;
  }

  .page-header-title__inner {
    gap: 8px;
  }

  .page-header-title__icon {
    width: 40px;
    height: 40px;
  }
}

.company-page {
  width: min(880px, 92%);
  margin: 60px auto 100px;
}

.block {
  margin: 80px 0;
  text-align: center;
}

.block-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.block-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2eb872;
  margin: 10px auto 0;
  border-radius: 999px;
}

.lead {
  line-height: 2;
  color: #333;
}

.policy {
  display: inline-block;
  text-align: left;
  padding: 0;
  list-style: none;
  counter-reset: num;
  margin: 0 auto;
  max-width: 100%;
}

.policy li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.8em;
  white-space: normal;
  word-break: break-word;
}

.policy li::before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #2eb872;
}

.table-wrap {
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 12px 16px;
  border-top: 1px solid #eee;
  text-align: left;
}

.company-table th {
  background: #fafafa;
  width: 30%;
  font-weight: 600;
}

.company-table tr:first-child th,
.company-table tr:first-child td {
  border-top: none;
}
