/* renewal-extra.css
   新規ページ（about / contact / privacy）専用の追加スタイル。
   site-styles.css のデザイントークン（--ink, --tech, --touch, --line 等）に準拠。
   site-styles.css 本体は変更しないため、これを後ろに読み込んで補完する。 */

/* ============ About: 代表メッセージ ============ */
.about-message {
  max-width: 860px;
  margin: 0 auto;
}
.about-message-lead {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.5;
  color: var(--ink, #0f172a);
  margin: 0 0 28px;
}
.about-message p {
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--ink-soft, #475569);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.about-message-sign {
  text-align: right;
  font-weight: 700;
  color: var(--ink, #0f172a) !important;
  margin-top: 32px !important;
}

/* ============ About: 会社概要テーブル ============ */
.about-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--line, rgba(15,23,42,0.10));
  border-radius: 12px;
  overflow: hidden;
}
.about-table th,
.about-table td {
  text-align: left;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft, rgba(15,23,42,0.06));
  vertical-align: top;
  line-height: 1.7;
}
.about-table tr:last-child th,
.about-table tr:last-child td { border-bottom: none; }
.about-table th {
  width: 180px;
  background: var(--bg-soft, #f8fafc);
  color: var(--ink, #0f172a);
  font-weight: 700;
  white-space: nowrap;
}
.about-table td { color: var(--ink-soft, #475569); }
.about-table a { color: var(--tech-2, #0891b2); text-decoration: underline; }

@media (max-width: 640px) {
  .about-table th, .about-table td { display: block; width: auto; }
  .about-table th { border-bottom: none; padding-bottom: 4px; }
  .about-table td { padding-top: 4px; }
}

/* ============ Contact: 2カラムレイアウト ============ */
.contact-page-body {
  padding: clamp(64px, 9vw, 110px) 32px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft, #f8fafc) 100%);
}
.contact-page-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-page-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ Contact: フォーム ============ */
.contact-form {
  background: #fff;
  border: 1px solid var(--line, rgba(15,23,42,0.10));
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md, 0 4px 12px -2px rgba(15,23,42,0.08));
}
.contact-form-note {
  margin: 0 0 24px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--touch-2, #b45309);
  background: rgba(217,119,6,0.08);
  border: 1px solid rgba(217,119,6,0.25);
  border-radius: 8px;
}
.cf-field { margin-bottom: 22px; }
.cf-field > label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #0f172a);
  margin-bottom: 8px;
}
.cf-req, .cf-opt {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.cf-req { color: #b91c1c; background: rgba(220,38,38,0.10); }
.cf-opt { color: var(--ink-mute, #94a3b8); background: rgba(148,163,184,0.14); }
.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field select,
.cf-field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink, #0f172a);
  padding: 13px 14px;
  border: 1px solid var(--line, rgba(15,23,42,0.14));
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.cf-field textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--tech, #06b6d4);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.15);
}
.cf-field-check > label {
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-soft, #475569);
  align-items: flex-start;
}
.cf-field-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--tech, #06b6d4); }
.cf-field-check a { color: var(--tech-2, #0891b2); text-decoration: underline; }
.cf-submit { margin-top: 8px; width: 100%; justify-content: center; }

/* ============ Contact: サイドバー ============ */
.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-aside-block {
  background: var(--bg-soft, #f8fafc);
  border: 1px solid var(--line-soft, rgba(15,23,42,0.06));
  border-radius: 14px;
  padding: 24px;
}
.contact-aside-head {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink, #0f172a);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line, rgba(15,23,42,0.10));
}
.contact-aside-body { font-size: 14px; line-height: 1.9; color: var(--ink-soft, #475569); margin: 0; }
.contact-aside-body a { color: var(--tech-2, #0891b2); text-decoration: underline; word-break: break-all; }
.contact-aside-list { margin: 0; padding-left: 0; list-style: none; }
.contact-aside-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft, #475569);
  padding: 9px 0 9px 22px;
  position: relative;
  border-bottom: 1px dashed var(--line-soft, rgba(15,23,42,0.06));
}
.contact-aside-list li:last-child { border-bottom: none; }
.contact-aside-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--touch, #d97706);
}

/* ============ Privacy ============ */
.privacy-body { max-width: 820px; margin: 0 auto; }
.privacy-body > p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-soft, #475569);
  margin: 0 0 24px;
}
.privacy-chapters { margin: 0 0 28px; padding: 0; list-style: none; counter-reset: none; }
.privacy-chapters li {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink, #0f172a);
  padding: 16px 18px;
  background: var(--bg-soft, #f8fafc);
  border: 1px solid var(--line-soft, rgba(15,23,42,0.06));
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}
.privacy-chapter-num { color: var(--tech-2, #0891b2); font-weight: 800; }
.privacy-note {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-mute, #94a3b8);
  padding: 14px 16px;
  background: rgba(148,163,184,0.08);
  border-radius: 8px;
  margin: 0 0 20px;
}
.privacy-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; color: var(--ink-mute, #94a3b8); }
