/*mv*/
.section-mv {
    position: relative;
}
.mvOverlay {
    width: 100%;
    height: 100vh; /* 必要な高さを指定 */
    background-image: url("../image/mv.jpg");
    background-size: cover;
    background-position: center;
}

.mvOverlay::after {
    content: "";
    position: absolute;
    inset: 0; /* top, right, bottom, left全部0 */
    background: rgba(0, 0, 0, 0.4); /* 半透明の黒 */
}
.mv-title {
    font-size: 64rem;
    color: #fff;
    position: absolute;
    bottom: 80rem;
    left: 96rem;
    letter-spacing: 14rem;
    line-height: 110rem;
	font-family: 'Roboto', sans-serif;
    /*font-family: Cambria, serif;*/
}
@media(max-width:640px){
    .mv-title {
        font-size: 40rem;
        letter-spacing: 5rem;
        line-height: 68rem;
        width: 87vw;
        left: 40rem;
        bottom: 150rem;
    }
}
/*companyセクション*/
.section-company {
    position: relative;
    margin-bottom: 150rem;
}
.companyImg {
    width: 50%;
}
.companyText {
    position: absolute;
    background: #f4f5f6;
    padding: 30rem 50rem;
    width: 50%;
    right: 0;
    bottom: 67rem;
}
.companyBtn {
    position: absolute;
    bottom: -40px;
    right: 0;
}
.companyContents {
    position: relative;
}
@media (max-width: 640px) {
    .companyImg {
        width: 80%;
    }
    .companyText {
        position: initial;
        background: #f4f5f6;
        padding: 30rem 50rem;
        width: 70%;
        margin: 0 0 0 auto;
        transform: translateY(-40px);
    }
    .companyBtn {
        position: initial;
        margin-top: 0;
    }
    .section-company {
        margin-bottom: 100rem;
    }
}
/*aboutセクション*/
.section-about {
    background: #122E4D;
    padding: 54rem 0 70rem;
    color: #fff;
    margin-bottom: 100rem;
}