/* banner */
.banner-container {
    position: relative;
}

.banner-container * {
    margin-bottom: 0;
}

.banner-container .img {
    display: block;
    width: 100%;
    height: 56.25vw;
}

.banner-container .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-container .content .title {
    font-size: max(5.2vw, 30px);
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

.banner-container .content .en-title {
    font-size: max(3.125vw, 20px);
    color: white;
    text-align: center;
    line-height: 1.5;
}

@media screen and (min-width: 600px) {
    .banner-container .img {
        height: unset;
    }
}

@media screen and (min-width: 1200px) {}