/* Company Overview Page Specific Styles */

/* Management Philosophy Section */
.management-philosophy .philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* 中央揃えを基本に */
}

.management-philosophy .philosophy-main-message {
    font-family: var(--font-heading);
    font-size: 2.2rem; /* 目立つように大きく */
    color: var(--accent-deep-blue);
    font-weight: 700; /* Montserrat Bold */
    margin-bottom: 30px;
    line-height: 1.4;
}

.management-philosophy .philosophy-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8; /* 行間を広めに */
    margin-bottom: 20px;
    text-align: left; /* 長文部分は左揃えに戻す */
}

.management-philosophy .philosophy-text-emphasis {
    font-weight: bold;
    color: var(--text-primary);
    /* text-align: left; は継承 */
}

.management-philosophy .signature-block {
    margin-top: 40px;
    text-align: right;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.management-philosophy .company-name {
    font-weight: bold;
    margin-bottom: 5px;
}

/* What We Can Do Section (Features) */
.what-we-can-do .features-grid.overview-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px; /* セクションタイトルからのマージン */
}

.what-we-can-do .feature-item-alt {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--accent-light-blue); /* 下部にアクセント */
}

.what-we-can-do .feature-item-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.what-we-can-do .feature-icon-alt {
    font-size: 2.8rem; /* 少し大きく */
    color: var(--accent-medium-blue);
    margin-bottom: 20px;
}

.what-we-can-do .feature-title-alt {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 700; /* Montserrat Bold */
}

/* Office Information Section */
.office-information .office-details {
    background-color: #fff;
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 20px; /* セクションタイトルからのマージン */
}

.office-information .office-detail-item {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.office-information .office-detail-item:last-child {
    margin-bottom: 0;
}

.office-information .detail-label {
    font-weight: bold;
    color: var(--text-primary);
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .management-philosophy .philosophy-main-message {
        font-size: 1.8rem;
    }
    .what-we-can-do .feature-item-alt {
        padding: 25px 20px;
    }
    .what-we-can-do .feature-icon-alt {
        font-size: 2.5rem;
    }
    .what-we-can-do .feature-title-alt {
        font-size: 1.2rem;
    }
    .office-information .office-details {
        padding: 30px;
    }
} 