/* =============================================
   のれんウェブ — info.css
   情報系ページ共通（業務案内 / プライバシーポリシー / お問い合わせ）
   ※ common.css の後に読み込むこと
   ============================================= */

/* ---------- ページ見出し ---------- */
.info-hero {
  padding: 78px 24px 48px;
  text-align: center;
  background: linear-gradient(180deg, #fffaf4, var(--cream));
}
.info-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .15em;
}
.info-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 5vw, 2.55rem);
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--navy-dark);
}
.info-lead {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--text-light);
  font-size: .88rem;
  line-height: 1.9;
}

/* ---------- 本文カード ---------- */
.info-main {
  width: min(calc(100% - 32px), 860px);
  margin: 0 auto;
  padding: 0 0 84px;
}
.info-card {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(44,62,90,.05);
}
.info-section + .info-section {
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
.info-section h2 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--navy-dark);
}
.info-section h3 {
  margin: 22px 0 8px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
}
.info-section p,
.info-section li {
  font-size: .87rem;
  line-height: 1.9;
  color: #574F44;
}
.info-section ul { padding-left: 1.2em; list-style: disc; }
.info-section li + li { margin-top: 7px; }

/* ---------- 表 ---------- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .87rem;
}
.info-table th,
.info-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.info-table th {
  width: 28%;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  background: #fffaf4;
}

/* ---------- 補足 ---------- */
.info-note {
  margin-top: 18px;
  padding: 15px 17px;
  border-left: 3px solid var(--gold-light);
  background: #fffaf4;
  color: var(--text-light);
  font-size: .8rem;
}
.text-link {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(44,62,90,.3);
  text-underline-offset: 4px;
}

@media (max-width: 768px) {
  .info-hero { padding-top: 64px; }
  .info-main { padding-bottom: 48px; }
  .info-card { border-radius: 14px; }
  /* 表を縦積みに */
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 6px; border-bottom: 0; }
  .info-table td { padding-top: 4px; }
  .info-table tr { border-bottom: 1px solid var(--border); }
  .info-table th,
  .info-table td { border-bottom: 0; }
}
