@charset "utf-8";
/*================================================
 9月秋の収穫キャンペーン - セミナーリスト（ボタンのみ動作版）
=================================================*/

/* セミナーリスト関連スタイル */
.seminar-list-wrapper {
    width: 95%;
    margin: 30px auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.seminar-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.seminar-item {
    width: 48%;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(210, 105, 30, 0.08);
    overflow: hidden;
    position: relative;
    border: 1px solid #F4A460;
    /* 動きを完全に削除 */
}

.seminar-img-link {
    display: block;
    width: 100%;
    overflow: hidden;
    /* 画像リンクに動きなし */
}

.seminar-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background-color: white;
    display: block;
    /* 動きを完全に削除 */
}

.seminar-details {
    padding: 20px;
}

.seminar-title {
    font-size: 1rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.seminar-date {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #8B4513;
    font-weight: 600;
}

.seminar-date i, .seminar-place i {
    color: #D2691E;
    margin-right: 5px;
    float: left;
    width: 16px;
}

.seminar-place {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #8B4513;
    font-weight: 500;
    line-height: 1.3;
    overflow: hidden;
}

.seminar-place-text {
    margin-left: 21px;
}

.seminar-apply {
    text-align: center;
    margin-top: 20px;
}

/* ボタンのみ動きあり */
.apply-btn {
    display: inline-block;
    background: #D2691E;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 3px 0 #8B4513;
    width: 80%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.apply-btn:hover::before {
    left: 100%;
}

.apply-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #8B4513;
    background: #CD853F;
}

.apply-btn:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 #8B4513;
}

/* レスポンシブ対応 */
@media screen and (max-width: 900px) {
    .seminar-list-container {
        justify-content: center;
    }
    
    .seminar-item {
        width: 90%;
        max-width: 600px;
    }
    
    .seminar-img {
        height: 340px;
    }
    
    .seminar-title {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .seminar-list-wrapper {
        width: 98%;
        margin: 20px auto;
        padding: 15px 0;
    }
    
    .seminar-list-container {
        padding: 0 15px;
    }
    
    .apply-btn {
        width: 100%;
        padding: 12px;
    }
    
    .seminar-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .seminar-details {
        padding: 15px;
    }
    
    .seminar-img {
        height: 200px;
    }
    
    .seminar-title {
        font-size: 1rem;
        -webkit-line-clamp: 4;
    }
    
    .seminar-date, .seminar-place {
        font-size: 0.9rem;
    }
}

/* 装飾エフェクトも削除 */
/* すべてのアニメーション・トランジション・ホバーエフェクトをボタン以外から除去 */