.mslp-container {
    position: relative;
    width: 100%;
    height: 100vh; /* fallback */
    height: 100dvh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #000;
}

.mslp-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* スマホ（縦長画面）では画面を覆う */
    object-position: center;
}

/* ★★ここからPC表示用のスタイルを追加★★ */
/* 画面のアスペクト比が横長の場合（PCなど）に適用 */
@media (min-aspect-ratio: 1/1) {
    .swiper-slide img {
        width: auto;  /* 幅を自動に */
        height: 100%; /* 高さを100%に固定 */
        object-fit: contain; /* はみ出さずに全体を表示 */
    }
}
/* ★★ここまでPC表示用のスタイルを追加★★ */


.mslp-cta-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.mslp-cta-button:hover {
    transform: translateX(-50%) scale(1.05);
}

.mslp-cta-button img {
    max-width: 80vw;
    max-height: 15vh;
    height: auto;
    width: auto;
    display: block;
}

/* ページネーションのスタイル */
.mslp-container .swiper-pagination {
    z-index: 20;
}

/* 縦スワイプ時は右側に配置 */
.mslp-container .swiper.swiper-vertical ~ .swiper-pagination.swiper-pagination-bullets {
    right: 15px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 6px;
}

.mslp-container .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.7;
}

.mslp-container .swiper-pagination-bullet-active {
    opacity: 1;
}

/* ★★矢印関連のCSSはすべて削除★★ */