/* ==========================================================================
   Block: TOP – 事業部長メッセージ (sensing/top-message)
   ========================================================================== */

.fp-message {
    padding: 64px 0;
    background: linear-gradient(135deg, #002040 0%, #003366 50%, #002040 100%);
}

/* Grid layout ------------------------------------------------------------ */

.fp-message__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Image ------------------------------------------------------------------ */

.fp-message__image-wrap {
    position: relative;
    order: 1;
}

.fp-message__image-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    aspect-ratio: 16 / 9;
}

.fp-message__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decorative accent */
.fp-message__deco {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 96px;
    height: 96px;
    background: rgba(204, 255, 0, 0.3);
    border-radius: 16px;
    z-index: -1;
}

/* Text column ------------------------------------------------------------ */

.fp-message__text {
    order: 2;
}

.fp-message__label {
    color: #CCFF00;
    font-size: 16px;
    margin: 0 0 8px;
}

.fp-message__heading {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 24px;
}

.fp-message__body p {
    color: #D1D5DC;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 16px;
}

.fp-message__body p:last-child {
    margin-bottom: 0;
}

/* Signature -------------------------------------------------------------- */

.fp-message__signature {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.fp-message__sig-title {
    color: #D1D5DC;
    font-size: 14px;
    margin: 0 0 4px;
}

.fp-message__sig-name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* 肩書き/氏名を2列gridで揃える(複数人対応)
   グリッド全体を右寄せして署名ブロックをコンテナ右端に配置 */
.fp-message__sig-list {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 32px;
    row-gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: end;
}

.fp-message__sig-row {
    display: contents;
}

.fp-message__sig-row-title,
.fp-message__sig-row-name {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.fp-message__sig-row-title {
    text-align: right;
}

/* Responsive ------------------------------------------------------------- */

@media only screen and (max-width: 640px) {
    .fp-message {
        padding: 48px 0;
    }

    .fp-message__grid {
        grid-template-columns: 1fr;
    }

    .fp-message__image-wrap {
        order: 1;
    }

    .fp-message__text {
        order: 2;
    }

    .fp-message__heading {
        font-size: 28px;
    }
}
