


/* 代表挨拶セクションのスタイル */

.greeting-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    padding: 20px;

    text-align: left;
    gap: 60px;
}

.greeting-item.reverse {
    flex-direction: row-reverse; /* テキストと画像を左右反転 */
}

.greeting-item .text-content {

    padding: 0 20px;
    width: 50%;
}

.image-content {
    width: 300px; /* 画像の幅 */
    margin: 15px;
    align-self: flex-start;
}

.greeting-item .image-content img {
    max-width: 100%;
    height: auto;

}

.greeting-item h3 span{
    font-size: 1.5em;

    display: inline-block;
    padding: 10px;

    color: #333;
    font-family: "Zen Old Mincho";
    font-weight: 400;
    background: linear-gradient(to right, #add6e2, #fff);
}

.greeting-item p {
    margin: 15px 0 30px 0;
    text-align: justify;
}

.greeting-item .signature {
    text-align: right;
    font-style: italic;
    margin-top: 20px;
    color: #555;
}



.copyright {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #555;
}

.copyright a {
    color: #fff;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応（簡易的な例） */
@media (max-width: 768px) {


    .greeting-item,
    .greeting-item.reverse {
        flex-direction: column; /* 代表挨拶セクションを縦に並べる */
        text-align: center;
    }

    .greeting-item .text-content {
        padding: 0;
        margin-bottom: 20px;
        width: 100%
    }

    .greeting-item .image-content {
        width: 80%; /* 画像の幅を調整 */
        margin: 0 auto;
    }

    .signature {
        text-align: center !important; /* 中央寄せ */
    }


}
@media (max-width: 445px) {

}
