.l-page {
    padding-bottom: 80px;
}

@media (min-width: 768px) {

    .l-page {
        padding-bottom: 150px;
    }

}

/*---------------------------------
セクションタイトル（下層ページ共通）
---------------------------------*/

.section_title {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .section_title {
        font-size: 25px;
        margin-bottom: 25px;
    }
}

/*---------------------------------
メインビジュアル（下層ページ共通）
---------------------------------*/

.mv {
    background: url("../images/pages/mv_bg_sp.png") no-repeat center bottom / cover;
    padding: 110px 0 77px;
    margin-bottom: 25px;
}

.mv-inner {
    width: calc(100% - 40px);
    margin: 0 auto;
}

.mv-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .mv {
        background-image: url("../images/pages/mv_bg.png");
        background-size: 100% 100%;
        padding: 185px 20px 138px;
    }

    .mv-inner {
        width: 100%;
        max-width: 1000px;
    }

    .mv-title {
        font-size: 35px;
    }
}

/*---------------------------------
パンくずリスト
---------------------------------*/

.breadcrumb {
    margin-bottom: 65px;
}

.breadcrumb_list {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 13px;
}

.breadcrumb_item {
    display: flex;
    align-items: center;
}

.breadcrumb_item+.breadcrumb_item::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid var(--text-color);
    border-right: 1.5px solid var(--text-color);
    transform: rotate(45deg);
    margin: 0 8px;
    flex-shrink: 0;
}

.breadcrumb_link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.breadcrumb_home-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.breadcrumb_current {
    color: var(--text-color);
}

@media (min-width: 768px) {
    .breadcrumb {
        padding: 0 20px;
        margin-bottom: 100px;
    }

    .breadcrumb_list {
        font-size: 14px;
    }

    .breadcrumb_home-icon {
        width: 18px;
        height: 18px;
    }
}