@charset "UTF-8";
.policy-hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.18);
  color: #b91c1c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.policy-mini-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 224, 231, 0.9);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.policy-mini-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.policy-mini-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--main, #111827);
}

.policy-mini-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #475569;
}

.policy-section {
  scroll-margin-top: 110px;
}

.policy-box {
  margin-top: 22px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(248, 250, 252, 0.92)
  );
  border: 1px solid rgba(217, 224, 231, 0.9);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

.policy-box + .policy-box {
  margin-top: 18px;
}

.policy-box h3 {
  position: relative;
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 22px;
  line-height: 1.45;
  color: var(--main, #111827);
}

.policy-box h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 1.2em;
  border-radius: 999px;
  background: #ef3b2d;
}

.policy-box p {
  margin: 0 0 14px;
  line-height: 2;
  color: #334155;
}

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

.policy-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding-left: 1.6em;
  line-height: 1.9;
  color: #334155;
}

.policy-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #ef3b2d;
  font-weight: 900;
}

.policy-alert {
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(239, 59, 45, 0.08);
  border: 1px solid rgba(239, 59, 45, 0.18);
}

.policy-alert strong {
  display: block;
  margin-bottom: 8px;
  color: #b91c1c;
  font-size: 16px;
}

.policy-alert p {
  margin: 0;
  line-height: 1.9;
  color: #7f1d1d;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(217, 224, 231, 0.9);
}

.policy-table th,
.policy-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(217, 224, 231, 0.9);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
  color: #334155;
}

.policy-table th {
  width: 28%;
  background: rgba(15, 23, 42, 0.04);
  color: #111827;
  font-weight: 900;
}

.policy-table tr:last-child th,
.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-date {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.04);
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-table,
  .policy-table tbody,
  .policy-table tr,
  .policy-table th,
  .policy-table td {
    display: block;
    width: 100%;
  }

  .policy-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }

  .policy-table td {
    padding-top: 6px;
  }
}
