@charset "UTF-8";
.company-dl-colmn{
    display: flex;
    justify-content: center;
    gap: 106px;
}
.company-dl-item{
}
.company-dl-txt {
    text-align: center;
    font-size: 16px !important;
    color: #00a5a8;
    
    /* 追記：擬似要素の位置の基準にする */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.company-dl-txt::after {
    /* 必須：これがないと擬似要素自体が表示されません */
    content: ""; 
    
    /* 背景画像の指定 */
    background-image: url(../img/company/pdf_button_cr.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    /* アイコンのサイズ（お手元の画像サイズに合わせて調整してください） */
    width: 58px;
    height: 20px;
    
    /* テキストとの間の余白 */
    margin-left: 8px;
    
    /* はみ出し防止 */
    flex-shrink: 0; 
}

.company-dl-img{
    max-width: 248px;
}

.company-dl-img img{
    margin-bottom: 12px;
}