@charset "utf-8";

/*=====================================
*見出し
=======================================*/
:is(h2,h3,h4,h5).hd01{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc((13 / 28) * 1.0em);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: calc((43 / 28) * 1.0em);
}

:is(h2,h3,h4,h5).hd01::before,
:is(h2,h3,h4,h5).hd01::after{
    content: "";
    display: block;
    width: 1.0em;
    height:calc((5 / 28) * 1.0em);
    border-radius: 10px;
    background-color: #555;
}

/*tb*/
@media screen and (max-width:1024px){
    :is(h2,h3,h4,h5).hd01{
        font-size: 22px;
    }
}

@media screen and (max-width:599px) {
    :is(h2,h3,h4,h5).hd01{
        font-size: 18px;
    }   
}