html {
    color: #38404a;
    font-family: CezannePro-M;
    background-color: #eff5fb;
    font-feature-settings: 'palt' on;
}

body {
    min-width: 375px;
}

main.page-lower {
    position: relative;
}
main.page-lower::before {
    background: url('../img/common/lower-bg.webp') no-repeat center center/cover;
    content: '';
    height: 579px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

section {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 500px) {
    main.page-lower::before {
        background: url('../img/common/lower-bg-sp.webp') no-repeat center center/cover;
        height: 378px;
    }
}

span {
    display: inline-block;
}

picture {
    display: block;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hover-txt-wrapper {
    position: relative;
    overflow: hidden;
}

.hover-txt-wrapper::after {
    content: attr(data-txt) "";
    left: 0;
    position: absolute;
    top: 100%;
    transition: transform .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
    font-family: CezannePro-DB;
}

.hover-txt {
    transition: transform .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}

@media screen and (min-width: 901px) {
    .hover-nomal {
        transition: opacity .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
    }

    .hover-nomal:hover {
        opacity: .7;
    }

    .hover-link:hover .hover-txt-wrapper::after {
        transform: translate(0, -100%);
    }

    .hover-link:hover .hover-txt {
        transform: translate(0, -100%);
    }
}

/* utility */
.u-en {
    font-family: "Montserrat", sans-serif;
    font-feature-settings: 'pwid' on, 'palt' on;
}

.u-ja-db {
    font-family: CezannePro-DB;
}

.u-ja-b {
    font-family: CezannePro-B;
}

.u-txt-gradation {
    background: linear-gradient(103deg, #9cd1f0 0.48%, #3685cf 59.16%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.u-color-blue {
    color: #3685cf;
}

/* layout */
.l-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.l-inner {
    margin: 0 auto;
    max-width: 1320px;
}

@media screen and (max-width: 900px) {
    .l-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .l-inner {
        max-width: 500px;
    }
}

/* common */
.pc-only {
    display: block;
}

.br-pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

.br-sp-only {
    display: none;
}

@media screen and (max-width: 900px) {
    .pc-only {
        display: none;
    }
    
    .br-pc-only {
        display: none;
    }
    
    .sp-only {
        display: block;
    }
    
    .br-sp-only {
        display: inline;
    }
}

.c-btn {
    border-radius: 7px;
    width: 100%;
    max-width: 207px;
    height: 50px;
    padding: 10px 18px;
    align-items: center;
    display: inline-flex;
    background-color: #fff;
    border: solid 1px #D0D6D9;
    position: relative;
    transition: all .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83), color .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83), all .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
    --scale-peak: 2;
}

.c-btn::before {
    background-color: #3685cf;
    content: '';
    height: 5px;
    right: 13px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 5px;
    border-radius: 50%;
    transition: transform .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}

.c-btn::after {
    background-color: #d0d6d9;
    content: '';
    height: 13px;
    right: 31px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 1px;
}

.c-btn__txt {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .03em;
}

@keyframes pulse-before {
    0% {
        transform: translate(0, -50%) scale(1);
    }
    50% {
        transform: translate(0, -50%) scale(var(--scale-peak, 2));
    }
    100% {
        transform: translate(0, -50%) scale(1);
    }
}

@media screen and (min-width: 901px) {
    .c-btn:hover {
        border: solid 1px #3685CF;
        color: #3685CF;
    }

    .c-btn:hover:before {
        animation: pulse-before .6s linear forwards;
    }
}

.c-subHead {
    position: relative;
    padding-left: 21px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.c-subHead::before {
    background: url('../img/common/subHead-deco.webp') no-repeat center center/contain;
    content: '';
    height: 11px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 11px;
}

.c-head {
    margin-top: 17px;
    font-size: 40px;
    line-height: 1.45;
    letter-spacing: .03em;
}

.c-btn__prev,
.c-btn__next {
    width: 53px;
    height: 53px;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}

.c-btn__prev {
    background: #3685CF;
}

.c-btn__next {
    background: #3685CF;
}

.c-btn__prev svg,
.c-btn__next svg {
    stroke: #fff;
    transition: transform .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}

@media screen and (min-width: 901px) {
    .c-btn__prev:hover {
        background: #3c698f;
    }
    .c-btn__prev:hover svg {
        transform: translate(-6px, 0);
    }

    .c-btn__next:hover {
        background: #3c698f;
    }
    .c-btn__next:hover svg {
        transform: translate(6px, 0);
    }
}

@media screen and (max-width: 900px) {
    .c-subHead {
        padding-left: 14px;
        font-size: 12px;
    }

    .c-subHead::before {
        height: 8px;
        top: 4px;
        width: 8px;
    }

    .c-head {
        margin-top: 8px;
        font-size: 24px;
    }
}

.c-lowerMv {
    padding-top: 226px;
}

.c-lowerMv__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.c-lowerMv__txts {
    padding-bottom: 8px;
}

.c-lowerMv__subHead {
    font-size: 85px;
    font-weight: 500;
    line-height: 1.5;
}

.c-lowerMv__head {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .03em;
    position: relative;
    padding-left: 21px;
}
.c-lowerMv__head::before {
    background: url('../img/common/subHead-deco.webp') no-repeat center center/contain;
    content: '';
    height: 11px;
    left: 0;
    position: absolute;
    top: 9px;
    width: 11px;
}

.c-breadcrumb__contents {
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: .02em;
    overflow-x: scroll;
    overflow-y: visible;
    -ms-overflow-style: none;
    scrollbar-width: none;
    
}
.c-breadcrumb__contents::-webkit-scrollbar {
    display: none;
}

.c-breadcrumb__contents a {
    text-decoration: underline;
    white-space: nowrap;
}

.c-breadcrumb__contents>span {
    display: inline-flex;
    gap: 34px;
}

.c-breadcrumb__contents>span>span {
    position: relative;
}
.c-breadcrumb__contents>span>span:last-of-type {
    color: #929EAB;
    white-space: nowrap;
}

.c-breadcrumb__contents>span>span::before {
    background: linear-gradient(90deg, #9CD1F0 -2.7%, #3685CF 100%);
    content: '';
    height: 1px;
    left: calc(100% + 12px);
    position: absolute;
    top: 50%;
    width: 10px;
    transform: translate(0, -50%);
}
.c-breadcrumb__contents>span>span:last-of-type:before {
    display: none;
}

@media screen and (min-width: 901px) {
    .c-breadcrumb__contents a {
        transition: all .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
    }

    .c-breadcrumb__contents a:hover {
        opacity: .7;
        color: #3685CF;
    }
}

@media screen and (max-width: 900px) {
    .c-lowerMv {
        padding-top: 153px;
    }

    .c-lowerMv__inner {
        display: block;
    }

    .c-lowerMv__txts {
        padding-bottom: 0;
    }

    .c-lowerMv__subHead {
        font-size: 40px;
    }

    .c-lowerMv__head {
        margin-top: 5px;
        font-size: 15px;
    }
    .c-lowerMv__head::before {
        top: 5px;
    }

    .c-lowerMv__breadcrumbs {
        position: absolute;
        width: 100%;
        padding: 0 20px;
        left: 0;
        top: 78px;
        z-index: 3;
    }

    .c-breadcrumb__contents {
        font-size: 10px;
    }
}

@keyframes img-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 3px));
    }
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.p-header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 25px 40px;
    z-index: 90;
    transition: background-color .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}
.p-header.js-active {
    background-color: #f9fcff;
}

.p-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-header__left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.p-header__logo {
    display: flex;
    width: 180px;
}

.p-header__txt {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: .02em;
}

.p-header__right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.p-header__nav ul {
    display: flex;
    gap: 30px;
}

.p-header__nav ul a {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .03em;
    display: inline-block;
    position: relative;
    transition: all .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}
.p-header__nav ul a::before {
    background-color: #9399A0;
    content: '';
    height: 1px;
    left: 50%;
    position: absolute;
    bottom: 0;
    width: 0;
    transform: translate(-50%, 0);
    transition: all .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}

.p-header__btn {
    position: relative;
    width: 151px;
    height: 41px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 5px 18px;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .03em;
    background: #3685CF;
    transition: all .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}
.p-header__btn::before {
    background-color: #fff;
    content: '';
    height: 5px;
    right: 13px;
    position: absolute;
    top: 50%;
    width: 5px;
    border-radius: 100vh;
    transform: translate(0, -50%);
    transition: transform .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}
.p-header__btn::after {
    background-color: #fff;
    content: '';
    height: 13px;
    right: 31px;
    position: absolute;
    top: 50%;
    width: 1px;
    opacity: .3;
    transform: translate(0, -50%);
}

@media screen and (min-width: 901px) {
    .p-header__nav ul a:hover {
        color: #9399A0;
    }
    .p-header__nav ul a:hover:before {
        width: 100%;
    }

    .p-header__btn:hover {
        background: #3c698f;
    }

    .p-header__btn:hover:before {
        animation: pulse-before .6s linear forwards;
    }
}

@media screen and (max-width: 1100px) {
    .p-header__txt {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .p-header {
        padding: 0;
    }

    .p-header__top {
        color: #fff;
        text-align: center;
        font-size: 10px;
        line-height: 1.4;
        letter-spacing: .02em;
        padding: 3px 5px;
        background-color: #0f4e8a;
    }

    .p-header__inner {
        padding: 10px 20px;
    }

    .p-header__logo {
        width: 144px;
    }

    .p-header__right {
        gap: 15px;
    }

    .p-header__nav {
        display: none;
    }

    .p-header__btn {
        width: 122px;
        height: 33px;
        border-radius: 4px;
        padding: 5px 13px;
        font-size: 12px;
    }
    .p-header__btn::before {
        right: 10px;
    }
    .p-header__btn::after {
        right: 25px;
    }

    .p-hamburger__btn {
        position: relative;
        width: 24px;
        height: 14px;
    }

    .p-hamburger__btn span {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #0f4e8a;
        left: 0;
        top: 0;
    }
    .p-hamburger__btn span:nth-of-type(2) {
        top: 50%;
        transform: translate(0, -50%);
    }
    .p-hamburger__btn span:nth-of-type(3) {
        top: unset;
        bottom: 0;
    }
}

.p-hamburger {
    display: none;
}

@media screen and (max-width: 900px) {
    .p-hamburger {
        display: block;
        width: 324px;
        height: 100vh;
        transition: transform .6s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
        background-color: #fff;
        position: fixed;
        z-index: 99;
        top: 0;
        right: 0;
        padding: 90px 20px 60px;
        transform: translate(101%, 0);
    }
    .p-hamburger.js-active {
        transform: translate(0, 0);
    }

    .p-hamburger__btn--close {
        position: absolute;
        width: 40px;
        height: 40px;
        border-radius: 100vh;
        background: linear-gradient(141deg, #9CD1F0 18.19%, #3685CF 87.93%);
        right: 20px;
        top: 20px;
    }

    .p-hamburger__btn--close span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 15px;
        height: 2px;
        background-color: #fff;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .p-hamburger__btn--close span:nth-of-type(2) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .p-hamburger__nav ul {
        border-top: #d0d6d9 solid 1px;
    }

    .p-hamburger__nav ul li {
        padding: 15px 0;
        border-bottom: #d0d6d9 solid 1px;
    }

    .p-hamburger__nav ul li a {
        display: inline-block;
        font-size: 14px;
        letter-spacing: .03em;
        line-height: 1.7;
    }

    .p-hamburger__cta {
        display: flex;
        align-items: center;
        width: 100%;
        height: 57px;
        border-radius: 7px;
        background: linear-gradient(96deg, #9CD1F0 4.22%, #3685CF 71.54%);
        margin-top: 25px;
        padding: 5px 26px;
        color: #fff;
        font-size: 17px;
        line-height: 1.7;
        letter-spacing: .03em;
        position: relative;
    }

    .p-hamburger__cta::before {
        background: url('../img/common/hamburger-btn-arrow.png') no-repeat center center/contain;
        content: '';
        height: 21px;
        right: 22px;
        position: absolute;
        top: 50%;
        width: 21px;
        transform: translate(0, -50%);
    }

    .p-hamburger__tels {
        margin-top: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .p-hamburger__tel--num {
        font-size: 25px;
        font-weight: 600;
        line-height: 1.5;
        letter-spacing: .05em;
        position: relative;
        padding-left: 25px;
    }
    .p-hamburger__tel--num::before {
        background: url('../img/common/tell-icon.webp') no-repeat center center/contain;
        content: '';
        height: 19px;
        left: 0;
        position: absolute;
        top: 9px;
        width: 19px;
    }

    .p-hamburger__tel--time {
        font-feature-settings: 'palt' on;
        font-size: 11px;
        line-height: 1.45;
        letter-spacing: .03em;
    }

    .p-hamburger__infos {
        margin-top: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 13px;
    }

    .p-hamburger__logo {
        width: 132px;
    }

    .p-hamburger__address {
        text-align: center;
        font-size: 12px;
        line-height: 1.6;
        letter-spacing: .02em;
    }
}

/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
.p-footer {
    position: relative;
    background: url('../img/common/footer-bg.webp') no-repeat center center/cover;
    z-index: 3;
}
.p-footer.--contact {
    background: url('../img/common/footer-bg02.webp') no-repeat center center/cover;
}

.p-footer__cta {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.p-footer__cta::before {
    background-color: #fff;
    content: '';
    height: 1px;
    left: 50%;
    position: absolute;
    bottom: 0;
    width: calc(100% - 80px);
    transform: translate(-50%, 0);
    opacity: .3;
    max-width: 1320px;
}

.p-footer__cta--inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-footer__cta--txts {
    width: 50%;
    padding-right: 40px;
}

.p-footer__cta--subHead {
    color: #fff;
}

.p-footer__cta--head {
    margin-top: 17px;
    color: #fff;
    font-size: 38px;
    line-height: 1.45;
    letter-spacing: .03em;
}

.p-footer__cta--txt {
    margin-top: 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: .02em;
}

.p-footer__cta--btns {
    width: 50%;
    border-radius: 10px;
    border: 1px solid #fff;
    background: linear-gradient(189deg, rgba(255, 255, 255, 0.80) 4.66%, #FFF 85.31%);
    box-shadow: 40px 40px 80px 0 rgba(20, 83, 103, 0.11);
    backdrop-filter: blur(7.5px);
    padding: 45px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    row-gap: 20px;
}

.p-footer__cta--tels {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.p-footer__cta--tel {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .05em;
    position: relative;
    padding-left: 36px;
}
.p-footer__cta--tel::before {
    background: url('../img/common/tell-icon.webp') no-repeat center center/contain;
    content: '';
    height: 25px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 25px;
}

.p-footer__cta--time {
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: .03em;
}

.p-footer__cta--btn {
    width: 287px;
    height: 65px;
    border-radius: 7px;
    background: #3685CF;
    display: flex;
    align-items: center;
    padding: 5px 28px;
    position: relative;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: .03em;
    transition: all .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}

.c-btn__txt.--footer {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: .03em;
}

.p-footer__cta--btn .--arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translate(0, -50%);
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-footer__cta--btn .--arrow::before {
    background-color: #fff;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 100%;
    border-radius: 100vh;
    transform: translate(-50%, -50%);
    transition: transform .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}

.p-footer__cta--btn .--arrow svg {
    stroke: #3785cf;
    position: relative;
    z-index: 2;
    transition: transform .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}

.p-footer__main {
    padding-top: 79px;
    padding-bottom: 74px;
}

.p-footer__inner {
    position: relative;
    z-index: 2;
}

.p-footer__upper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-footer__logo {
    width: 195px;
}

.p-footer__list {
    color: #fff;
    display: flex;
    gap: 30px;
}

.p-footer__list a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .03em;
    transition: color .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}
.p-footer__list a::before {
    background-color: #7c89a1;
    content: '';
    height: 1px;
    left: 50%;
    position: absolute;
    bottom: 0;
    width: 0;
    transform: translate(-50%, 0);
    transition: width .5s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
}

.p-footer__lower {
    margin-top: 49px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.p-footer__txts {
    color: #fff;
}

.p-footer__txt01 {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .02em;
}

.p-footer__txt02 {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
}

.p-footer__copyRight {
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .04em;
}

@media screen and (min-width: 901px) {
    .p-footer__cta--btn:hover .--arrow::before {
        transform: translate(-50%, -50%) scale(1.2);
    }

    .p-footer__cta--btn:hover .--arrow svg {
        transform: rotate(360deg);
    }

    .p-footer__list a:hover {
        color: #7c89a1;
    }

    .p-footer__list a:hover:before {
        width: 100%;
    }

    .p-footer__cta--btn:hover {
        background: #3c698f;
    }
}

@media screen and (max-width: 900px) {
    .p-footer {
        background: url('../img/common/footer-bg-sp.webp') no-repeat center center/cover;
    }
    .p-footer.--contact {
        background: url('../img/common/footer-bg02-sp.webp') no-repeat center center/cover;
    }

    .p-footer__cta {
        padding-top: 60px;
        padding-bottom: 0;
    }
    .p-footer__cta::before {
        display: none;
    }

    .p-footer__cta--inner {
        display: block;
    }

    .p-footer__cta--txts {
        width: 100%;
        padding-right: 0;
    }

    .p-footer__cta--subHead {
        color: #fff;
    }

    .p-footer__cta--head {
        margin-top: 8px;
        font-size: 24px;
    }

    .p-footer__cta--txt {
        margin-top: 15px;
        font-size: 14px;
    }

    .p-footer__cta--btns {
        margin-top: 25px;
        width: 100%;
        flex-direction: column;
        padding: 20px 24px 24px;
        row-gap: 15px;
    }

    .p-footer__cta--btn {
        width: 100%;
    }

    .p-footer__main {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .p-footer__upper {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .p-footer__logo {
        margin-top: 35px;
        width: 146px;
    }

    .p-footer__list {
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        font-size: 14px;
        gap: 0;
    }

    .p-footer__list li {
        padding: 15px 0 15px;
        border-top: solid #2B4964 1px;
    }

    .p-footer__list li:nth-last-of-type(1) {
        border-bottom: solid #2B4964 1px;
    }

    .p-footer__lower {
        margin-top: 20px;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }

    .p-footer__txt01 {
        font-size: 14px;
    }

    .p-footer__txt02 {
        margin-top: 8px;
        font-size: 12px;
    }

    .p-footer__copyRight {
        margin-top: 35px;
        font-size: 10px;
    }
}

/*===========================================================================*/
/*  pagination  */
/*===========================================================================*/
.c-pagination {
    display: flex;
    justify-content: end;
    gap: 40px;
    align-items: center;
    margin-top: 45px;
}

.c-pagination__prev {
    width: 8px;
    transform: rotate(180deg);
}
.c-pagination__prev::before {
    background-color: #929EAB;
    content: '';
    height: 28px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 28px;
    border-radius: 50%;
    z-index: -1;
}

.c-pagination__arrow--left {
    display: flex;
    align-items: center;
}

.c-pagination__next {
    position: relative;
    width: 8px;
}
.c-pagination__next::before {
    background-color: #929EAB;
    content: '';
    height: 28px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 28px;
    border-radius: 50%;
    z-index: -1;
}

.c-pagination__arrow--right {
    display: flex;
    align-items: center;
}

.c-pagination__nums {
    display: flex;
    gap: 40px;
}

.c-pagination__nums span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1; 
}

.c-pagination__nums a {
    color: #929EAB;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s ease;
}

@media screen and (min-width: 901px) {
    .c-pagination__nums a:hover {
        color: #3685CF;
    }
}

@media screen and (max-width: 900px) {
    .c-pagination {
        justify-content: center;
        gap: 37px;
        margin-top: 35px;
    }

    .c-pagination__nums {
        gap: 37px;
    }

    .c-pagination__nums span {
        font-size: 15px; 
    }

    .c-pagination__nums a {
        font-size: 15px;
    }
}

/*===========================================================================*/
/*  animation  */
/*===========================================================================*/
.fade-wrapper {
    overflow: hidden;
}

.fade-up {
    transition: transform .4s 0s cubic-bezier(0.12, 0.81, 0.41, 0.83);
    transform: translate(0, 101%);
}
.fade-up.fade-active {
    transform: translate(0, 0);
}

.fade-img {
    transform: scale(1.12);
    transition: transform 1.6s 0s linear;
}
.fade-img.fade-active {
    transform: scale(1);
}

.delay01.fade-active {
    transition-delay: .1s !important;
}
.delay02.fade-active {
    transition-delay: .2s !important;
}
.delay03.fade-active {
    transition-delay: .3s !important;
}
.delay04.fade-active {
    transition-delay: .4s !important;
}
.delay05.fade-active {
    transition-delay: .5s !important;
}
.delay06.fade-active {
    transition-delay: .6s !important;
}
.delay07.fade-active {
    transition-delay: .7s !important;
}
.delay08.fade-active {
    transition-delay: .8s !important;
}
.delay09.fade-active {
    transition-delay: .9s !important;
}
.delay10.fade-active {
    transition-delay: 1s !important;
}
.delay11.fade-active {
    transition-delay: 1.1s !important;
}
.delay12.fade-active {
    transition-delay: 1.2s !important;
}
.delay13.fade-active {
    transition-delay: 1.3s !important;
}
.delay14.fade-active {
    transition-delay: 1.4s !important;
}
.delay15.fade-active {
    transition-delay: 1.5s !important;
}
.delay16.fade-active {
    transition-delay: 1.6s !important;
}
.delay17.fade-active {
    transition-delay: 1.7s !important;
}
.delay18.fade-active {
    transition-delay: 1.8s !important;
}
.delay19.fade-active {
    transition-delay: 1.9s !important;
}
.delay20.fade-active {
    transition-delay: 2s !important;
}
.delay21.fade-active {
    transition-delay: 2.1s !important;
}