@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");

body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
}

.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-desktop-layout {
    display: flex;
    gap: 24px;
    align-items: center;
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px 0;
}

.swiper-desktop-main {
    flex: 1;
    /* max-width: 780px; */
}

.swiper-desktop-main .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 9px);
    overflow: hidden;
    background: #f5f5f5;
}

.swiper-desktop-main .swiper-slide a,
.swiper-desktop-main .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

.swiper-desktop-main .swiper-slide img {
    object-fit: cover;
}

.swiper-desktop-pages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
}

.swiper-desktop-pages__title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.swiper-desktop-dots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.swiper-desktop-dot:nth-child(even) {
    display: none;
}
.swiper-desktop-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    padding: 5px;
    border: 2px solid #ac1821;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.swiper-desktop-dot:hover {
    transform: scale(1.08);
}

.swiper-desktop-dot.is-active {
    background: #ac1821;
    transform: scale(1.12);
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgb(0 0 0 / 40%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}

.sp-none {
    display: none;
}
