@charset "UTF-8";


.slider{
    width: 300px;
    height: 460px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    border: 5px solid #c0c0c0;
}

h2{
    display: block;
    font-weight: bold;/*太字*/
    padding: 10px 15px;/*上下の空白*/
    background-color: #fcefb5;
    color: white;
    background-color: #98AE00;
}
.slide{
    width: 300px;
}

.img300{
    width: 300px;
}

@media(min-width: 1024px){
    .slider{
        width: 400px;
        height: 600px;
    }
    .slide{
        width: 400px;
    }
    
    .img300{
        width: 400px;
    }
}