/*----- ヘッダー画像 -----*/
.header-bg-img img {
    width: 100%;
}

.header-picture-area {
    position: relative;
}

.header-bg-img::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.header-picture-inner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-picture-inner-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}

/*----- レスポンシブ対応 -----*/
@media screen and (max-width: 856px) {
    .header-picture-inner-title {
        font-size: 35px;
    }
}

@media screen and (max-width: 658px) {
    .header-picture-inner-title {
        font-size: 30px;
    }
}