/* ==========================================================
   下層ページ（会社概要・プライバシーポリシー・特商法）共通スタイル
   style.css のトークン・ヘッダー・フッター・ボタンを継承して使う
   ========================================================== */

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 360px at 82% 20%, rgba(47, 107, 238, .10), transparent 60%),
    radial-gradient(560px 320px at 20% 90%, rgba(31, 191, 164, .12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f2f8fd 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 54px 24px 46px;
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: .06em;
  color: var(--ink);
}
.page-hero__title .grad {
  background: linear-gradient(92deg, #2f6bee 10%, #1fbfa4 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero__lead {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .04em;
}

.breadcrumb {
  max-width: 880px;
  margin: 0 auto;
  padding: 16px 24px 0;
  font-size: 12.5px;
  color: var(--muted);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: #b3c1d6; }

.page {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}
.page__intro {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.page h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--blue-deep);
  margin: 40px 0 14px;
  padding-left: 14px;
  border-left: 4px solid;
  border-image: linear-gradient(180deg, var(--blue), var(--teal)) 1;
  line-height: 1.5;
}
.page h2:first-of-type { margin-top: 0; }
.page h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 24px 0 10px;
}
.page p { margin: 0 0 14px; line-height: 1.95; }
.page strong { color: var(--ink); font-weight: 700; }

.page ul, .page ol { margin: 0 0 16px; padding-left: 0; }
.page li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.85;
}
.page ul > li::before {
  content: "";
  position: absolute;
  left: 4px; top: .72em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}
.page ol { counter-reset: item; }
.page ol > li { padding-left: 30px; }
.page ol > li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0; top: .15em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* 情報テーブル（会社概要・特商法） */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 24px;
  font-size: 14.5px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.info-table th, .info-table td {
  text-align: left;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.8;
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }
.info-table th {
  width: 32%;
  background: #f4f8fd;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-deep);
  white-space: nowrap;
}

.page__meta {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.page__meta p { margin: 0 0 4px; }

.notice {
  background: #fff8ec;
  border: 1px solid #f2d9a6;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 13.5px;
  line-height: 1.85;
  color: #7a5a1e;
  margin-bottom: 28px;
}
.notice strong { color: #7a5a1e; }

.contact-box {
  background: linear-gradient(180deg, #eef5fe, #f7fbff);
  border: 1px solid #dcebfb;
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 8px;
}
.contact-box p { margin: 0 0 4px; }
.contact-box a { color: var(--blue); }
.contact-box a:hover { text-decoration: underline; }

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
}
.page-back:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .info-table th, .info-table td { display: block; width: 100%; white-space: normal; }
  .info-table th { border-bottom: 0; padding-bottom: 4px; }
  .info-table td { padding-top: 4px; }
}
