/* 外部ヘッダー非表示 */
.search-container {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
}
.header__widgets {
    display: none !important;
}

:root {
  --confirm-bg: #f5f5f5;
  --confirm-surface: #ffffff;
  --confirm-text: #222;
  --confirm-muted: #6b7280;
  --confirm-brand: #000000;
  --confirm-brand-weak: #ebebeb;
  --confirm-line: #e5e7eb;
  --confirm-radius: 4px;
  --confirm-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--confirm-text);
  background: var(--confirm-bg);
  line-height: 1.65;
}

/* ===== HEADER ===== */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
}

.header__logo a img {
  width: 74px;
}

/* ===== MAIN WRAP ===== */
.wrap {
  max-width: 720px;
  margin: 32px auto;
  padding: 0 24px;
}

/* ===== 見出しバー ===== */
.head {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--confirm-radius) var(--confirm-radius) 0 0;
  margin-bottom: 0;
}

.head h1 {
  margin: 0;
  font-size: clamp(16px, 2.8vw, 20px);
  letter-spacing: .02em;
  font-weight: 700;
}

.head .sub {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* ===== アクションカード ===== */
.actions {
  display: grid;
  gap: 16px;
  background: var(--confirm-surface);
  border: 1px solid var(--confirm-line);
  border-top: none;
  border-radius: 0 0 var(--confirm-radius) var(--confirm-radius);
  padding: 32px 28px;
  box-shadow: var(--confirm-shadow);
}

/* ===== ボタン ===== */
.btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  transition: opacity .15s ease, background .15s ease;
  user-select: none;
  outline: none;
}

.btn:active {
  transform: translateY(1px);
}

/* プライマリ */
.btn-primary {
  color: #fff;
  background: #000000;
  border: 2px solid #000000;
}

.btn-primary:hover {
  opacity: 0.75;
  color: #fff;
}

/* アウトライン */
.btn-outline {
  color: #000000;
  background: #fff;
  border: 2px solid #000000;
}

.btn-outline:hover {
  background: var(--confirm-brand-weak);
  color: #000000;
}

/* ボタン内注記 */
.btn-note {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.75;
  text-align: center;
}

.btn-note--hidden {
  visibility: hidden;
}

/* 注意書き */
.note {
  text-align: center;
  color: var(--confirm-muted);
  font-size: .9rem;
  margin: 16px 0 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: #f8f8f8;
  border-top: 1px solid #e5e5e5;
  padding: 16px 15px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  list-style: none;
  margin: 0 0 6px 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0;
}

.footer-links li {
  padding: 0 8px;
  border-left: 1px solid #ADADAD;
}

.footer-links li:first-child {
  border-left: none;
  padding-left: 0;
}

.footer-links li a {
  color: #0645ad;
  font-size: 12px;
  text-decoration: none;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 12px;
  color: #777777;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .head h1 {
    font-size: 1.1em;
  }

  .head .sub {
    font-size: .85em;
  }

  .btn {
    font-size: .9em;
    padding: 13px 16px;
  }

  .actions {
    padding: 24px 18px;
  }
}
