* {
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}
.section {
    display: block;
    width: 100%;
    position: relative;
}
.welcome-content {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40%;
    background: #30B396;
    overflow-y: auto;
    height: 100%;
    display: block;
}
.welcome-content--inner {
    display: block;
    padding: 3rem;
    color: #ffffff;
}
.welcome-content--inner .logo {
    width: 120px;
    display: inline-block;
    margin-bottom: 2rem;
}
.welcome-content--inner .title {
    font-size: 2rem;
    font-family: 'Vesper Libre', serif;
    font-weight: 400;
    line-height: 1.3;
    padding-right: 0rem;
}
.welcome-image {
    /* position: absolute; */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: 20% center;
    background-repeat: no-repeat;
}
@media screen and (min-width: 1599px) {
    .welcome-content--inner .title {
        font-size: 2.6rem;
        padding-right: 5rem;
    }
}
@media screen and (max-width: 1199px) {
    .welcome-content, .welcome-image {
        width: 50%;
    }
}
@media screen and (max-width: 991px) {
    .welcome-content--inner .logo {
        width: 80px;
    }
    .welcome-content--inner .title {
        font-size: 1.5rem;
    }
    .welcome-content--inner {
        padding: 2rem;
    }
    .welcome-image {
        background-position: 39% center;
    }
    .welcome-content--inner h4 {
        font-size: .78rem;
    }
}
@media screen and (max-width: 767px) {
    .welcome-content, .welcome-image {
        width: 100%;
        position: relative;
        top: inherit;
        bottom: inherit;
        left: inherit;
        right: inherit;
        display: block;
    }
    .welcome-image {
        padding-top: 90%;
    }
    .welcome-content--inner {
        padding: 1.2rem;
    }
    
}