.greeting-section {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 20px;
}

.greeting-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.greeting-box {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.greeting-img {
    flex: 1 1 45%;
    text-align: center;
}

.greeting-img img {
    max-width: 100%;
    height: auto;
}

.greeting-content {
    flex: 1 1 50%;
}

.greeting-highlight {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 24px;
    display: inline-block;
    color: #f58c35;

}


.greeting-content p {
    line-height: 2;
    text-align: justify;
    font-size: 1rem;
    color: #333;
}

@media (max-width: 768px) {
    .greeting-box {
        flex-direction: column;
    }

    .greeting-img,
    .greeting-content {
        flex: 1 1 100%;
    }

    .greeting-title {
        text-align: center;
    }
}


.company-profile {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 40px 20px;
    font-family: "Yu Gothic", sans-serif;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #eee;
}

.company-table th,
.company-table td {
    padding: 16px;
    vertical-align: top;
    font-size: 1rem;
    border-bottom: 1px solid #fff;
}

.company-table th {
    background-color: #f36c00;
    color: white;
    white-space: nowrap;
    width: 180px;
    text-align: left;
}

.company-table td iframe {
    margin-top: 10px;
    border: 1px solid #ccc;
}

@media (max-width: 768px) {

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table tr {
        display: block;
        margin-bottom: 20px;
    }
}