/* bato-press-slider START */
.bato-press-slider {
    overflow-x: clip;
}

.bato-press-slider .swiper {
    overflow: visible;
}

.bato-press-slider .swiper-slide {
    display: flex;
    gap: 1.5rem;
}

.bato-press-slider-divider {
    width: 0.1rem;
    height: 8.5rem;
    background: var(--color-gray-dark);
}

.bato-press-slider-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.4rem;
    width: 28rem;
    height: 100%;
}

.bato-press-slider-item__title {
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.3;
}

.bato-press-slider-item__name {
    --fs: 1.4rem;
    --ls: 0.1;

    font-weight: 500;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: calc(var(--fs) * var(--ls));
    color: var(--color-gray-middle);
}

@media screen and (max-width: 575.9px) {
    .bato-press-slider {
        padding-top: 6.5rem;
    }
}
/* bato-press-slider END */



/* bato-press START */
.bato-press {
    padding-bottom: 10rem;
}

.bato-press__wrapper {
    width: 130rem;
}

.bato-press__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8rem 2rem;
}

.bato-press-item {
    width: 29.7rem;
    max-width: 100%;
    cursor: pointer;
}

.bato-press-item__content {
    display: flex;
    align-items: center;
    aspect-ratio: 297/207;
    width: 100%;
    padding: 4.5rem;
    background: var(--color-black);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.3;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
    transition: 0.3s;
}

.bato-press-item:hover .bato-press-item__content {
    background: var(--color-gray-dark);
}

.bato-press-item__logo {
    width: 9.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    translate: -50% -50%;
}

.bato-press-item__plus {
    display: flex;
    justify-content: center;
    width: 3rem;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
}

.bato-press-item__name {
    --fs: 1.4rem;
    --ls: 0.1;

    font-size: var(--fs);
    letter-spacing: calc(var(--fs) *var(--ls));
    line-height: 2;
    text-transform: uppercase;
}

@media screen and (max-width: 767.9px) {
    .bato-press__list {
        display: grid;
        grid-template-columns: unset;
        gap: 4rem 1rem;
    }
    .bato-press-item {
        width: 100%;
    }
}

/* bato-press END */



/* bato-press-modal START */
.bato-press-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    inset: 0;
    transition: 0.3s ease-out;
}

.bato-press-modal:not(.active) {
    opacity: 0;
    pointer-events: none;
}

.bato-press-modal .swiper-slide {
    display: flex;
    align-items: center;
}

.bato-press-modal__overlay {
    background: #000;
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.3;
    cursor: pointer;
}

.bato-press-modal__inner {
    position: relative;
}

.bato-press-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    aspect-ratio: 1;
    font-family: monospace;
    font-size: 2rem;
    color: var(--color-gray-middle);
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

.bato-press-modal__close:hover {
    color: red;
}

.bato-press-modal__content {
    display: flex;
    align-items: center;
    width: 84rem;
    max-width: 100%;
    padding: 4rem 2rem;
    background: #fff;
    gap: 1rem;
}

.bato-press-modal__nav {
    flex: 0 0 auto;
}

.bato-press-modal-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40.5rem;
    max-height: calc(100vh - 12rem);
    max-width: 100%;
    min-height: 5rem;
    margin-inline: auto;
}
.bato-press-modal-item__image {
    height: 80vh;
}
@media screen and (max-width: 1024.9px) {
    .bato-press-slider .slider-nav {
        padding-top: 5rem;
    }
}

@media screen and (max-width: 575.9px) {
    .bato-press-slider__header {
        margin-bottom: 3rem;
    }

    .bato-press-slider-item__title {
        font-size: 2.4rem;
        line-height: calc(26/24);
    }

    .bato-press-slider__list {
        padding-top: 1rem; 
    }

    .bato-press-slider-item {
        width: 28.5rem;
        gap: 1.6rem;
    }
}
/* bato-press-modal END */