/*
Theme Name: Area Select Theme
Author: MAKI
Version: 1.0
*/

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #f7f7f7;
  margin: 0;
  padding: 40px;
}

/* タイトル */
.title {
  text-align: center;
  margin-bottom: 40px;
}

.title small {
  color: #ff4d7e;
  font-weight: bold;
}

.title h2 {
  margin: 10px 0 0;
  font-size: 28px;
}

/* カード */
.box {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border: 2px solid #ff9bb3;
  border-radius: 20px;
  background: white;
}

/* 質問 */
.question {
  font-size: 20px;
  margin-bottom: 30px;
  color: #333;
}

/* ボタン */
.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 2px solid #ff4d7e;
  background: white;
  color: #ff4d7e;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #ff4d7e;
  color: white;
}

.btn.active {
  background: #ff4d7e;
  color: white;
}