body {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  background: #f4f6f8;
  margin: 0;
}

.container {
  max-width: 600px;
  margin: auto;
  padding: 30px 20px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

.question {
  margin-bottom: 25px;
}

.question p {
  margin-bottom: 10px;
  font-weight: bold;
}

.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

button {
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  background: #e0e3e7;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #d5d9dd;
}

.selected {
  background: #333;
  color: white;
}

.main-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: #4a6cf7;
  color: white;
  font-size: 16px;
  border-radius: 10px;
}

/* スクショ用 */

#result-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

#result-card {
  width: 320px;
  padding: 10px;
  background: white;
  border-radius: 16px;
}

#type {
  margin: 15px 0;
  font-size: 22px;
}

.label {
  font-size: 12px;
  color: #888;
}

.hint {
  margin-top: 15px;
  font-size: 11px;
  color: #aaa;
}

.close-btn {
  margin-top: 15px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #ccc;
}