/* ==========================================================================
   About Page Specific Styles
   ========================================================================== */

/* 固有タイトル設定 */
.section-title.left {
    text-align: left;
}

.section-title.left h2::after {
    left: 0;
    transform: none;
}

/* 企業理念 */
.philosophy {
    padding-bottom: 100px;
}

.philosophy-content {
    background: #FFFFFF66;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--main-color-border);
    padding: 60px 40px;
    text-align: center;
    border-radius: 4px;
}

.concept-en {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.concept-jp {
    font-size: 1.2rem;
    font-weight: 700;
	line-height: 2;
}

/* ご挨拶 */
.greeting {
    background: var(--main-color-light);
    padding: 100px 0;
}

.greeting-flex {
	width: 68%;
}

.greeting-text p {
    margin-bottom: 25px;
    line-height: 2;
}

.signature {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 40px !important;
}

/* 会社概要テーブル */
.company-profile {
    padding: 100px 0;
}

.profile-table {
    width: 75%;
    border-collapse: collapse;
    margin: 20px auto 0;
}

.profile-table tr {
    border-bottom: 1px solid #ddd;
}

.profile-table th {
    width: 25%;
    text-align: center;
    padding: 25px 20px;
    background: #00A4B30D;
    color: #333;
    font-weight: 700;
    vertical-align: top;
}

.profile-table td {
    padding: 25px 20px 25px 3em;
    line-height: 1.8;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .philosophy-content { padding: 40px 20px; }
    .concept-en { font-size: 1.2rem; }
    .concept-jp { font-size: 1rem; }
    .concept-desc { font-size: 1rem; }
    
    .profile-table th, .profile-table td {
        display: block;
        width: 100%;
    }
    .profile-table th {
        padding: 15px 20px 5px;
        background: none;
        color: var(--main-color);
    }
    .profile-table td {
        padding: 5px 20px 15px;
    }
}