.content{
	padding-top:30px;
}

h3{
	text-align: center;
	margin-bottom: 40px;
}


dl {
  margin: 0 auto 50px;
  padding: 0;
  width:100%;
  max-width:680px;
}

dt {
  position: relative; /* 絶対位置の基準にする */
  padding-left: 40px; /* アイコンとテキストの間に余白を取る */
  margin: 20px 0;
  font-weight: 500; /* 質問を太字に */
  font-size: 1.1em; /* フォントサイズを少し大きく */
  cursor: pointer; /* クリックできることを示す */
}

dt::before {
  content: 'Q'; /* "Q"を挿入 */
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #4CAF50; /* グリーンの背景 */
  color: white;
  font-weight: bold;
  border-radius: 50%; /* 丸い形にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
}

dd {
  position: relative; /* 絶対位置の基準にする */
  padding-left: 40px; /* アイコンとテキストの間に余白を取る */
  margin: 10px 0 20px;
  line-height: 1.6; /* 行間を広げる */
  font-size: 1em; /* フォントサイズ */
  display: none;
}

dd.active{
	display:block;
}

dd::before {
  content: 'A'; /* "A"を挿入 */
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #2196F3; /* ブルーの背景 */
  color: white;
  font-weight: bold;
  border-radius: 50%; /* 丸い形にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
}

span{
  color:red;
}