.footer-section {
    background-color:black;
    color: white; 
    padding: 20px; 
}
.footer-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px; 
    text-align: center;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.company-info, .business-info {
    width: 30%; 
    border-collapse: collapse;
    margin: 60px;
}
.company-info th {
    width: 50%; 
    font-weight: bold;
    vertical-align: middle;
    text-align: center;
    padding: 8px;
    font-size: 16px;
    border: none;
}
.company-info td {
    vertical-align: middle;
    border: none;
}
.business-info .business-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
.business-info .business-link {
    text-decoration: none;
    color: #0073e6; /* リンクの色 */
    font-size: 16px;
    margin-bottom: 5px;
}
.business-info td {
    text-align: left;
    padding: 8px;
    font-size: 16px;
    border: none;
}
.business-info .business-link:hover {
    text-decoration: underline;
}
.business-info .business-detail {
    font-size: 16px;
    margin-bottom: 5px;
}
.address {
    line-height: 1.5; 
}

/* iPad用のレスポンシブスタイル */
@media only screen and (max-width: 1024px) {
    .company-info, .business-info {
        width: 50%;
        border-collapse: collapse;
        margin: 0;
    }
    .company-info th {
        width: 40%;
        padding: 0;
        font-weight: bold;
        vertical-align: middle;
        text-align: center;
        font-size: 12px;
        border: none;
    }
    .company-info td {
        vertical-align: middle;
        border: none;
        padding: 0;
    }
    .business-info .business-detail {
        margin: 0;
        font-size: 16px;
        margin-bottom: 5px;
    }

}
/* iPhone用のレスポンシブスタイル */
@media only screen and (max-width: 768px) {
    .footer-section {
        padding: 15px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .company-info, .business-info {
        width: 90%; /* 横幅を100%に近づける */
        margin: 20px 0; /* 上下に余白を調整 */
    }

    .company-info th {
        width: 25%;
        font-size: 14px;
        padding: 6px;
    }

    .company-info td {
        font-size: 14px;
        padding: 6px;
        text-align: left; 
    }

    .business-info .business-title {
        font-size: 16px;
        margin-bottom: 8px;
        text-align: center; /* タイトルを中央揃え */
    }

    .business-info .business-link {
        font-size: 14px;
        text-align: left;
        display: block;
        margin-bottom: 10px;
    }

    .business-info td {
        font-size: 14px;
        padding: 6px;
        text-align: left; /* テキストを中央揃え */
    }

    .business-info .business-detail {
        margin-left: 0; 
        font-size: 14px;
        text-align: left;
        margin-bottom: 10px;
    }

    .address {
        line-height: 1.4;
        font-size: 14px;
        text-align: left;
    }
}