#comment .container, #purpose .container {
	max-width: 1080px;
}
#comment h2, #purpose h2, #company h2 {
	margin-bottom:16px;
}
#comment span, #purpose span, #company span {
	font-size: 18px;
	color:#999;
}
/* 代表挨拶 */
/* #comment {
	background-color: #fcfcfc;
} */
.comment {
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: column;
}
.comment-text {
    text-align: left;
	margin: 50px auto 0;
	padding-bottom: 50px;
}
.comment-img {
    max-width: 300px;
    margin: 0 0 0 auto;

}
/* sns-iconリンク */
.sns-link {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}
.sns-icon {
	margin: 0 10px;
}
/* iconサイズ */
.sns-icon img {
	width: 45px;
	height: 45px;
}
.sns-icon:nth-of-type(3) img {
	width: 35px;
	height: 35px;
}
.sns-icon:hover {
	opacity: .8;
}

/* purpose */
#purpose {
	padding-bottom: 50px;
	background-color: #fcfcfc;
}
.purpose-box > .title > h2 {
	margin-bottom: 16px;
}
.purpose-text {
	margin: 50px auto;
}
/* 会社概要 */
#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;
}
/* ボタン */
.btn-flex {
    justify-content: center;
    align-items: center;
}
.btn-flex .btn {
    margin: 0 10px;
}
.btn-flex .btn a {
   padding: 10px;
}
/*=====
レスポンシブ
=====  */
@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%;
    }
}