/* =============================================
   MAC Page Header - 下層ページタイトルセクション
   ============================================= */

.mac-p-page-header {
    position: relative;
    height: 320px;
    padding-top: 70px;
    box-sizing: content-box;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mac-p-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.mac-p-page-header__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding: 0 50px;
    text-align: center;
}

.mac-p-page-header__title {
    background: none !important;
    color: #fff !important;
    font-family: "Roboto Slab", "Noto Serif JP", serif;
    font-size: 38px !important;
    font-weight: 300;
    letter-spacing: 0.18em;
    line-height: 1.3;
    margin: 0;
    padding: 0 !important;
    display: inline-block;
    position: relative;
}

.mac-p-page-header__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #ff1414;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 991px) {
    .mac-p-page-header {
        height: 260px;
        padding-top: 60px;
    }
    .mac-p-page-header__inner {
        padding: 0 35px;
    }
    .mac-p-page-header__title {
        font-size: 30px !important;
    }
}

@media only screen and (max-width: 767px) {
    .mac-p-page-header {
        height: 200px;
    }
    .mac-p-page-header__inner {
        padding: 0 20px;
    }
    .mac-p-page-header__title {
        font-size: 24px !important;
        letter-spacing: 0.12em;
    }
    .mac-p-page-header__title::after {
        width: 40px;
        margin-top: 12px;
    }
}
