/* 新しいAIモダン開発ページへの誘導バナーCSS（デザイン最新版） */
.new-ai-banner {
    max-width: 960px;
    margin: 40px auto;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 44, 82, 0.08);
    border: 2px solid #0f2c52; /* 新ページのBPS Navy */
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    font-family: 'Plus Jakarta Sans', 'Noto Sans JP', sans-serif;
}

/* 上部のオレンジ色のグラデーションライン */
.new-ai-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #ff5a36, #ff7a55); /* 新ページのAccent Orange */
}

.new-ai-banner a {
    display: block;
    padding: 30px 40px;
    text-decoration: none;
    color: #333;
}

.new-ai-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 44, 82, 0.15);
}

.banner-badge-ai {
    display: inline-block;
    background-color: #f0f7ff;
    color: #0f2c52;
    border: 1px solid rgba(15, 44, 82, 0.1);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.banner-badge-ai span {
    color: #00e5ff; /* 新ページのCyan */
    margin-right: 4px;
    font-weight: 800;
}

.banner-title-ai {
    font-size: 22px;
    font-weight: 800;
    color: #0f2c52;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.banner-text-ai {
    font-size: 15px;
    margin: 0 0 20px 0 !important;
    color: #4b5563;
    line-height: 1.8;
}

/* 新ページに合わせた黄色マーカーの装飾 */
.banner-highlight {
    background: linear-gradient(transparent 60%, #ffe066 40%);
    font-weight: bold;
    color: #1f2937;
    padding: 0 2px;
}

.banner-action-ai {
    display: inline-flex;
    align-items: center;
    background-color: #0f2c52;
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 30px;
    transition: background-color 0.2s ease;
}

.new-ai-banner:hover .banner-action-ai {
    background-color: #051429;
}

.banner-action-ai::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.new-ai-banner:hover .banner-action-ai::after {
    transform: translateX(5px);
}

/* スマートフォン用の調整 */
@media (max-width: 768px) {
    .new-ai-banner a { padding: 24px 20px; }
    .banner-title-ai { font-size: 18px; }
    .banner-text-ai { font-size: 14px; }
    .banner-action-ai { font-size: 14px; width: 100%; justify-content: center; box-sizing: border-box; }
}
