.company_info {
    display: grid;
    gap: 5px;

}

.company_info>div {
    width: 95%;
    margin: 0 auto;
    text-align: center;
}

.card_bg {
    width: 95%;
    max-width: 300px;
    height: 120px;
    margin: 0 auto;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(247, 0, 52, 0.85) 0%, rgba(180, 0, 30, 0.75) 100%);
    position: relative;
}

.card_bg:hover {
    background: linear-gradient(135deg, rgba(255, 81, 119, 0.85) 0%, rgba(247, 0, 52, 0.85) 100%);
}

.card_cover {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}


.card_title {
    color: #ffffff;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 1em;
    padding-bottom: 0.5rem;
}

.card_arrow {
    border-radius: 100%;
    border: 1.5px solid #ffffff;
    color: #ffffff;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card_en {
    text-align: left;
    font-size: 0.9rem;
    letter-spacing: 0.3rem;
}

.card_jp {
    text-align: left;
    font-weight: bold;
    font-size: 1.3rem;
}

.btn1 {
    width: 100%;
    max-width: 250px;
    height: 80px;
    background-color: #f70034;
    border: 1px solid #f70034;
    color: #ffffff;
    font-size: 1.15rem;
}

.btn1:hover {
    background-color: #ffffff;
    color: #f70034;
}



@media screen and (max-width: 769px) {
    .company_info {
        grid-template-columns: 100%;
    }

}

@media screen and (min-width: 769px) {
    .company_info {
        grid-template-columns: 1fr 1fr;
    }

}