@charset "UTF-8";
.parallax_off {
	background: url("../../images/shared/bg_body.webp")repeat center center;
}
.parallax_on {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.parallax_bg01, .parallax_bg02, .parallax_bg03, .parallax_bg04, .parallax_concept01, .parallax_concept02 {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    bottom: 0;
    opacity: 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center top;
    box-sizing: border-box;
    overflow: hidden;
}
/****top****/
.parallax_bg01 {
    background-image: url("../../images/top_con_01.webp");
    /*opacity: 1;*/
    z-index: -5; /**HTMLに記載の順番で下げていく**/
}
.parallax_bg02 {
    background-image: url("../../images/top_con_13.webp");
    z-index: -4; /**HTMLに記載の順番で下げていく**/
}
.parallax_bg03 {
    background-image: url("../../images/top_con_26.webp");
    z-index: -3; /**HTMLに記載の順番で下げていく**/
}
.parallax_bg04 {
    background-image: url("../../images/top_con_28.webp");
    z-index: -2; /**HTMLに記載の順番で下げていく**/
}
/****concept****/
.parallax_concept01 {
    background-image: url("../../images/concept/concept03.webp");
    /*opacity: 1;*/
    z-index: -5; /**HTMLに記載の順番で下げていく**/
}
.parallax_concept02 {
    background-image: url("../../images/concept/concept06.webp");
    /*opacity: 1;*/
    z-index: -4; /**HTMLに記載の順番で下げていく**/
}
@media only screen and (max-width: 800px) {
/****top****/
.parallax_bg01, .parallax_bg02, .parallax_bg03, .parallax_bg04, .parallax_concept01, .parallax_concept02 {
    background-attachment: scroll;
}
}