* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider_p {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* max-width: 840px; */
    overflow: hidden;
    margin: auto;
}

.slides_p {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slides_p img {
    width: 100%;
    height: auto;
}

/* ナビゲーション矢印 */
.prev_p, .next_p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
}

.prev_p { left: 10px; }
.next_p { right: 10px; }

.prev_p:hover, .next_p:hover {
    background: rgba(0, 0, 0, 0);
}

/* ドットナビゲーション */
.dots_p {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot_p {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot_p.active {
    background: white;
}
