.midashi-title {
	border: none;
    text-align: center;
    font-size: 3rem !important;
    font-weight: 800;
    margin-bottom: 0 !important;
    padding: 0;
}


/* リセットしたCSS */
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    width: 270px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (max-width: 767px) {
    .swiper-slide {
        width: calc(50% - 5px);
    }
	.midashi-title {
		font-size: 2.2rem !important;
	}
}

.product {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: #f0f0f0;
}

.sold-out-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    color: #333;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 2;
}

.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: auto;
    min-height: 80px;
}

/* タイトル用のスタイルをシンプルに保つ */
.product-title {
    display: block !important;
    visibility: visible !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 5px !important;
    line-height: 1.3 !important;
    max-height: 2.6em !important;
    overflow: hidden !important;
}

.product-price {
    font-size: 14px;
    color: #555;
    margin-top: auto;
}

/* カルーセル内のリンクスタイル */
.product a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}