.insideBanner {
    position: relative;
}

.insideBanner img {
    width: 100%;
}

.insideBanner__text {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 50px 0;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.5));
}

.insideBanner .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.bannerTitle--row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.bannerTitle {
    position: relative;
    text-align: right;
    color: white;
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
}

.bannerTitle span {
    font-size: 20px;
}

.bannerTitle--row .bannerTitle {
    text-align: left;
}

.bannerTitle:before {
    content: '';
    position: absolute;
}

.bannerTitle--news:before {
    bottom: -25px;
    left: -125px;
    width: 75px;
    height: 75px;
    background: url('../images/title_pattern_news.svg') center no-repeat;
    background-size: auto 35px;
}

.bannerTitle--about:before {
    top: -25px;
    left: -25px;
    width: 75px;
    height: 75px;
    background: url('../images/title_pattern_about.svg') center no-repeat;
    background-size: auto 35px;
}

.bannerTitle--contact:before {
    top: -25px;
    left: -25px;
    width: 75px;
    height: 75px;
    background: url('../images/title_pattern_contact.svg') center no-repeat;
    background-size: auto 35px;
}

.bannerTitle--CSR:before {
    top: -25px;
    left: -25px;
    width: 75px;
    height: 75px;
    background: url('../images/title_pattern_CSR.svg') center no-repeat;
    background-size: auto 35px;
}

.titleBrandList {
    display: flex;
    flex-direction: row;
    padding: 15px 25px;
}

.titleBrandList img {
    height: 65px;
}



.insideContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    background: #e9e9e9;
}

.insideContent:nth-child(2n+1) {
    background: white;
}

.insideContent--white {
    background: white;
}

.insideContent__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}




.route {
    display: flex;
    flex-direction: row;
}

.route li + li:before {
    content: " > ";
    display: inline-block;
    padding: 0 10px;
}

.route a {
    color: #333;
    text-decoration: none;
}




.tagLink {
    display: flex;
    flex-direction: row;
}

.tagLink li + li:before {
    content: " | ";
    display: inline-block;
    padding: 0 15px;
}

.tagLink li a {
    color: #333;
    text-decoration: none;
}




.insideContent__box {
    display: flex;
    flex-direction: column;
    padding: 50px;
    background: white;
}

.insideContent__section {
    display: flex;
    flex-direction: column;
}

.insideContent__section + .insideContent__section {
    margin-top: 75px;
}

.insideContent__section .title {
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 35px;
    font-weight: 700;
}

.insideContent__section p,
.insideContent__section ul li  {
    font-size: 16px;
    line-height: 30px;
}

.insideContent__section p + p {
    margin-top: 25px;
}

.insideContent__section ul li + li {
    margin-top: 10px;
}



@media screen and (max-width: 978px) {

    .insideBanner__text {
        padding: 15px 0;
    }

    .bannerTitle--news:before {
        bottom: -15px;
        left: -75px;
        width: 50px;
        height: 50px;
        background-size: auto 20px;
    }
    
    .bannerTitle--about:before {
        top: -15px;
        left: -15px;
        width: 50px;
        height: 50px;
        background-size: auto 20px;
    }
    
    .bannerTitle {
        font-size: 24px;
        line-height: 24px;
    }
    
    .bannerTitle span {
        display: inline-block;
        font-size: 15px;
        margin-bottom: 5px;
    }
    

    .insideContent {
        padding: 25px 0;
    }

    .insideContent__top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .insideContent__top > * + * {
        margin-top: 15px;
    }

    .insideContent__box {
        padding: 25px;
    }

    .titleBrandList {
        display: none;
    }
    
    
}