/* 代表挨拶 */
#comment {
    background-color: #fcfcfc;

}
.comment {
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: column;
}
.comment-text {
    text-align: left;
    /* max-width: 650px;
    width: 70%; */
}
.comment-img {
    max-width: 300px;
    margin: 0 0 0 auto;
    /* width: 30%; */
}
/* 会社概要 */
#company .inner {
    padding: 0 0 100px 0;
}
.company-contents {
    max-width: 700px;
    margin: 50px auto;
    
    box-sizing: border-box;
    
    border-radius: 30px;
}
.company-box {
    margin: 50px 0;
}
.table {
    flex-wrap: wrap;
    width: 100%;

}
.table dt {
    width: 20%;
}
.table dd {
    width: 80%;
    margin: 0;
    font-size: 20px;

}
.table dt, .table dd {
    padding: 0 0 15px 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgb(99,186,171);
    box-sizing: border-box;
}
/*=====
レスポンシブ
=====  */
@media screen and ( max-width:1024px) {
    /* 代表挨拶 */
    /* .comment {
        align-items: center;
    }
    .comment-text, .comment-img {
        width: 100%;
    } */
    .comment-img {
        margin: 0;
    }
    /* 会社概要 */
    #company .inner {
        padding: 0 5%;
    }
    .table dt {
        width: 50%;
        border: none;
        margin: 0;
    }
    .table dd {
        width: 100%;
    }
}