@charset "utf-8";

/*============================
代表挨拶
============================*/

/*
#message .photo {
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
}

#message .photo img {
    width: 100%;
}
*/

#message .photo {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

#message .photo img {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
}

#message .text {
    width: 700px;
}

#message .name {
    text-align: right;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

#message .name span {
    font-size: 24px;
    display: block;
}

@media only screen and (max-width: 768px) {

    #message .photo {
        width: 100%;
        height: 0;
        padding-top: 53.73%;
        margin-bottom: 20px;
    }

    #message .photo img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #message .text {
        width: 100%;
    }

    #message .name {
        font-size: 15px;
    }

    #message .name span {
        font-size: 18px;
    }

}

/*============================
会社概要
============================*/

#company .info tbody {
    display: block;
    width: 500px;
}

@media only screen and (max-width: 768px) {
    #company .info tbody {
        width: 100%;
    }

    #company .info tbody:first-of-type {
        margin-bottom: 10px;
    }
}
