@charset "utf-8";

/* sp View   ～768px  ----------------------------------------------------------------------------------------------*/
.swiper {
  max-width: 90%;
  padding: 20px 0 50px;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
    /*width: 100% !important;*/
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
    text-align: center;
    height: 300px; /* 高さ固定 */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.swiper-slide img {
    width: 100%;
    width: auto;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.swiper-slide h3 {
    font-size: 1rem;
    margin: 0 0 5px;
}

.swiper-slide p {
    font-size: 0.9rem;
    color: #444;
    margin: 0;
}

/*--- Tablet View ---------------------------------------------------------------------------------------------------------*/
@media (min-width: 768px){
    .swiper {
      max-width: 1280px;
    }
    .swiper-slide {
        width: auto;
    }
}
/*--- Desktop View ---------------------------------------------------------------------------------------------------------*/
@media (min-width: 1024px){
}

