html {
  font-family: monospace;
}

body {
  font-family: sans-serif;
  background: #f5f5f5;
  color: #333;
  margin: 0;
}

.indent_style {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: unset;
}

* {
  box-sizing: border-box;
}

main {
  display: flex;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.card h2 {
  color: #2C2C54;
  margin: 0 0 8px;
}
.card .subtitle {
  color: #888;
  font-size: 13px;
  margin-bottom: 32px;
}

.step-bar {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
}

.step {
  flex: 1;
  text-align: center;
  font-size: 12px;
  padding: 8px 4px;
  background: #f0f0f0;
  color: #999;
}
.step:first-child {
  border-radius: 6px 0 0 6px;
}
.step:last-child {
  border-radius: 0 6px 6px 0;
}
.step.active {
  background: #2C2C54;
  color: #fff;
  font-weight: bold;
}
.step.done {
  background: #a6e3a1;
  color: #1e3a1e;
  font-weight: bold;
}

.card-id-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: #1d4ed8;
  margin-bottom: 16px;
}

.notice {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  color: #92400e;
  margin-bottom: 20px;
}

.error-box {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 16px;
  color: #dc2626;
  font-size: 14px;
  margin-bottom: 20px;
}

.info-list, .confirm-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.info-item, .confirm-item {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 4px;
  align-items: flex-start;
  gap: 12px;
}
.info-item:first-child, .confirm-item:first-child {
  border-top: 1px solid #f0f0f0;
}

.info-label, .confirm-label {
  font-size: 12px;
  color: #888;
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}

.info-value, .confirm-value {
  font-size: 14px;
  color: #333;
  word-break: break-all;
  flex: 1;
}

.btn-row {
  display: flex;
  gap: 12px;
}

.btn-submit {
  background: #2C2C54;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  display: block;
}
.btn-submit:hover {
  background: #3d3d6b;
}

.btn-back {
  flex: 1;
  background: #f5f5f5;
  color: #555;
  border: 1px solid #d1d5db;
  padding: 14px 8px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-back:hover {
  background: #e5e7eb;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #555;
  margin-bottom: 6px;
}
label .required {
  color: #dc2626;
  margin-left: 4px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  background: #fafafa;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=date]:focus,
select:focus {
  outline: none;
  border-color: #2C2C54;
  background: #fff;
}

input[readonly] {
  background: #f0f0f0;
  color: #555;
  cursor: default;
}

.field-error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
}

.has-error input,
.has-error select {
  border-color: #dc2626;
}

.policy-box {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 12px;
  color: #666;
  max-height: 120px;
  overflow-y: auto;
  margin-bottom: 8px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.icon-wrap {
  width: 72px;
  height: 72px;
  background: #a6e3a1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
}

.mail-note {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: #166534;
  line-height: 1.8;
}
.mail-note strong {
  display: block;
  font-size: 14px;
  word-break: break-all;
}

.direct-wrap {
  max-width: 480px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: sans-serif;
}

.direct-header {
  text-align: center;
  margin-bottom: 24px;
}
.direct-header h1 {
  font-size: 20px;
  color: #333;
  margin-bottom: 8px;
}
.direct-header p {
  font-size: 13px;
  color: #888;
}

.direct-error {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  color: #cc0000;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 20px;
}

.direct-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
}
.direct-card label {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
  font-weight: bold;
}
.direct-card input[type=text] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  font-family: monospace;
  text-align: center;
  margin-bottom: 6px;
}
.direct-card .hint {
  font-size: 11px;
  color: #999;
  margin-top: 6px;
}

.btn-direct-submit {
  width: 100%;
  background: #2C2C54;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
}
.btn-direct-submit:hover {
  background: #3d3d6b;
}

.direct-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  text-align: left;
}
.direct-box p {
  font-size: 13px;
  color: #92400e;
  margin: 0 0 10px;
  font-weight: bold;
}

.btn-direct {
  display: block;
  background: #2C2C54;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 8px;
}
.btn-direct:hover {
  background: #3d3d6b;
}

.direct-url {
  font-size: 11px;
  color: #6b7280;
  word-break: break-all;
}/*# sourceMappingURL=app.css.map */