.n-content {
    background-image: url(https://oss.yamaha.com.cn/files/20240705/images/n_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
}

.n-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.55em;
    color: #7b47d2;
    text-align: center;
    margin-bottom: 50px;
    font-family: Oswald, "Lucida Grande", sans-serif;
}

.n-container {
    width: 940px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0 16px;
}

.swiper-prev,
.swiper-next {
    position: absolute;
    top: 50%;
    z-index: 1;
    font-size: 14px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-20px);
}

.swiper-button-disabled {
    opacity: 0.2;
    cursor: default;
}

.swiper-prev {
    left: -100px;
}

.swiper-next {
    right: -100px;
}

.n-image {
    aspect-ratio: 380/420;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    background-size: 100% auto;
    background-position: center;
    transition: all 0.3s ease-in-out;
    background-repeat: no-repeat;
}

.n-image:not(.is-todo):hover {
    background-size: 110% auto;
}

.n-image img {
    max-width: 100%;
}

.n-image.is-todo {
    background: rgba(56, 56, 56, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.n-card {
    position: relative;
    padding-bottom: 25px;
}

.n-info {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    white-space: nowrap;
}

.n-career,
.n-name {
    background-color: #7b47d2;
}

.n-career {
    font-size: 14px;
    line-height: 1;
    padding: 5px 8px;
}

.n-name {
    font-size: 20px;
    margin-left: 20px;
    padding: 3px 14px;
}

@media all and (max-width: 430px) {
    .n-image {
        aspect-ratio: 207/288;
        background-size: cover;
    }

    .n-career {
        margin-bottom: 5px;
    }

    .n-name {
        font-size: 18px;
    }
    

    .swiper-prev,
    .swiper-next {
        position: static;
    }

    .swiper-nav {
        display: flex;
        justify-content: center;
        gap: 0 15px;
        margin-top: 30px;
    }

    .n-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .n-content {
        padding: 50px 0;
    }
    
}