/* メイン */
.about-us-wrap {
    margin:0 20px;
    line-height: 1.7;
    text-align: left;
}

.about-us-wrap p {
    margin-bottom:1.25rem;
}

.info-table {
    width: 100%;
    display: block; /* テーブルをブロック要素として扱う */
}

.info-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px; /* 行間に余白を追加 */
}

.info-table th {
    font-weight: bold; /* 項目名を強調 */
    color: #555;
    margin-bottom: 4px; /* 項目名と内容の間の余白 */
}

.info-table td {
    padding-left: 16px; /* 内容部分のインデント */
    word-wrap: break-word;
}

.company-map {
    margin:3rem 0;
}

/* PC幅 */
@media (min-width: 700px) {

/* メイン */
.about-us-wrap {
    margin:0 auto;
    width:900px;
}

.info-table {
    display: table;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse; /* テーブル内の隙間をなくす */
}

.info-table tr {
    display: table-row; /* 通常のテーブル行 */
    margin-bottom: 0; /* 行間余白をリセット */
}

.info-table th, .info-table td {
    display: table-cell; /* 通常のテーブルセル */
    padding: 8px;
    text-align: left;
    vertical-align: top;
}

.info-table th {
    width: 30%; /* 左側の項目名の幅 */
    font-weight: normal;
    margin-bottom: 0;
    color: #333;
}

.info-table td {
    width: 70%; /* 右側の内容の幅 */
    padding-left: 0; /* SP時のインデントをリセット */
}

}