@charset "UTF-8";

:root {
  --brand: #7F33A5;
  --brand-soft: #F3ECF7;
  --page-bg: #f4f2f6;
  --card-bg: #fff;
  --border: #eee;
  --text: #333;
  --text-secondary: #888;
  --label-blue: #6FA3D8;
  --label-blue-bg: #E9F1FA;
  --footer-bg: #F7F5EE;
  --error-bg: #FBEAEA;
  --error-text: #B23C3C;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 40px 16px;
  background: var(--page-bg);
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", "MS PGothic", sans-serif;
  color: var(--text);
}

.member-card {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--card-bg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.member-card .header-bar {
  background: var(--card-bg);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.member-card .header-bar .logo {
  font-weight: bold;
  color: var(--brand);
  font-size: 16px;
  text-decoration: none;
}

.member-card .body-pad {
  padding: 36px 28px;
  text-align: center;
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
}
.icon-circle.c-brand { background: var(--brand-soft); color: var(--brand); }
.icon-circle.c-success { background: #EAF3DE; color: #639922; }
.icon-circle.c-warning { background: #FAEEDA; color: #854F0B; }
.icon-circle.c-muted { background: #F1EFE8; color: #5F5E5A; }

.member-title { font-size: 18px; font-weight: bold; color: var(--text); margin: 0 0 10px; }
.member-desc { font-size: 13px; color: #666; line-height: 1.7; margin: 0 0 24px; }
.member-desc b { color: var(--brand); }

.error-banner {
  background: var(--error-bg);
  color: var(--error-text);
  font-size: 12.5px;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  text-align: left;
}

.field-label { text-align: left; font-size: 12px; color: #555; margin-bottom: 6px; }
.field-input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  margin-bottom: 18px;
  font-family: inherit;
}
.field-input.code-input {
  text-align: center;
  font-size: 18px;
  letter-spacing: 8px;
}

.btn-primary {
  display: block;
  width: 100%;
  background: var(--brand);
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 22px;
  padding: 13px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  margin-bottom: 12px;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  display: block;
  width: 100%;
  border: 1px solid var(--brand-soft);
  color: var(--brand);
  background: var(--brand-soft);
  text-align: center;
  border-radius: 22px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-bottom: 12px;
  text-decoration: none;
  box-sizing: border-box;
}
.btn-secondary:hover { opacity: 0.85; }

.link-muted {
  display: inline-block;
  font-size: 12.5px;
  color: #999;
  text-decoration: none;
  margin-top: 4px;
}
.link-brand {
  display: inline-block;
  font-size: 12.5px;
  color: var(--brand);
  text-decoration: none;
  margin-top: 4px;
}
.section-note {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin: 20px 0 10px;
}

.info-card {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.info-row { display: flex; border-bottom: 1px solid var(--border); font-size: 13px; }
.info-row:last-child { border-bottom: none; }
.info-row .k {
  width: 100px;
  flex-shrink: 0;
  padding: 12px 10px 12px 16px;
  color: var(--text-secondary);
  background: var(--label-blue-bg);
}
.info-row .v { padding: 12px 16px 12px 10px; color: var(--text); word-break: break-all; }

.notice-card {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.notice-card .notice-header {
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 14px;
  font-weight: bold;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.notice-card .notice-icon { flex-shrink: 0; }
.notice-card .notice-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}
.notice-card .notice-item:first-of-type { border-top: none; }
.notice-card .notice-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  margin-top: 7px;
}
.notice-card .notice-text { min-width: 0; }
.notice-card .notice-item a { color: var(--brand); }

.member-card .footer-bar {
  background: var(--footer-bg);
  padding: 12px;
  text-align: center;
  font-size: 10.5px;
  color: #999;
}
