.section-image_background {
    display: flex;
    background-size: cover;
}

.section-image_background .wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: column;
    padding-top: var(--tateru-default-padding);
    padding-bottom: 30px;
}

.section-image_background .wrapper .content {
    width: 50%;
    padding-left: var(--tateru-default-padding);
}

.section-image_background h3 {
    padding-bottom: calc( var(--tateru-default-padding) / 2 );
}

.section-image_background .boxed {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-left: var(--tateru-line-width) solid rgba(255,255,255,0.2);
    border-left: var(--tateru-line-width) solid rgba(0, 0, 0, 0.2);
    padding-left: calc( var(--tateru-default-padding) / 2 );
    max-width: 630px;
}

.section-image_background .disclaimer {
    width: 100%;
    text-align: right;
    color: var(--tateru-color-black);
    font-size: 12px;
}

@media screen and (max-width: 750px) {
    .section-image_background .wrapper .content {
        width: 100%;
        padding-left: 0;
    }
}

@media screen and (max-width: 500px) {
    .section-image_background h3 br {
        display: inline !important;
        content: "";
    }
    .section-image_background h3 br:after {
        display: inline !important;
        content: " ";
    }
}

