@charset "UTF-8";
.sc-page {
  max-width: 800px;
  margin: 0 auto;
}
.sc-page * {
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .sc-page {
    padding: 0 0 60px;
  }
}

.sc-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sc-steps {
    gap: 6px;
  }
}
.sc-steps_item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 14px 20px;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0.45;
  transition: all 0.2s;
}
.sc-steps_item.is-active {
  background: #e2f0ff;
  border-color: var(--color-blue);
  opacity: 1;
}
.sc-steps_item.is-active .sc-steps_num {
  background: var(--color-blue);
}
@media (max-width: 768px) {
  .sc-steps_item {
    padding: 10px 12px;
  }
}
.sc-steps_num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  .sc-steps_label {
    font-size: 0.875rem;
  }
}
.sc-steps_sep {
  flex-shrink: 0;
  color: #94a3b8;
  font-size: 0.8125rem;
}

.sc-card {
  background: #fff;
  border: 1px solid var(--color-body);
  border-radius: 16px;
  padding: 40px 48px;
}
@media (max-width: 768px) {
  .sc-card {
    padding: 24px 20px;
  }
}

.sc-title {
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.625rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .sc-title {
    font-size: 1.3125rem;
  }
}

.sc-subtitle {
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.sc-lead {
  font-weight: 600;
  margin-bottom: 32px;
}

.sc-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.sc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.sc-req {
  display: inline-block;
  padding: 4px 6px;
  background: #dc2626;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 3px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.sc-input,
.sc-select {
  padding: 11px 14px;
  border: 1px solid var(--color-body);
  border-radius: 8px;
  background: #fff;
  width: 100%;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}
.sc-input.is-err,
.sc-select.is-err {
  border-color: #dc2626;
}

.sc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.sc-errmsg {
  display: block;
  font-size: 0.75rem;
  color: #dc2626;
  min-height: 18px;
}

.sc-check-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sc-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: #1e293b;
}
.sc-check-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #1a56db;
  cursor: pointer;
}

.sc-use {
  padding: 20px;
  background: #f8fafc;
  border-radius: 6px;
  font-weight: 600;
}
.sc-use_title {
  margin-bottom: 16px;
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.125rem;
}
.sc-use_title::before {
  content: "≪";
}
.sc-use_title::after {
  content: "≫";
}
.sc-use_head {
  margin-top: 16px;
  font-weight: 800;
}
.sc-use_list {
  font-size: 0.875rem;
}
.sc-use_list-item {
  padding-left: 1em;
  text-indent: -1em;
}
.sc-use_list-item::before {
  content: "・";
}
.sc-use_content {
  font-size: 0.875rem;
}

.sc-q-progress {
  margin-bottom: 20px;
}

.sc-q-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.sc-q-fill {
  height: 100%;
  background: #1a56db;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.sc-q-count {
  font-size: 0.8125rem;
  color: #666;
  text-align: right;
}

.sc-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 24px;
}
.sc-legend_item {
  font-size: 0.75rem;
  color: #475569;
}

.sc-qlist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.sc-qcard {
  padding: 18px 20px;
  background: #fafafa;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s;
}
.sc-qcard.is-done {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.sc-qhead {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.sc-qno {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--color-blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.sc-qtext {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.65;
  padding-top: 7px;
}

.sc-qopts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
@media (max-width: 768px) {
  .sc-qopts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sc-opt {
  display: block;
  cursor: pointer;
  position: relative;
}
.sc-opt input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.sc-opt_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 2px 6px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.15s;
  background: #fff;
  user-select: none;
}
.sc-opt:hover .sc-opt_inner {
  border-color: #93c5fd;
  background: #eff6ff;
}
input[type=radio]:checked + .sc-opt_inner {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
input[type=radio]:focus-visible + .sc-opt_inner {
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.35);
}
.sc-opt_n {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3px;
}
.sc-opt_t {
  display: block;
  font-size: 0.625rem;
  line-height: 1.3;
  color: #64748b;
  text-align: center;
}
input[type=radio]:checked + .sc-opt_inner .sc-opt_t {
  color: rgba(255, 255, 255, 0.8);
}

.sc-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px 14px;
  padding-top: 4px;
}
@media (max-width: 768px) {
  .sc-actions {
    flex-direction: column;
  }
}
.sc-actions--between {
  justify-content: space-between;
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1;
  font-family: inherit;
}
@media (max-width: 768px) {
  .sc-btn {
    padding: 11px 18px;
    font-size: 0.875rem;
  }
}
.sc-btn--primary {
  background: #1a56db;
  border-color: #1a56db;
  color: #fff;
}
@media (any-hover: hover) {
  .sc-btn--primary:not(:disabled):hover {
    background: #1e40af;
    border-color: #1e40af;
  }
}
.sc-btn--primary:disabled {
  background: #94a3b8;
  border-color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.7;
}
.sc-btn--ghost {
  background: #fff;
  border-color: #e2e8f0;
  color: #475569;
}
@media (any-hover: hover) {
  .sc-btn--ghost:hover {
    border-color: #94a3b8;
    color: #1e293b;
  }
}

/*# sourceMappingURL=page-selfcheck.css.map */
