/* ======================
   Policy Section
   ====================== */
.policy-section {
  background: #fff;
  padding: 80px 0;
}

.policy-section .section-container {
  max-width: 794px;
}

.policy-block {
  margin-bottom: 72px;
}

.policy-block:last-child {
  margin-bottom: 0;
}

/* メイン見出し（philosophy-headingと同スタイル） */
.policy-heading {
  position: relative;
  font-size: 28px;
  font-weight: 700;
  color: #101828;
  margin: 0 0 24px;
  line-height: 1.3;
  padding-bottom: 12px;
  border-bottom: 1px solid #99a1af;
}

.policy-heading::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 134px;
  height: 2px;
  background: #3793E7;
}

/* サブ見出し（左右ライン） */
.policy-sub-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #101828;
  margin: 32px 0 16px;
}

.policy-sub-heading::before,
.policy-sub-heading::after {
  content: '';
  width: 37px;
  height: 1px;
  background: #99a1af;
  flex-shrink: 0;
}

/* 本文 */
.policy-text {
  font-size: 20px;
  color: #000;
  line-height: 1.8;
  margin: 0 0 20px;
}

.policy-text-sm {
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  margin: 0 0 20px;
}

.policy-text:last-child,
.policy-text-sm:last-child {
  margin-bottom: 0;
}

/* 会社リスト */
.policy-company-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 16px;
  color: #000;
  line-height: 2;
  text-align: center;
}

/* ======================
   Responsive (SP)
   ====================== */
@media (max-width: 767px) {
  .policy-section {
    padding: 48px 0;
  }

  .policy-block {
    margin-bottom: 48px;
  }

  .policy-heading {
    font-size: 20px;
  }

  .policy-sub-heading {
    font-size: 16px;
  }

  .policy-text {
    font-size: 16px;
  }

  .policy-text-sm {
    font-size: 14px;
  }

  .policy-company-list {
    font-size: 14px;
  }
}