.inner-image-banner {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    /* height: 500px;  */
    margin: auto;
    margin-top: 7px;
    overflow: hidden; /* Ensures content does not overflow */
    margin-top: 109px !important;
}


.inner-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container without stretching */
}


.overlay-text {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5); /* Black with transparency */   
    padding: 60px;
}

/* Japanese text */
.jp-text {
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* English text */
.en-text {
    font-size: 18px;
}

.inner-image-banner-mob{
    display: none;
}

@media (max-width:769px){
.overlay-text {
    padding: 40px;
    left: 50%;
}
.inner-image-banner {
margin-top:calc(109px - 14px) !important;
}
}

@media(max-width:500px){
    .overlay-text {
        padding: 20px;
    }

.jp-text {
    font-size: 20px;
}

.en-text {
    font-size: 14px;
}

}


@media (min-width: 1367px) {
    .inner-image-banner{
        height: 500px;
    }
}