@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

body {
  font-family: 'Noto Sans JP', sans-serif;
}
.wireframe-box {
  background-color: #f3f4f6;
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: bold;
}
.mock-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  background-color: #cbd5e1;
}
.footer-link:hover {
  text-decoration: underline;
  color: #0369a1;
}
.text-shadow-strong {
  text-shadow: 2px 2px 0px #004488;
}
.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e3a8a; /* blue-900 */
  border-bottom: 4px solid #bfdbfe; /* blue-200 */
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
.case-table th {
  width: 30%;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  padding: 8px 12px;
  font-size: 0.75rem;
  color: #475569;
}
.case-table td {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 8px 12px;
  font-size: 0.75rem;
  color: #1e293b;
}
.full-window {
  width: 100vw;
  transform: translateX(calc((-100vw + 1180px) / 2));
}
@media (max-width: 767px) {
  .full-window {
    transform: translateX(-16px);
  }
}