.visual-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    aspect-ratio: 16 / 5;
    overflow: hidden;
}

.visual-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-banner__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.visual-banner__inner p {
    color: #fff;
    font-size: 1.3rem;
    font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.visual-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .visual-banner {
        height: 200px;
    }

    .visual-banner__inner p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .visual-banner__inner p {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}