ステップバー
HTML ▼
<div class="step_content">
<div class="step_barwrap">
<div class="step_title">
<div class="step_circle"><span>STEP<br>1</span></div>
<p class="title">テキスト1</p>
</div>
<div class="step_txt">
<span class="txt_marker">サブタイトル</span>
<span class="txt">テキストテキストテキストテキストテキストテキスト</span>
</div>
<span class="step_line"></span>
</div>
<div class="step_barwrap">
<div class="step_title">
<div class="step_circle"><span>STEP<br>2</span></div>
<p class="title">テキスト2</p>
</div>
<div class="step_txt">
<span class="txt_marker">サブタイトル</span>
<span class="txt">テキストテキストテキストテキストテキストテキスト</span>
</div>
<span class="step_line"></span>
</div>
<div class="step_barwrap">
<div class="step_title">
<div class="step_circle"><span>STEP<br>3</span></div>
<p class="title">テキスト3</p>
</div>
<div class="step_txt">
<span class="txt_marker">サブタイトル</span>
<span class="txt">テキストテキストテキストテキストテキストテキスト</span>
</div>
<span class="step_line"></span>
</div>
</div>
CSS▼
.step_content {
margin: 0 auto;
width: 80%;
}
.step_content .step_barwrap {
margin: 2em 0;
position: relative;
}
.step_content .step_barwrap .step_title {
display: inline-flex;
align-items: center;
}
.step_content .step_barwrap .step_title .step_circle {
display: inline-block;
width: 3em;
height: 3em;
content: "";
border-radius: 50%;
background: rgb(180,58,154);
background: linear-gradient(90deg, rgb(177 115 164) 0%, rgb(255 73 158) 50%, rgba(252,110,69,1) 100%);
color: #fff;
text-align: center;
}
.step_content .step_barwrap .step_title .step_circle span {
display: inline-block;
line-height: 1.2em;
font-size: 0.8em;
font-weight: bold;
position: relative;
top: 0.9em;
}
.step_content .step_barwrap .step_title .title {
margin: 0.5em;
font-weight: bold;
font-size: 1.2em;
color: rgb(255 73 158);
}
.step_content .step_barwrap .step_txt {
padding-left: 3.5em;
}
.step_content .step_barwrap .step_txt .txt {
font-size: 0.9em;
display: block;
}
.step_content .step_barwrap .step_line {
width: 1px;
height: calc(100% + 1em);
background-color: #cbcbcb;
position: absolute;
top: 1em;
left: 1.5em;
z-index: -1;
}
.step_barwrap:last-of-type .step_line:last-of-type {
display: none;
}
/* txt_marker */
.txt_marker{
padding: 0 3px;
font-size: 19px;
font-style: italic;
font-family: "MS Pゴシック";
background-color: rgb(255 73 158);
color: #fff;
}
@media screen and (max-width: 960px) {
.step_content {
width: 90%;
}
}