.survey-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Hiragino Sans", sans-serif;
}
textarea {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.survey-submit {
  margin-top: 30px;
  padding: 10px 25px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.survey-submit:hover {
  background: #005a87;
}
.survey-results {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  margin-top: 50px;
}
.survey-results h3 {
  margin-top: 20px;
}
.survey-reset {
  margin-top: 30px;
  background: #dc3545;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 25px;
  cursor: pointer;
}
.survey-reset:hover {
  background: #b02a37;
}
.reset-done {
  color: #dc3545;
  font-weight: bold;
  margin-top: 15px;
}
.survey-restricted {
  color: #999;
  font-style: italic;
  margin-top: 20px;
}

.thanks-text a {
 display: flex;                     /* 日付とタイトルを横並び */
  gap: 1em;                           /* 間隔をあける */
  padding: 10px 15px;
  text-decoration: none;              /* 下線を消す */
  color: #00a2ff;
  border-bottom: 1px solid #ddd;      /* 区切り線 */
  transition: background 0.3s, color 0.3s;
}

.thanks-text a:hover {
 background: #f5f5f5;
  color: #0095da; /* WordPressっぽい青 */
}