/* ============================================================
   Brighture Service — 共通UIコンポーネント
   他のserviceページで使いたい場合:
     <link rel="stylesheet" href="css/components.css">
   ============================================================ */

/* Pill Badge
   ---------------------------------------------------------- */
.pill-badge {
    display: inline-block;
    background: #fff;
    border: 1.5px solid #333;
    color: #333;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    line-height: 1.5;
    text-align: center;
}


/*** ステップバーデザイン3 ***/
.step-wrap3 {
    counter-reset: count;
    margin: 2em 0;
    position: relative;
}
.step-content3 {
    padding: 1.3em 0 .3em 1em;
    margin: 0 0 1em 1em;
    position: relative;
}
.step-content3::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -10px;
    border-style: solid;
    border-width: 17px 8px 0 8px;
    border-color: #ddd transparent transparent transparent;
}
.step-content3::after {
    content: "";
    display: block;
    height: calc(100% - 36px);
    border-left: dashed 4px #ddd;
    position: absolute;
    top: 16px;
    left: -4px;
}
.step-label3 {
    padding: 3px 20px 3px 15px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: -18px;
    left: -20px;
    background: #06BBCC;
    border-radius: 20px;
    z-index: 1;
}
.step-label3::after {
    content: none;
}
.step-label3--blue {
    background: #0a4060;
}
.step-title3 {
    font-weight: bold;
    font-size: 120%;
}
.step-body3 {
    margin-top: .5em;
    padding: 3px 0 calc(1em + 3px);
    font-size: 15px;
}
.step-wrap3 > :last-child {
    box-shadow: none;
}
.step-wrap3 > :last-child::before,
.step-wrap3 > :last-of-type::after {
    display: none;
}
/*** ステップバーデザイン3 ***/
