.content-wrapper {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1500px;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .content-wrapper {
        width: 768px;
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }
}
@media (min-width: 960px) {
    .content-wrapper {
        width: 80%;
    }
}
.section__header {
    margin-bottom: 3.25rem;
    text-align: center;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}
.section__header-pretitle {
    font-size: clamp(0.875rem, calc(0.875rem + ((1vw - 0.48rem) * 1.1278)), 1.25rem);
    color: #83060F;
    font-family: var(--font-raleway);
    margin-top: 0;
    margin-bottom: 1rem;
}
.section__header-title {
    font-size: clamp(2rem, calc(2rem + ((1vw - 0.48rem) * 4.5113)), 3.5rem);
    color: #403E3E;
    font-family: var(--font-raleway);
    margin-top: 0;
    margin-bottom: 2rem;
    line-height: 1.3em;
}
.section__header-description {
    color: #83060F;
    margin: 0;
    font-family: var(--font-inter);
}
.section__button {
    background: #83060F;
    font-weight: 700;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-urbanist);
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}
.section__button-container {
    text-align: center;
    margin-top: 3.75rem;
}
.section__tab-controller {
    display: flex;
    gap: 1.25rem;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.section__tab-controller-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #403E3E;
    font-family: var(--font-inter);
    padding: 0.5rem 0.25rem;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}
.section__tab-controller-item--active {
    color: #83060F;
    border-bottom-color: #83060F;
}
.section__tab-controller-icon-container {
    font-size: 1.25rem;
}
.section__tab-controller-icon-container img {
    height: 2rem;
    width: auto;
    filter: invert(27%) sepia(4%) saturate(25%) hue-rotate(357deg) brightness(95%) contrast(104%);
}
@media (min-width: 768px) {
    .section__tab-controller-icon-container img {
        height: 3rem;
    }
}
.section__tab-controller-item--active .section__tab-controller-icon-container img {
    filter: invert(13%) sepia(85%) saturate(6171%) hue-rotate(352deg) brightness(67%) contrast(92%);
}

.bg-type-01 {
    background: url('../images/bg-type-01.png') top center repeat-x;
}
.bg-type-02 {
    background: url('../images/bg-type-02.png') top left no-repeat;
    background-size: contain;
}

.navigation-background {
    /*background: #222222;*/
    height: 103px;
}

/* PAGE STYLE */
.page-title--archive {
    text-align: center;
    font-size: 48px;
}

.pagination {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    margin-top: 50px;
}
.pagination__item {
    border: 1px solid #d1d1d1;
    border-right-width: 0;
    text-align: center;
    display: block
}
.pagination__item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.pagination__item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-right-width: 1px;
}
.pagination__link,
.pagination__item > a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: #A7131A;
    font-weight: 700;
    font-family: var(--font-urbanist);
    min-width: 3rem;
}
.pagination__item--current {
    background: #A7131A;
}
.pagination__item--current .pagination__link {
    background: #A7131A;
    color: #ffffff;
}