/* 全体を左右センターに配置 */
#overview {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    font-size:15px;
}






#overview table {
    width: 100%; /* テーブルを幅いっぱいに広げる */
    max-width: 800px; /* 最大幅を指定 */
    margin: 0 auto; /* テーブルを中央に配置 */
    border-collapse: collapse; /* 枠線を重ねてシンプルにする */
    background-color: #fff; /* 背景色を設定 */
    text-align: left; /* 左揃え */
    font-size: 16px; /* フォントサイズを調整 */
}

#overview th, #overview td {
    padding: 10px; /* セル内の余白を設定 */
    border-bottom: 1px solid #ccc;
    /* border: 1px solid #ccc; */
    /* border: none;  */
}

#overview th {
    width: 150px; /* 左側のセルの幅を固定 */
    background-color: #fff; /* ヘッダー部分の背景色 */
    text-align: left; /* ヘッダー部分を右揃え */
    font-weight: bold; /* 太字にする */
    color: #333; /* テキストカラー */
}

#overview td {
    text-align: left; /* データ部分は左揃え */
    color: #555; /* テキストカラー */
    
    
}

#overview tr{
    margin-bottom: 50px;
}

#overview h2 {
    text-align: center; /* 見出しを中央揃え */
    margin-bottom: 20px; /* 見出しとテーブルの間隔を調整 */
    font-size: 24px; /* 見出しのフォントサイズを調整 */
    color: #333; /* 見出しの色 */
}


/* コンテンツ幅の制限とセンター配置 */
.content {
    width: 80%; /* 必要に応じて調整 */
    max-width: 800px; /* 最大幅を指定 */
    margin: 0 auto;
}


/* 追加・修正：これでOK */
.map-container {
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0 auto;
    box-sizing: border-box;
    overflow-x: auto;
}
.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: 0;
    display: block;
}

.company-title {
    position: relative;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 20px;
}

/* 会社概要のスタイル */
.company-title h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    background-color: #fff;
}

/* 会社概要の下に黒線を引く */
.company-title h2::after {
    content: "";
    display: block;
    width: 100%; /* h2の幅に合わせる */
    height: 3px; /* 線の太さ */
    background-color: black; /* 黒色の線 */
    position: absolute;
    bottom: 0;
    left: 0;
}

.separator {
    color: #94849e; /* お好きな色に変更してください */
}

@media screen and (max-width: 700px) {
  .map-container iframe {
    height: 220px;
  }
}

@media screen and (max-width: 550px) {
  td.email {
    word-break: break-all;
    font-size: 15px;
    line-height: 1.2; /* 行間を小さく */
  }
  td.email .at-break {
    display: block;
    height: 2px; /* 改行後の余白を小さく */
    margin: 0;
    padding: 0;
  }
}