@charset "UTF-8";

/* ========================================
   userentry.css
   トリマックス（板取君3）法的ページ共通スタイル
   対象: privacy.html / license.html
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', 'Lato', sans-serif;
  background: #f4f6fb;
  color: #3a3a3a;
  font-size: 10px;
  line-height: 1.6;
}

a { color: inherit; }

/* ── ヘッダー ── */
.pp-header {
  background: linear-gradient(135deg, #2E5E97 0%, #1d4a7e 100%);
  padding: 48px 0 40px;
  text-align: center;
}
.pp-header h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.pp-header .updated {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .6);
}
.pp-header .scope-badge {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 1.2rem;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .3);
}

/* ── レイアウト ── */
.inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.pp-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

/* ── リード文 ── */
.pp-lead {
  font-size: 1.5rem;
  color: #5a6070;
  line-height: 1.9;
  margin-bottom: 48px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #2E5E97;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

/* ── セクション ── */
.pp-section {
  margin-bottom: 48px;
}
.pp-section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #2E5E97;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #dde2ee;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pp-section h2 .num {
  background: #2E5E97;
  color: #fff;
  font-size: 1.15rem;
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}
.pp-section p {
  font-size: 1.5rem;
  color: #5a6070;
  line-height: 1.9;
  margin-bottom: 12px;
}
.pp-section ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 12px;
}
.pp-section ul li {
  font-size: 1.5rem;
  color: #5a6070;
  line-height: 1.9;
  margin-bottom: 4px;
}
.pp-section ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
}
.pp-section ol li {
  font-size: 1.5rem;
  color: #5a6070;
  line-height: 1.9;
  margin-bottom: 6px;
  padding-left: 2em;
  text-indent: -2em;
}
.pp-section .indent {
  margin-left: 1.5em;
}

/* ── 注意ボックス ── */
.pp-note {
  background: #fff8e1;
  border-left: 4px solid #f0b429;
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 14px;
  font-size: 1.4rem;
  color: #7a6020;
  line-height: 1.8;
}

/* ── 関連リンク ── */
.pp-related-link {
  margin-top: 24px;
  padding: 16px 20px;
  background: #f4f6fb;
  border-radius: 8px;
  font-size: 1.45rem;
  color: #5a6070;
}
.pp-related-link a {
  color: #2E5E97;
  text-decoration: underline;
  font-weight: 700;
}

/* ── お問い合わせボックス ── */
.pp-contact-box {
  background: #f4f6fb;
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 16px;
}
.pp-contact-box dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 6px 16px;
  font-size: 1.45rem;
}
.pp-contact-box dt {
  font-weight: 700;
  color: #3a3a3a;
}
.pp-contact-box dd {
  color: #5a6070;
}
.pp-contact-box a {
  color: #2E5E97;
  text-decoration: underline;
}

/* ── 料金テーブル（license.html用） ── */
.pp-price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 1.45rem;
}
.pp-price-table th,
.pp-price-table td {
  border: 1px solid #dde2ee;
  padding: 10px 16px;
  text-align: left;
  color: #5a6070;
}
.pp-price-table th {
  background: #f4f6fb;
  font-weight: 700;
  color: #3a3a3a;
  width: 35%;
}

/* ── フッターナビ ── */
.pp-footer-nav {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid #dde2ee;
  margin-top: 16px;
}
.pp-footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2E5E97;
  font-weight: 700;
  font-size: 1.45rem;
  text-decoration: underline;
}

/* ── サイトフッター ── */
.pp-site-footer {
  background: #1d2a3a;
  padding: 24px 0;
}
.pp-site-footer .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.pp-site-footer .copyright {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .5);
}
.pp-site-footer .policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.pp-site-footer .policy-links a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .6);
  text-decoration: underline;
}
.pp-site-footer .policy-links a:hover {
  color: #fff;
}

/* ========================================
   レスポンシブ（スマートフォン）
   750px 時点で 1rem = 10px になる vw スケール（KB と同方式）
   ======================================== */
@media only screen and (max-width: 750px) {
  html { font-size: 1.3333333333333335vw; }

  .pp-header .updated    { font-size: 1.9rem; }
  .pp-header .scope-badge { font-size: 1.9rem; }

  .pp-lead               { font-size: 2.4rem; }

  .pp-section h2         { font-size: 2.7rem; }
  .pp-section h2 .num    { font-size: 1.8rem; }
  .pp-section p,
  .pp-section ul li,
  .pp-section ol li      { font-size: 2.4rem; }

  .pp-note               { font-size: 2.2rem; }
  .pp-related-link       { font-size: 2.3rem; }

  .pp-contact-box dl     { grid-template-columns: 1fr; gap: 2px 0; }
  .pp-contact-box dt,
  .pp-contact-box dd,
  .pp-contact-box a      { font-size: 2.3rem; }

  .pp-price-table th,
  .pp-price-table td     { font-size: 2.2rem; padding: 8px 12px; }

  .pp-footer-nav a       { font-size: 2.3rem; }

  .pp-site-footer .copyright    { font-size: 1.9rem; }
  .pp-site-footer .policy-links a { font-size: 1.9rem; }
}

/* ========================================
   登録ページ共通スタイル
   userentryTemp.aspx / userentry.aspx / userentryTempComplete.aspx
   ======================================== */

/* ── レイアウト ── */
.kintai-reg-wrap {
  min-height: 100vh;
  background: #f4f7fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 16px 48px;
}

.kintai-reg-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(42,113,185,0.10);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
}

/* ── カードヘッダー ── */
.kintai-reg-head {
  background: linear-gradient(135deg, #2a71b9 0%, #1d5290 100%);
  padding: 28px 32px 24px;
  color: white;
}
.kintai-reg-head h1 {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.kintai-reg-head p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
  margin: 0;
}
.kintai-reg-badge {
  display: inline-block;
  background: #f98a24;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

/* ── ステップインジケーター ── */
.kintai-steps {
  display: flex;
  align-items: center;
  padding: 20px 32px 0;
}
.kintai-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.kintai-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d8e3f0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  color: #5a6a7e;
}
.kintai-step.done .kintai-step-circle {
  background: #e8f4eb;
  border-color: #2ecc71;
  color: #2ecc71;
}
.kintai-step.active .kintai-step-circle {
  background: #2a71b9;
  border-color: #2a71b9;
  color: white;
  box-shadow: 0 0 0 4px rgba(42,113,185,0.15);
}
.kintai-step-label {
  font-size: 11px;
  color: #5a6a7e;
  margin-top: 6px;
  text-align: center;
  white-space: nowrap;
}
.kintai-step.done   .kintai-step-label { color: #2ecc71; }
.kintai-step.active .kintai-step-label { color: #2a71b9; font-weight: bold; }
.kintai-step-line {
  flex: 1;
  height: 2px;
  background: #d8e3f0;
  margin-bottom: 20px;
  max-width: 60px;
}

/* ── カードボディ ── */
.kintai-reg-body {
  padding: 24px 32px 32px;
}

/* ── フォーム ── */
.kintai-form-group { margin-bottom: 18px; }
.kintai-form-label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1a1a2e;
}
.kintai-form-label .req {
  color: #e74c3c;
  font-size: 12px;
  margin-left: 4px;
  font-weight: normal;
}
.kintai-form-hint {
  font-size: 12px;
  color: #5a6a7e;
  margin-bottom: 8px;
  line-height: 1.5;
}
.kintai-divider {
  border: none;
  border-top: 1px solid #d8e3f0;
  margin: 4px 0 20px;
}
.kintai-reg-body .form-control.kintai_txt { width: 100%; }

/* ── 同意セクション ── */
.kintai-consent-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a2e;
}
.kintai-consent-desc {
  font-size: 13px;
  color: #5a6a7e;
  line-height: 1.6;
  margin-bottom: 16px;
}
.kintai-consent-item {
  border: 1.5px solid #d8e3f0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fafcff;
  transition: border-color 0.2s, background 0.2s, opacity 0.2s;
}
.kintai-consent-item.pending { opacity: 0.6; }
.kintai-consent-item.checked {
  border-color: #2a71b9;
  background: rgba(42,113,185,0.04);
  opacity: 1;
}
.kintai-consent-cb {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #2a71b9;
  cursor: pointer;
}
.kintai-consent-cb:disabled { cursor: not-allowed; }
.kintai-consent-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #1a1a2e;
}
.kintai-consent-link {
  color: #2a71b9;
  font-weight: bold;
  text-decoration: underline;
}
.kintai-consent-link:hover { color: #1d5290; }
.kintai-consent-note {
  font-size: 11px;
  color: #5a6a7e;
  margin-top: 4px;
}

/* ── 業種選択 ── */
.kintai-gyosyu-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* ── アンケート ── */
.kintai-enquete-select {
  width: 100%;
  background-color: #FFFFC6;
}

/* ── 送信ボタン ── */
.kintai-submit-btn {
  width: 100%;
  height: 52px;
  background: #f98a24;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 3px 12px rgba(249,138,36,0.35);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.kintai-submit-btn:hover:not(:disabled) {
  background: #e07210;
  box-shadow: 0 4px 16px rgba(249,138,36,0.45);
}
.kintai-submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── 注意書き ── */
.kintai-notice {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 16px;
  font-size: 12px;
  color: #5a6a7e;
  line-height: 1.7;
  border-left: 3px solid #d8e3f0;
}

/* ── フッター ── */
.kintai-footer-txt {
  text-align: center;
  padding: 16px;
  font-size: 12px;
  color: #5a6a7e;
  margin-top: 8px;
}

/* ── 完了ポップアップ ── */
.kintai-popup-card {
  background: white;
  border-radius: 14px;
  padding: 32px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.kintai-popup-icon { font-size: 48px; margin-bottom: 12px; }
.kintai-popup-card h2 { font-size: 18px; color: #1a1a2e; margin-bottom: 12px; }
.kintai-popup-card p  { font-size: 14px; color: #5a6a7e; line-height: 1.7; margin-bottom: 20px; }

/* ── 登録ページ SP ── */
@media (max-width: 480px) {
  .kintai-reg-wrap    { padding: 16px 12px 40px; }
  .kintai-reg-head    { padding: 20px 20px 18px; }
  .kintai-reg-head h1 { font-size: 17px; }
  .kintai-reg-body    { padding: 20px 20px 28px; }
  .kintai-steps       { padding: 16px 20px 0; }
  .kintai-submit-btn  { font-size: 15px; height: 48px; }
  .kintai-step-label  { font-size: 10px; }
}
