<div class="cp_qa05">
<div class="cp_cat">カテゴリーなど</div>
<dl>
<dt>質問テキスト</dt>
<dd>答えテキスト</dd>
</dl>
</div>
<div class="cp_qa05">
<div class="cp_cat">カテゴリーなど</div>
<dl>
<dt>質問テキスト</dt>
<dd>答えテキスト</dd>
<dt>質問テキスト</dt>
<dd>答えテキスト</dd>
</dl>
</div>
.cp_qa05 {
display: flex;
}
.cp_qa05 .cp_cat {
position: relative;
font-weight: bold;
display: flex;
justify-content: center;
width: 40%;
height: auto;
padding: 0em;
text-align: center;
}
/*?アイコン*/
.cp_qa05 .cp_cat::before {
position: absolute;
content: '?';
line-height: 1;
font-size: 5em;
color: #ffffff;
width: 1em;
height: 1em;
background:#333333;
border-radius: 50px;
opacity: 0.1;
}
/*質問と答えテキスト*/
.cp_qa05 dl {
position: relative;
margin: 0;
line-height: 1.5;
width: 60%;
border-left: 1px solid #333333;
}
.cp_qa05 dt {
margin: 0 0 1em 3em;
}
.cp_qa05 dd {
margin: 0 0 1.5em 3em;
}
/*QAアイコン*/
.cp_qa05 dt::before,
.cp_qa05 dd::before {
font-family: serif;
font-size: 1.3em;
margin: 0 1em 0 -1.7em;
}
.cp_qa05 dt::before {
content: 'Q';
}
.cp_qa05 dd::before {
content: 'A';
}