@charset "UTF-8";

/* =====================================================================
   法人レンタルサービス規約
   - h1見出し（content-header）は /smb/mobile/rental/ と同形式を踏襲
   ===================================================================== */

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

/* ---------- ページタイトル領域（rental と同形式：背景画像＋アイコン） ---------- */
.content-header {
  flex-direction: column;
  width: 100%;
  background: url("../images/header_bg-sp.png") no-repeat center center/cover;
  min-height: 208px;
}
@media (min-width: 47.9375em) {
  .content-header {
    min-height: 240px;
    background: url("../images/header_bg.png") no-repeat center center/cover;
  }
}
.content-header h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
  line-height: 1.4;
  font-size: 30px;
  gap: 4px;
}
@media (min-width: 47.9375em) {
  .content-header h1 {
    font-size: calc(30px + 10 * (100vw - 768px) / 392);
  }
}
@media (min-width: 72.5em) {
  .content-header h1 {
    font-size: 40px;
  }
}

/* ---------- 規約リンク一覧 ---------- */
.kiyaku-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0;
}
@media (min-width: 47.9375em) {
  .kiyaku-list {
    padding: 48px 0;
  }
}
.kiyaku-list p {
  margin: 0;
}
.kiyaku-list p + p {
  margin-top: 28px;
}
