/* ワークショップ紹介セクション用スタイル */
.workshop-intro {
    padding: 80px 0 100px;
    background-color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.workshop-intro h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.workshop-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.cta-button {
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #FF6B6B;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    background-color: #FF5252;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
}

/* シェイプディバイダー */
.custom-shape-divider-bottom-workshop {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.custom-shape-divider-bottom-workshop svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    filter: drop-shadow(0px -10px 8px rgba(0, 10, 30, 0.05)) drop-shadow(0px -5px 4px rgba(0, 5, 20, 0.05));
    transform-origin: bottom center;
}

.custom-shape-divider-bottom-workshop .shape-fill {
    fill: #f8f9fa;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .workshop-intro {
        padding: 60px 0 100px;
    }

    .custom-shape-divider-bottom-workshop svg {
        height: 100px;
    }
}