/* ==========================================================
   Official Policy Pages Layout
   （Privacy / Tokusho 共通）
========================================================== */

/* 全体 */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* header は既存CSSをそのまま使用 */

/* ======================
   固定レイアウト本体
====================== */

.policy-layout {
  padding-top: 50px;              /* header 高さ分 */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===============================
   Policy hero image
   =============================== */

.policy-hero {
  width: 100%;
  height: 180px;              /* ★ 高すぎない */
  overflow: hidden;
  background: #f6f6f6;
}

.policy-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;              /* ★ 少しだけ抑える */
}

/* SP */
@media (max-width: 768px) {
  .policy-hero {
    height: 80px;
  }
}

/* 本文エリア：ここだけスクロール */
.policy-main {
  flex: 1;
  overflow-y: auto;
  padding: 3rem 1.5rem 4rem;
  background: #ffffff;
}

/* コンテンツ幅 */
.policy-container {
  max-width: 920px;
  margin: 0 auto;
  color: #433D3C;
  line-height: 1.9;
  font-size: 0.98rem;
}

/* 見出し */
.policy-container h2{
  text-align: center;
  color: #028760;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 2rem;
}

.policy-container h3{
  text-align: left;
  color: #028760;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}

.policy-container h4 {
  margin: 1rem 0 0.5rem;
  padding-left: 0.75rem;
  border-left: 3px solid rgba(2, 135, 96, 0.55);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* テキスト */
.policy-container p {
  margin: 0.5rem 1rem;
}

.policy-container ul {
  margin: 0.5rem 1rem;
}

.policy-container li {
  margin: 0.35rem 0;
}

/* 特商法テーブル */
.law-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 1.5rem;
  border: 1px solid #E2EAE5;
  border-radius: 14px;
  overflow: hidden;
}

.law-table th,
.law-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid #E2EAE5;
  vertical-align: top;
}

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

.law-table th {
  width: 32%;
  background: #F6FBF8;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* =========================================
   hr 共通スタイル（静か・上品）
   ========================================= */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(2, 135, 96, 0.35),
    transparent
  );
  margin: 2.5rem 0;
}
