@charset "utf-8";

.pict-kobetsu {
    max-width: 200px;
    border-radius: 50%;
    border: 2px solid var(--link-hover-iro);
}
.container {
    display:flex;
    text-align: center;
    justify-content: space-evenly;
    margin-top: 30px;
    flex-wrap: wrap;
}

.item {
    width: 200px;
}
.item h4 {
    font-size: 24px;
    &::before { content: none;}
}

/* スマホ用 */
@media screen and (max-width:480px){
    .container {
        flex-direction: row;
    }
    .item {
        margin: 15px auto;
        width: 50%;
    }
    .pict-kobetsu {
        width: 80%;
    }
    .item p {
        font-size: 12px;
    }
    .item h4 {
        font-size: 22px;
    }
    .item small {
        font-size: 10px;
    }
}

.stmi{
    margin-top: 30px;
}