@charset "UTF-8";
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 下層ページファーストビュー */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
.subFirstView {
    width: 100%;
    height: 250px;
    /* margin-top: var(--navi-height); */
    position: relative;
    padding-left: 100px;
}
.subFirstView h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    padding-left: 200px;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}
.sfvBcolor,
.sfvMcolor {
    display: block;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
}
.sfvBcolor {
    background-color: var(--text-color);
    left: 0;
}
.sfvMcolor {
    background-color: var(--main-color);
    left: 50px;
}
/* 背景画像 */
/* - - - - - - - - - */
.sfvImg {/*共通設定*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.sfvImain {/*デフォルト*/
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.7)),
        url(../images/top00.jpg);
    background-position: bottom;
}
/* 見出し */
/* - - - - - - - - - */
h1.subTitle {
    font-size: 35px;
    margin: 0;
}

@media screen and (max-width:600px) {
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 下層ページファーストビュー */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
    .subFirstView {
        width: 100%;
        height: 180px;
        /* margin-top: var(--navi-height); */
        position: relative;
    }
    .subFirstView h1 {
        padding-left: 150px;
    }
    .sfvBcolor,
    .sfvMcolor {
        width: 30px;
    }
    .sfvMcolor {
        left: 30px;
    }

    /* 見出し */
    /* - - - - - - - - - */
    h1.subTitle {
        font-size: 30px;
        margin: 0;
    }
	
}/* @media screen and (max-width:600px)  */



@media screen and (max-width:480px) {
/* - - - - - - - - - - - - - - - - - - - - - - - - */
/* 下層ページファーストビュー */
/* - - - - - - - - - - - - - - - - - - - - - - - - */
    .subFirstView h1 {
        padding-left: 100px;
    }
	
}/* @media screen and (max-width:480px)  */



