/* 見出し */
.results_title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #1800ad;
  line-height: 1.3;
}


/* 枠全体 */
.results_box {
  background: #F0F8FF;
  padding: 20px 15px;
  margin: 0 auto;
  max-width: 800px;
  border-radius: 10px;
  border: 1px solid #CBE6FA;
}




/* リスト */
.results_list {
  list-style: none;   /* 黒丸を消す */
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}

.results_box .results_list li {
  position: relative;
  padding-left: 1.5em;
  margin: 5px 0;
  font-size: 1.35em;
  line-height: 1.3;
  color: #333;
  display: block;
  float: none;
  width: 100%;
  clear: both;
  word-break: normal;
}

/* スマホ版 */
@media screen and (max-width: 768px) {
  .results_box .results_list li {
    font-size: 0.7em;
    margin: 3px 0;
    line-height: 1.2;
  }
}



/* ✔ マーク */
.results_list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #009688;
  font-weight: bold;
  font-size: 1em;
}

/* 強調 */
.highlight {
  font-size: 1.3em;
  color: #E95B6B;
  font-weight: 900;
}


/* 補足 */
.note {
  font-size: 0.6em;
  color: #777;
  font-weight: normal;
}

