#area_precheck {
  margin: 24px auto;
  font-family: 'Segoe UI', 'Meiryo', sans-serif;
  background: #f7f7f8;
  color: #24292f;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(8,16,32,0.10);
  padding: 18px 0 16px 0;
}
#area_precheck .area_precheck_title {
	margin: 0 1em 2em 2em;
}

#area_precheck .apc-header,
#area_precheck .apc-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 18px 10px 21px;
  background: none;
}
#area_precheck .apc-footer { padding: 10px 18px 0 18px; }
#area_precheck .apc-checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  gap: 8px;
  user-select: none;
  width: 30%;
}
#area_precheck .apc-list {
  list-style: none;
  margin: 0;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#area_precheck .apc-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid #e3e6ea;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
#area_precheck .apc-list-item:hover {
  background: #f2f7fb;
  border-color: #aad6ff;
}
#area_precheck .apc-link {
  color: #2979ff;
  font-size: 12px;
  text-decoration: none;
  word-break: break-all;
  margin-left: 20px;
  opacity: 0.92;
  transition: color 0.2s;
  width: 70%;
}
#area_precheck .apc-link:hover {
  color: #175bb6;
  text-decoration: underline;
}
#area_precheck input[type="checkbox"] {
  accent-color: #3498ff;
  width: 16px; height: 16px;
}
#area_precheck input[type="checkbox"]:focus {
  outline: 1.5px solid #3498ff;
}
#area_precheck input[type="hidden"] {
  display: none;
}
