/* 代表あいさつページ固有のスタイル */

/* コンテナ幅を広げて長い挨拶文を読みやすくする */
.container {
    max-width: 650px;
}

/* 挨拶文のスタイリング */
.greetings-content {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

.greetings-content p {
    margin-bottom: 1.5rem;
}

/* 署名部分のスタイリング */
.signature {
    margin-top: 3rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.signature .company-name {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 0.25rem;
}

.signature .president-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* 署名画像 */
.president-img {
    height: 56px;
    vertical-align: middle;
    object-fit: contain;
}

/* 戻るリンクのボタン風スタイリング */
.back-link {
    margin-top: 2.5rem;
    text-align: center;
}

.back-link a {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-link a:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
}

/* レスポンシブデザイン */
@media (max-width: 600px) {
    .container {
        max-width: 100%;
    }
    
    .greetings-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .signature {
        margin-top: 2rem;
    }
    
    .signature .company-name {
        font-size: 0.9rem;
    }
    
    .signature .president-name {
        font-size: 1rem;
    }
    
    .president-img {
        height: 56px;
    }
}
