/* Nexurページ ヒーローセクション */
.page-hero--nexur {
    background-color: #003366; /* 濃紺系のブランドカラー */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-hero__label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

/* 社名の数式 (Next + Assurance...) */
.nexur-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: bold;
    margin: 50px 0;
    flex-wrap: wrap;
}

.nexur-formula__word--accent {
    color: #003366;
}

.nexur-formula__word--brand {
    color: #d4af37; /* ゴールドまたはアクセントカラー */
    font-size: 2.5rem;
    border-bottom: 3px solid #d4af37;
}

/* 3つのメッセージセクション */
.nexur-messages {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.nexur-message {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nexur-message__number {
    font-size: 3rem;
    font-weight: italic;
    color: #e0e0e0;
    line-height: 1;
}

.nexur-message__title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.nexur-message__subtitle {
    color: #003366;
    font-weight: bold;
    margin-bottom: 15px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .nexur-formula { font-size: 1.2rem; }
    .nexur-message { flex-direction: column; }
    .nexur-message__number { font-size: 2rem; }
}

