/* タイトル部分 */
.hero.hero--big {
    padding-left: 0;
}

.hero__title {
    font-size: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__title span {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 16px;
}

.hero__subhead {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    letter-spacing: 0;
    color: #FFCC21;
}
.hero__subhead span {
    display: inline-block;
}

.hero__subhead span:first-child::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: #FFCC21;
    vertical-align: middle;
    margin: 0 6px;
}
/* タイトル部分 */