/* 会社情報ページ専用スタイル */

.content {
    background-color: #fff;
    border-left: 4px solid #f7921d;
    padding: 2rem;
    margin: 3rem auto;
    border-radius: 8px;
    max-width: 2000px;
    box-sizing: border-box;
}

/* 会社概要 */

.company-info.content {
    background-color: #fff;       
    border-left: 4px solid #f7921d; 
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    width: 100%;
}

.company-info.content h2 {
    font-size: 32px;
    color: #2c3e50;
    border-bottom: 2px solid #086DE2;
    padding-bottom: 0.5rem;
}

.company-info.content p {
    line-height: 1.8;
    margin-top: 0.75rem;
    font-size: 1rem;
}

.company-table {
    display: grid;
    grid-template-columns: 1fr 2fr;
    row-gap: 1rem;
    column-gap: 1rem;
    margin-top: 1.5rem;
}

.company-table dt {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    background-color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.company-table dd {
    font-size: 20px;
    margin: 0;
    padding: 0.5rem 0.75rem;
    background-color: #f2f2f2;
    border-left: 4px solid #f7921d;
    border-radius: 4px;
}


/* 代表メッセージ */

.ceo-content {
    background-color: #fff;
    border-left: 4px solid #f7921d;
    padding: 2rem;
    margin: 2rem auto; 
    border-radius: 8px;
    box-sizing: border-box;
}

.ceo-content h2 {
    font-size: 32px;
    color: #2c3e50;
    border-bottom: 2px solid #086DE2;
    padding-bottom: 0.5rem;
}

.ceo-signature {
    text-align: right;
    margin-top: 2rem;
    font-style: italic;
}

.message-left{
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.message-right{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.message-left p, .message-right p{
    flex: 1;
    font-size: 20px;
    line-height: 1.8;
}

.ceo-photo1, .ceo-photo2 {
    display: block;
    border-radius: 6px;
}

.ceo-photo1{
    float: left;
    margin: 0 20px 20px 20px;
    width: 100%;
    max-width: 400px;
    height: auto;
}

.ceo-photo2{
    float: right;
    margin: 0 20px 20px 20px;
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 250px;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {

    .ceo-content h2, 
    .company-info.content h2 {
        font-size: 24px;
    }

    .content p, .content dt, .content dd {
        font-size: 16px;
    }

    .company-info.content,
    .ceo-content,
    .content {
        padding: 1rem;
        margin: 1rem auto;
    }

    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .message-left, .message-right{
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .ceo-photo1, .ceo-photo2 {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
    }
}