/* --- timinify-style.css からの共通スタイル --- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #1d1d1f;
  background: #ffffff;
  line-height: 1.7;
}

/* Bootstrap theme overrides */
:root,
[data-bs-theme="light"] {
  --bs-font-sans-serif: "Noto Sans JP", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-color: #1d1d1f;
  --bs-body-bg: #ffffff;

  --bs-primary: #0077ed;
  --bs-primary-rgb: 0, 119, 237;
  --bs-link-color: var(--bs-primary);
  --bs-link-hover-color: #006edb;

  --bs-secondary-color: #86868b;
  --bs-secondary-color-rgb: 134, 134, 139;
  --bs-border-color: #e2e8f0;
}

/* Header & Navbar */
.navbar-glass {
  background-color: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.brand-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--bs-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-12 {
  width: 0.75rem;
  height: 0.75rem;
}
.icon-16 {
  width: 1rem;
  height: 1rem;
}

body.with-fixed-navbar {
  padding-top: 4.5rem;
}

/* --- ページ独自のスタイル --- */
.content-container {
  max-width: 54rem; /* 864px */
  margin: 0 auto;
}

.content-card {
  background-color: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05),
    0 1px 2px -1px rgba(0, 0, 0, 0.01);
  padding: 2rem;
}

@media (min-width: 768px) {
  .content-card {
    padding: 3rem;
  }
}

/* 特定商取引法テーブルのスタイル */
.tokusho-table th {
  width: 30%;
  background-color: #f8fafc;
  font-weight: 700;
  vertical-align: middle;
  color: #334155;
}

.tokusho-table td {
  vertical-align: middle;
  color: #334155;
}

@media (max-width: 576px) {
  .tokusho-table th,
  .tokusho-table td {
    display: block;
    width: 100%;
  }
  .tokusho-table th {
    padding-bottom: 0.25rem;
    border-bottom: none;
  }
  .tokusho-table td {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
}
