.l-top_img{
    object-fit: cover;
    width: 100%;
    height: 600px;
    object-position: 50% 100%;
}

.l-top_back_mid{
    background-color: var(--color_mid);
    text-align: center;
    padding: 20px 0;
}

.l-top_title{
    font-size: 50px;
    font-weight: bold;
    color: var(--color_pale);
    margin: 0;
}

.l-top_subtitle{

    font-size: 18px;
    color: var(--color_pale);
    font-weight: bold;
    margin: 0;
}

.l-top_sentence{
    color: var(--color_black);
    font-weight: bold;
    margin: 0;
    padding: 5px;
}

.l-top_sentence--answer{
    color: var(--color_black);
    font-size: 25px;
    font-weight: bold;
    margin: 0;
    padding: 5px;
    white-space: pre-line;
}

.l-top_about{
    background-color: var(--color_pale);
    display: flex;
    justify-content: right;
    flex: 1;
}


.l-top_about--div{
    margin: auto 50px;
}

.l-top_about--img{
    object-fit: cover;
    position: relative;
    width: 60%;
    max-height: 600px;
    overflow:hidden;
}

.l-top_about--img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 100% 0%;
}

.l-top_about--img::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, transparent 0%, transparent 70%, var(--color_pale) 100%);
    position: absolute;  /*  */
    top: 0;
    left: 0;
}

.l-top_question{
    font-size: 40px;
    text-decoration: underline;
    font-weight: bold;
    text-align: center;
    padding: 50px 0 20px;
}

.l-top_answer{
    
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding: 20px 0 ;
}


.l-top_location{
    background-color: var(--color_dark);
    display: flex;

}

.l-top_location_map{
    width: 47%;
    height: auto;
    margin: 3%;
}

.l-top_location_store{
    flex: 1;
    margin: 3% 3% 3% 0;
    text-align: center;
}

.l-top_location--name{
    font-size: 40px;
    font-weight: bold;
    color: var(--color_pale);
}

.l-top_location--img{
    object-fit: cover;
    width: 100%;
    height: auto;
}


@media screen and (max-width:768px) {
    .l-top_img{
        height: auto;
    }

    .l-top_title{
        font-size: 10vw;
    }

    .l-top_subtitle{
        white-space: pre-line;
        width: 90%;
        text-align: left;
        margin: 0 auto;
    }

    .l-top_about{
        flex-direction: column;
        padding: 0 0 30px;
    }

    .l-top_about--img{
        width: 100%;
        height: auto;
        max-height: 400px;
        order: 1;
    }

    .l-top_about--img img{
        width: 100%;
        height: auto;
    }

    .l-top_about--img::before{
        opacity: 0%;
    }

    .l-top_about--div{
        order: 2;
        width: 90%;
        margin: auto;
    }

    .l-top_sentence--answer{
        font-size: 18px;
    }

    .l-top_question{
        font-size: 6.8vw;
        width: 100%;
        max-width: 100%;
    }

    .l-top_answer{
        white-space: pre-line;
        font-size: 18px;
    }

    .l-top_location{
        flex-direction: column;
    }

    .l-top_location_map{
        width: 90%;
        min-height:250px; 
        margin: 10px auto 20px auto;
        order: 2;
    }

    .l-top_location_store{
        order: 1;
        margin: 0;
    }

    .l-top_location--name{
        font-size: 6vw;
        padding: 10px 0 0;
    }

    .l-top_location--img{
        width: 90%;
        margin: 10px auto;
    }



}