/* ========================================
   Legal / Static Pages — Refined Editorial
   ======================================== */

.hw-page-stage {
  background: #ffffff;
  padding: 56px 0 72px;
}

.hw-page-content {
  max-width: 720px;
  margin: 0 auto;
}

/* ----------------------------------------
   Header
   ---------------------------------------- */
.hw-page-content__head {
  margin-bottom: 32px;
}

.hw-page-content__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: var(--color-gray);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hw-page-content__meta i {
  color: var(--color-gold);
  font-size: 8px;
}

.hw-page-content__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-wine-dark);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 8px;
}

.hw-page-content__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--color-gold);
  margin-bottom: 32px;
}

.hw-page-content__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 36px;
  max-width: 200px;
}

.hw-page-content__divider::before,
.hw-page-content__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E5DBCE;
}

.hw-page-content__divider i {
  color: var(--color-gold);
  font-size: 12px;
}

/* lead paragraph (first <p>) */
.hw-page-content__body > p:first-child {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 2;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5DBCE;
}

/* ----------------------------------------
   Body
   ---------------------------------------- */
.hw-page-content__body {
  font-size: 14px;
  line-height: 2;
  color: var(--color-ink, #1A1A1A);
}

.hw-page-content__body h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-wine-dark);
  margin: 42px 0 14px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hw-page-content__body h2::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
  transform: translateY(-4px);
}

.hw-page-content__body h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-wine-dark);
  margin: 24px 0 10px;
  letter-spacing: 0.04em;
}

.hw-page-content__body p {
  margin-bottom: 16px;
  line-height: 2;
}

.hw-page-content__body ul,
.hw-page-content__body ol {
  margin: 0 0 20px;
  padding: 0;
}

.hw-page-content__body ul {
  list-style: none;
}

.hw-page-content__body ul li {
  font-size: 13.5px;
  line-height: 1.9;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.hw-page-content__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 1px;
  background: var(--color-gold);
}

.hw-page-content__body ol {
  list-style: decimal;
  padding-left: 24px;
}

.hw-page-content__body ol li {
  font-size: 13.5px;
  line-height: 1.9;
  margin-bottom: 4px;
}

.hw-page-content__body a {
  color: var(--color-wine);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition-fast);
}

.hw-page-content__body a:hover {
  opacity: 0.7;
}

/* ----------------------------------------
   Table (会社概要 / 特商法)
   ---------------------------------------- */
.hw-page-content__body table {
  margin: 24px 0 32px;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--color-wine-dark);
  border-bottom: 1px solid var(--color-wine-dark);
}

.hw-page-content__body th,
.hw-page-content__body td {
  padding: 14px 0;
  font-size: 13.5px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #E5DBCE;
  line-height: 1.8;
}

.hw-page-content__body tr:last-child th,
.hw-page-content__body tr:last-child td {
  border-bottom: 0;
}

.hw-page-content__body th {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-gold-dark);
  width: 32%;
  letter-spacing: 0.06em;
  font-size: 12.5px;
  background: transparent;
  white-space: normal;
}

@media (max-width: 600px) {
  .hw-page-content__body table,
  .hw-page-content__body thead,
  .hw-page-content__body tbody,
  .hw-page-content__body tr,
  .hw-page-content__body th,
  .hw-page-content__body td {
    display: block;
    width: 100% !important;
  }
  .hw-page-content__body th {
    padding-bottom: 4px;
    border-bottom: 0;
  }
  .hw-page-content__body td {
    padding-top: 0;
    padding-bottom: 14px;
  }
}

.hw-page-content__body blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 12px 20px;
  margin: 24px 0;
  background-color: var(--color-cream);
  font-size: 13.5px;
  color: var(--color-gray);
}

/* ----------------------------------------
   Last updated
   ---------------------------------------- */
.hw-page-content__updated {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #E5DBCE;
  font-size: 11.5px;
  color: var(--color-gray-light);
  text-align: right;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
}
