.section-image_title {
    display: flex;
    align-items: flex-end;
}

.section-image_title .wrapper {
    width: 100%;
}

.section-image_title .title {
    background-color: var(--tateru-color-primary);
    color: var(--tateru-color-white);
    width: 50%;
    height: 100px;
    padding-left: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.section-image_title.no-box .title {
    background-color: transparent;
    padding-left: 0;
    /* height: auto; */
}

@media screen and (max-width: 1000px) {
    .section-image_title .title {
        width: auto;
    }
}

@media screen and (max-width: 500px) {
    .section-image_title .title {
        height: auto;
        padding: 20px;
        font-size: 1.5rem;
        justify-content: center;
        text-align: center;
    }
}