.message-page {
    background: #ffffff;
    padding: 60px 0;
}

.message-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.message-title h1 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 70px;
    position: relative;
}

.message-title h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #e60012;
    margin-top: 12px;
}

.message-top {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.message-photo {
    width: 260px;
    flex-shrink: 0;
}

.message-photo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin-bottom: 16px;
}

.message-profile .position {
    font-size: 14px;
    color: #6b7c93;
    margin-bottom: 6px;
}

.message-profile .name {
    font-size: 20px;
    letter-spacing: 2px;
}

.message-copy h2 {
    font-size: 30px;
    line-height: 1.7;
    margin-bottom: 28px;
    font-family: "Noto Serif JP", serif;
}

.message-copy p {
    line-height: 2;
    color: #4a5a70;
    font-size: 20px;
}

hr {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 80px 0;
}

.message-quote {
    border-left: 2px solid #ff0015;
    padding-left: 20px;
}

.message-quote h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
}

.message-quote p {
    color: #555;
    padding: 19px 0;
}

.message-section {
    margin-bottom: 60px;
}

.message-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.message-section p {
    line-height: 2;
    color: #314158;
    margin-bottom: 20px;
}

.message-sign {
    text-align: right;
    margin-top: 80px;
}

.sign-position {
    color: #45556C;
}

.sign-name {
    font-size: 20px;
    color: #000000;
}

.big {
    font-size: 22px;
    line-height: 1.8;
    display: inline-block;
    color: #000000;
}

/* ===============================
スマホ対応
=============================== */

@media (max-width:768px) {
    .message-container {
        padding: 0 24px;
    }

    .message-title h1 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .message-top {
        flex-direction: column;
        gap: 40px;
    }

    .message-photo {
        width: 200px;
        margin: 0 auto;
    }

    .message-photo img {
        height: 280px;
    }

    .message-profile {
        text-align: center;
    }

    .message-copy h2 {
        font-size: 22px;
        line-height: 1.6;
    }

    .message-copy p {
        font-size: 16px;
        line-height: 1.9;
    }

    hr {
        margin: 50px 0;
    }

    .message-quote {
        padding-left: 16px;
    }

    .message-quote h3 {
        font-size: 18px;
    }

    .message-quote p {
        font-size: 15px;
    }

    .message-section h4 {
        font-size: 17px;
    }

    .message-section p {
        font-size: 15px;
        line-height: 1.9;
    }

    .message-sign {
        margin-top: 60px;
    }

    .sign-name {
        font-size: 18px;
    }

    .big {
        font-size: 19px;
    }
}