@charset "UTF-8";

.company_information_container{
    width: 100%;
    background-color:white
}

.company_information_block{
    width: 100%;
}.company_information_block > img{
    margin: auto;
    height: auto;
    display: block;
    padding: 2.5em 0;
}

.information_msg{
    width: fit-content;
    margin: auto;
    color: black;
}

.information_copy_right{
    width: 100%;
    height: fit-content;
    padding: 1.5em 0;
    background: linear-gradient(to right, rgb(124, 19, 38), rgb(177, 43, 70));
    overflow: hidden;
    color: white;
    text-align: center;
}

.company_information_content{
    width: 100%;
    height: fit-content;
    padding-bottom: 2em;
    text-align: center;
    font-weight: bold;
}.company_information_content > a{
    text-decoration: none;
    color: black;
}

/*----------- pc -----------*/
@media (min-width: 768px) {
    .company_information_container_bottom_margin{
        margin-bottom: 107px;
    }

    .company_information_block > img{
        width: 15em;
    }

    .company_information_content{
        font-size: 1em;
    }

    .information_msg{
        font-size: 1.5em;
    }

/*----------- sp -----------*/
}@media (max-width: 767px) {
    .company_information_container_bottom_margin{
        margin-bottom: 96px;
    }

    .company_information_block > img{
        width: 12em;
    }
    .company_information_content{
        font-size: 1em;
    }

    .information_msg{
        font-size: 1.2em;
    }

}