/* ===============================
   私たちの想い (Vision Section)
=============================== */
.vision-section {
    margin-bottom: 40px;
}

.vision-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--badge-color);
    font-size: 2.4rem;
    font-weight: 600;
}

.vision {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.vision-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.vision-text {
    max-width: 600px;
    text-align: left;
    align-self: flex-start;
}

.vision-text .highlight {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    text-align: left;
}

.vision-text p {
    font-size: 1.6rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
    text-indent: 0;
    text-align: justify;
    word-break: break-word;
}

.vision-text p:last-child {
    margin-bottom: 0;
}

/* ===============================
   代表プロフィール (Profile Section)
=============================== */
.profile-section {
    margin-bottom: 40px;
}

.profile-box {
    margin: 0 auto;
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.profile-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--badge-color);
    font-weight: 600;
    font-size: 2.4rem;
}

.profile-box span {
    font-size: 1.6rem;
    margin-right: 10px;
}

.profile-box .title {
    font-size: 2.2rem;
    color: var(--text-color);
    font-weight: 700;
}

.profile-box hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 16px 0 20px;
}

.profile-box p {
    color: var(--text-color);
    line-height: 1.9;
    font-size: 1.6rem;
    text-indent: 0;
    text-align: justify;
    word-break: break-word;
}

/* ===============================
   会社概要 (Company Section)
=============================== */
.company-section {
    margin-bottom: 40px;
}

.company-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--badge-color);
    font-weight: 600;
    font-size: 2.4rem;
}

.company-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.company-content th,
.company-content td {
    padding: 12px 8px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    font-size: 1.6rem;
}

.company-content th {
    text-align: left;
    width: 25%;
    color: var(--badge-color);
    font-weight: 600;
    white-space: nowrap;
}

.company-content td {
    color: var(--text-color);
    text-indent: 0;
    text-align: justify;
    word-break: break-word;
}

.company-content iframe {
    width: 100% !important;
}

/* ===============================
   MAP Placeholder
=============================== */
.map-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--bg-color-2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    color: var(--placeholder-color);
    font-size: 1.6rem;
    letter-spacing: 2px;
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 768px) {

    /* Section spacing */
    .vision-section,
    .profile-section,
    .company-section {
        width: 90%;
        margin: 0 auto 40px auto;
    }

    /* Vision section */
    .vision {
        flex-direction: column;
        gap: 24px;
    }

    .vision-image img {
        max-width: 350px;
    }

    .vision-text {
        max-width: 100%;
        text-align: center;
    }

    .vision-text .highlight {
        font-size: 1.6rem;
        text-align: center;
    }

    .vision-text p {
        font-size: 1.4rem;
        text-align: justify;
    }

    /* Section titles */
    .section-title,
    .vision-section h2 {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    /* Profile section */
    .profile-box {
        padding: 24px 16px;
        margin: 0;
    }

    .profile-box h2 {
        font-size: 1.8rem;
    }

    .profile-box .title {
        font-size: 1.8rem;
    }

    .profile-box p {
        font-size: 1.4rem;
        line-height: 1.7;
    }

    /* Company section */
    .company-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .company-content th,
    .company-content td {
        padding: 8px 4px;
        font-size: 1.4rem;
    }

    .company-content th {
        width: 30%;
    }

    /* Map placeholder */
    .map-placeholder {
        height: 200px;
    }

    .map-placeholder p {
        font-size: 1.4rem;
    }

    /* Company iframe */
    .company-content iframe {
        height: 300px;
        margin-top: 16px;
    }
}