/* メッセージセクションのデザイン */
.message-section {
    background: linear-gradient(135deg, #82e4b3, #ffffff); /* グラデーション背景 */
    padding: 50px;
    margin: 40px auto;
    width: 85%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: 'Noto Serif JP', serif;

}

.message-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #00796b;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase; /* タイトルを大文字 */
    border-bottom: 2px solid #00796b;
    padding-bottom: 10px;
}

.message-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
}

.message-section strong {
    font-size: 22px;
    color: #004d40;
    display: block;
    margin-top: 30px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
}



