/* 事業紹介用CSS */

.index__item {
    display: flex;
    flex-direction: column;
}

.media__thumb {
    transition: .3s;
}

.media__body {
    font-size: 14px;
    padding: 10px;
}

.media__body p:first-child {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .index__item {
        flex-direction: row;
    }

    .media__thumb {
        width: 30%;
        flex-shrink: 0;
    }

    .media__body {
        width: calc(70% - 20px);
    }
}
