.introduction-container {
    background: #f4f8fb; /* 背景画像を削除して色に変更 */
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 50px;
}

.introduction-background {
    /* background: url('https://jbsp.work/wp-content/uploads/2025/03/DX_banner-1.png') no-repeat center center; */
    background-size: cover;
    padding: 40px 20px;
    border-radius: 10px;
	  margin-top: 50px;
}

.introduction-summary {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6); /* 透過度を少し強めに調整 */
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    position: relative;
}

/* 半透明のオーバーレイ (より透明感を持たせる) */
.introduction-summary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4); /* より自然な透明感 */
    z-index: 1;
    border-radius: 10px;
}

/* テキストをオーバーレイの上に表示 */
.introduction-summary > * {
    position: relative;
    z-index: 2;
}

/* 強調部分のスタイル */
.introduction-summary b {
    color: #005580;
}

.ai-business-solutions {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.75); /* AIソリューション部分の透明度を調整 */
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.solution-item {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: rgba(249, 249, 249, 0.85); /* ソリューション個別カードの背景透過 */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.solution-item h3 {
    color: #0073e6;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.solution-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.solution-item a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.solution-item a:hover {
    text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .ai-business-solutions {
        flex-direction: column;
        gap: 10px;
    }
}
