@charset "utf-8";
/* ========================================
   KOYO - Company Page Styles
======================================== */

/* ----------------------------------------
   Company Profile Section
---------------------------------------- */
.company-profile {
    padding: 80px 0;
    background: var(--white);
}

.profile-table {
    margin-top: 50px;
    border-top: 1px solid var(--bg-gray);
}

.profile-row {
    display: flex;
    border-bottom: 1px solid var(--bg-gray);
}

.profile-row dt {
    width: 200px;
    padding: 25px 30px;
    background: var(--bg-light-gray);
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.profile-row dd {
    flex: 1;
    padding: 25px 30px;
    font-size: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* ----------------------------------------
   Company Gallery Section
---------------------------------------- */
.company-gallery {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ----------------------------------------
   Message Section
---------------------------------------- */
.company-message {
    padding: 80px 0;
    background: var(--white);
}

.message-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 50px;
}

.message-image {
    flex: 0 0 400px;
    overflow: hidden;
    border-radius: 4px;
}

.message-image img {
    width: 100%;
    height: auto;
    display: block;
}

.message-text {
    flex: 1;
}

.message-text h3 {
    font-size: 2.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.message-text p {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.message-text .signature {
    margin-top: 40px;
    font-size: 1.4rem;
    line-height: 1.8;
}

.message-text .signature .name {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 5px;
}

/* ----------------------------------------
   Access Section
---------------------------------------- */
.company-access {
    padding: 80px 0;
    background: var(--white);
}

.access-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.access-map {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.access-map iframe {
    display: block;
}

.access-info {
    flex: 0 0 350px;
    padding: 30px;
    background: var(--bg-light-gray);
    border-radius: 4px;
}

.access-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.access-info .address {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

.access-detail {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-top: 1px solid var(--bg-gray);
    font-size: 1.4rem;
}

.access-detail dt {
    color: var(--primary-color);
    font-weight: 500;
    min-width: 50px;
}

.access-detail dd {
    color: var(--text-color);
}

/* ----------------------------------------
   Responsive - Tablet
---------------------------------------- */
@media only screen and (max-width: 1024px) {
    .profile-row dt {
        width: 150px;
        padding: 20px;
    }

    .profile-row dd {
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .message-content {
        flex-direction: column;
        gap: 40px;
    }

    .message-image {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .access-content {
        flex-direction: column;
        gap: 30px;
    }

    .access-info {
        flex: none;
        width: 100%;
    }
}

/* ----------------------------------------
   Responsive - Mobile
---------------------------------------- */
@media only screen and (max-width: 750px) {
    .company-profile {
        padding: 60px 0;
    }

    .profile-row {
        flex-direction: column;
    }

    .profile-row dt {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.4rem;
    }

    .profile-row dd {
        padding: 15px 20px;
        font-size: 1.4rem;
    }

    .company-gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .company-message {
        padding: 60px 0;
    }

    .message-text h3 {
        font-size: 2rem;
    }

    .message-text p {
        font-size: 1.4rem;
    }

    .message-text .signature {
        margin-top: 30px;
    }

    .message-text .signature .name {
        font-size: 1.8rem;
    }

    .company-access {
        padding: 60px 0;
    }

    .access-map iframe {
        height: 300px;
    }

    .access-info {
        padding: 25px 20px;
    }

    .access-info h3 {
        font-size: 1.8rem;
    }

    .access-info .address {
        font-size: 1.4rem;
    }

    .access-detail {
        font-size: 1.3rem;
    }
}
