@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/



/*------------------------------------------------------------------
　header
------------------------------------------------------------------*/

/*  header
------------------------------------------------------------------*/
.header{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 10px 30px 0;
    z-index: 1000;    
}
@media screen and (max-width:1199px){
    .header{
        display: none;
    }
}
/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    position: relative;
    top: -5px;
    width: 360px;
    display: block;
}
/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    flex-shrink: 0;
    flex: 1;
}
/*  header-nav-btns
------------------------------------------------------------------*/
.header-nav-btns{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 12px;
    line-height: 1;
}
/*  header-nav-btns-item
------------------------------------------------------------------*/
.header-nav-btns-item{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5em;
    width: 180px;
    height: 40px;
    border-radius: 25px;
    background: var(--primary-color);
    font-size: .875rem;
    color: #fff;
    text-align: center;
    transition: .2s ease-out;
}
.header-nav-btns-item.sub{
    background: var(--sub-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-btns-item:hover{
        background: var(--accent-color);
    }
}
/*  header-nav-list
------------------------------------------------------------------*/
.header-nav-list{
    display: flex;
    align-items: center;
    border-left: 1px dashed #bbac9d;
    line-height: 1;
}
.header-nav-list > li{
    width: 100%;
}
/*  header-nav-list-item
------------------------------------------------------------------*/
.header-nav-list-item{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 8px;
    width: 100%;
    height: 120px;
    padding: 0 15px;
    border-right: 1px dashed #bbac9d;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    z-index: 1;
}
.header-nav-list-item::after{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-color);
    content: "";
    transition: .2s ease-out;
    z-index: 1;
}
.header-nav-list-item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4em;
    height: 4em;
    background: #fff;
    border-radius: 50%;
}
.header-nav-list-item .icon img{
    width: 70%;
    height: 70%;
    object-fit: contain;
}
/* アクティブ時動作 */
.header-nav-list-item.active::after{
    width: 100%;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-list-item:hover::after{
        width: 100%;
    }
    /*ドロップダウンボタンの場合*/
    .header-dropdown:hover .header-nav-list-item::after{
        width: 100%;
    }
}
@media screen and (max-width:1399px){
    .header-nav-list-item{
        height: 110px;
        font-size: .875rem;
    }
}
/*  header-dropdown
------------------------------------------------------------------*/
.header-dropdown{
    position: relative;
    z-index: 1;
}
/*  header-dropdown-menu
------------------------------------------------------------------*/
.header-dropdown-menu{
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: var(--primary-light-color);
    box-shadow: 0 10px 16px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    line-height: 1;
    transition: .4s ease-out;
    z-index: 1;
}
.header-dropdown-menu.open{
    top: 100%;
    opacity: 1;
    visibility: visible;
}
/*  header-dropdown-item
------------------------------------------------------------------*/
.header-dropdown-item{
    position: relative;
    display: block;
    padding: 1.25em 1em;
    border-bottom: 1px solid #bbac9d;
    font-size: .875rem;
    line-height: 1.2;
    text-align: center;
    transition: .2s ease-out;
}
@media (hover:hover) {
    .header-dropdown-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
}

/*------------------------------------------------------------------
　header-scroll
------------------------------------------------------------------*/

/*  header-scroll
------------------------------------------------------------------*/
.header-scroll{
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
    width: 100%;
    padding: 0 12px;
    background: var(--default-bgcolor);
    transition: .4s ease-out;
    z-index: 1000;
}
.header-scroll.active{
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
}
@media screen and (max-width:1199px){
    .header-scroll{
        display: none;
    }
}
/*  header-scroll-logo
------------------------------------------------------------------*/
.header-scroll-logo{
    display: block;
    width: 186px;
}
/*  header-scroll-nav
------------------------------------------------------------------*/
.header-scroll-nav{
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-shrink: 0;
}
@media screen and (max-width:1399px){
    .header-scroll-nav{
        column-gap: 20px;
    }
}
/*  header-scroll-nav-list
------------------------------------------------------------------*/
.header-scroll-nav-list{
    display: flex;
    column-gap: 30px;
}
@media screen and (max-width:1399px){
    .header-scroll-nav-list{
        column-gap: 20px;
    }
}
/*  header-scroll-nav-list-item
------------------------------------------------------------------*/
.header-scroll-nav-list-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    text-align: center;
    line-height: 1.2;
    z-index: 1;
}
.header-scroll-nav-list-item::after{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--primary-color);
    content: "";
    transition: .2s ease-out;
    z-index: 1;
}
/* アクティブ時動作 */
.header-scroll-nav-list-item.active::after{
    width: 100%;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-scroll-nav-list-item:hover::after{
        width: 100%;
    }
    /*ドロップダウンボタンの場合*/
    .header-dropdown:hover .header-scroll-nav-list-item::after{
        width: 100%;
    }
}
@media screen and (max-width:1399px){
    .header-scroll-nav-list-item{
        font-size: .875rem;
    }
}
/*  header-scroll-nav-btns
------------------------------------------------------------------*/
.header-scroll-nav-btns{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 8px;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .header-scroll-nav-btns{
        column-gap: 4px;
    }
}
/*  header-scroll-nav-btns-item
------------------------------------------------------------------*/
.header-scroll-nav-btns-item{
    display: block;
    padding: 1em 1.5em;
    border-radius: 3em;
    background: var(--primary-color);
    font-size: .875rem;
    color: #fff;
    line-height: 1;
    text-align: center;
    transition: .2s ease-out;
}
.header-scroll-nav-btns-item.sub{
    background: var(--sub-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-scroll-nav-btns-item:hover{
        background: var(--accent-color);
    }
}
@media screen and (max-width:1399px){
    .header-scroll-nav-btns-item{
        font-size: .75rem;
    }
}
/*  header-scroll-dropdown
------------------------------------------------------------------*/
.header-scroll-dropdown{
    position: relative;
}
/*  header-scroll-dropdown-menu
------------------------------------------------------------------*/
.header-scroll-dropdown-menu{
    display: none;
}

/*------------------------------------------------------------------
　header-sp
------------------------------------------------------------------*/

/*  header-sp
------------------------------------------------------------------*/
.header-sp{
    display: none;
}
@media screen and (max-width:1199px){
    .header-sp{
        position: relative;
        display: block;
        height: 72px;
        z-index: 1000;
    }
}
/*  header-sp-logo
------------------------------------------------------------------*/
.header-sp-logo{
    position: fixed;
    top: 12px;
    left: 12px;
    width: 186px;
    z-index: 1;
}
/*  header-sp-nav
------------------------------------------------------------------*/
.header-sp-nav{
    position: fixed;
    top: 0;
    left: 100%;
    width: 300px;
    height: 100vh;
    padding: 60px 0 100px;
    background: var(--default-bgcolor);
    transition: .2s ease-out;
    overflow-y: scroll;
    z-index: 3;
}
.header-sp-nav::-webkit-scrollbar{
    display: none;
}
.header-sp-nav.open{
    transform: translateX(-100%);
}
/*  header-sp-nav-logo
------------------------------------------------------------------*/
.header-sp-nav-logo{
    display: block;
    padding: 0 20px;
    margin-bottom: 10px;
}
/*  header-sp-nav-list
------------------------------------------------------------------*/
.header-sp-nav-list{
    margin-bottom: 20px;
    line-height: 1;
}
/*  header-sp-nav-list-item
------------------------------------------------------------------*/
.header-sp-nav-list-item{
    display: flex;
    align-items: center;
    column-gap: .75em;
    height: 3.75em;
    padding: 0 1em;
    border-bottom: 1px solid #bbac9d;
    font-size: .875rem;
    line-height: 1.2;
}
.header-sp-nav-list-item .icon{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
}
.header-sp-nav-list-item .icon img{
    width: 70%;
    height: 70%;
    object-fit: contain;
}
/* アクティブ時動作 */
.header-sp-nav-list-item.active{
    color: var(--primary-color);
}
/*  header-sp-nav-btns
------------------------------------------------------------------*/
.header-sp-nav-btns{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 0 20px;
}
/*  header-sp-nav-btns-item
------------------------------------------------------------------*/
.header-sp-nav-btns-item{
    display: block;
    padding: 1em 1.5em;
    border-radius: 3em;
    background: var(--primary-color);
    font-size: .875rem;
    color: #fff;
    line-height: 1;
    text-align: center;
}
.header-sp-nav-btns-item.sub{
    background: var(--sub-color);
}
/*  header-sp-dropdown
------------------------------------------------------------------*/
.header-sp-dropdown{
    position: relative;
    z-index: 1;
}
.header-sp-dropdown .toggle{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(3.75em - 1px);
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    font-size: .875rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: .2s ease-out;
    z-index: 2;
}
.header-sp-dropdown .toggle::after{
    content: "＋";
}
/* オープン時動作 */
.header-sp-dropdown .toggle.open::after{
    content: "－";
}
/*  header-sp-dropdown-menu
------------------------------------------------------------------*/
.header-sp-dropdown-menu{
    display: none;
    background: var(--primary-light-color);
}
/*  header-sp-dropdown-item
------------------------------------------------------------------*/
.header-sp-dropdown-item{
    position: relative;
    display: block;
    padding: 1.25em 2.5em 1.25em 2em;
    border-bottom: 1px solid #bbac9d;
    font-size: .8125rem;
    line-height: 1;
    transition: .2s ease-out;
}
.header-sp-dropdown-item::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: .8em;
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 2;
}
/* アクティブ時動作 */
.header-sp-dropdown-item.active{
    color: var(--primary-color);
}
.header-sp-dropdown-item.active::after{
    right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-sp-dropdown-item:hover{
        color: var(--primary-color);
    }
    .header-sp-dropdown-item:hover::after{
        right: .5em;
    }
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:1199px){
    .header-hamburger{
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 52px;
        aspect-ratio: 1 / 1;
        background: var(--primary-color);
        border-radius: 50%;
        transition: .2s ease-out;
        cursor: pointer;
        z-index: 4;
    }
    .header-hamburger .lines {
        position: relative;
        width: calc(100% * .416);
        height: calc(100% * .28);
    }
    .header-hamburger .lines .line {
        position: absolute;
        left: 0;
        height: 2px;
        background: #fff;
        transition: .2s ease-out;
    }
    .header-hamburger .lines .line#line1 {
        top: 0;
        width: 100%;
    }
    .header-hamburger .lines .line#line2 {
        top: calc(50% - 1px);
        width: 100%;
    }
    .header-hamburger .lines .line#line3 {
        bottom: 0;
        width: 100%;
    }
    /* オープン時動作 */
    .header-hamburger.open .lines .line#line1 {
        transform: rotate(-135deg);
        top: 50% !important;
    }
    .header-hamburger.open .lines .line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .lines .line#line3 {
        transform: rotate(135deg);
        top: 50% !important;
    }
}
/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 2;
}
.header-overlay.open{
    opacity: 1;
    visibility: visible;
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/

footer{
    position: relative;
    padding: 80px 0 60px;
    background: var(--primary-color);
    z-index: 1
}
@media screen and (max-width:991px){
    footer{
        padding: 60px 0 20px;
    }
}
/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
    margin-bottom: 100px;
}
@media screen and (max-width:991px){
    .footer-wrapper{
        flex-direction: column;
        justify-content: center;
        align-items: initial;
        row-gap: 40px;
        margin-bottom: 60px;
    }
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    display: block;
    width: 280px;
    margin-bottom: 32px;
    filter: brightness(0) invert(1);
    z-index: 1;
}
@media screen and (max-width:991px){
    .footer-logo{
        margin: 0 auto 32px;
    }
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 12px;
    font-size: .875rem;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .footer-address{
        text-align: center;
    }
}
/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .footer-tel{
        text-align: center;
    }
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(2,auto);
    grid-template-rows: repeat(5,auto);
    row-gap: 20px;
    column-gap: 40px;
    line-height: 1;
}
@media screen and (max-width:991px){
    .footer-nav{
        grid-auto-flow: row;
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: initial;
        gap: 8px;
    }
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    display: block;
    font-size: .875rem;
    color: #fff;
    line-height: 1.2;
    transition: .2s ease-out;
}
.footer-nav-item::before{
    content: "-";
    margin-right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--accent-color);
    }
}
@media screen and (max-width:991px){
    .footer-nav-item{
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 1em 1.5em 1em .7em;
        background: #fff;
        color: var(--black-color);
        z-index: 1;
    }
    .footer-nav-item::before{
        display: none;
    }
    .footer-nav-item::after{
        position: absolute;
        top: 50%;
        right: .7em;
        transform: translateY(-50%);
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-size: .8em;
        font-weight: bold;
    }
}
@media screen and (max-width:575px){
    .footer-nav-item{
        font-size: .75rem;
    }

}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #b3dec6;
    line-height: 1.4;
}
@media screen and (max-width:767px){
    .copyright{
        text-align: center;
    }
}


/*-----------------------------------------------------------------
  common-contact
------------------------------------------------------------------*/

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 100px 0;
    background: var(--primary-light-color);
    z-index: 1;
}
@media screen and (max-width:991px){
    .common-contact{
        padding: 60px 0;
    }
}
/*  common-contact-box
------------------------------------------------------------------*/
.common-contact-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 30px 12px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
}
.common-contact-box .title{
    margin-bottom: 4px;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.4;
}
.common-contact-box .title small{
    display: block;
    font-size: .7em;
}
.common-contact-box .category{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}
.common-contact-box .category > li{
    padding: .5em 1em;
    background: var(--primary-color);
    border-radius: 4px;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
.common-contact-box .category > li.sub{
    background: var(--sub-color);
}
.common-contact-box .tel{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .25em;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}
.common-contact-box .tel i{
    font-size: .75em;
    color: var(--primary-color);
}
@media screen and (max-width:1399px){
    .common-contact-box .title{
        font-size: 1.5rem;
    }
    .common-contact-box .category{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .common-contact-box .category > li{
        padding: .5em 1em;
        background: var(--primary-color);
        border-radius: 4px;
        font-size: .75rem;
        color: #fff;
        line-height: 1;
    }
    .common-contact-box .tel{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:575px){
    .common-contact-box{
        padding: 24px;
    }
    .common-contact-box .title{
        font-size: 1.375rem;
    }
    .common-contact-box .tel{
        font-size: 1.5rem;
    }
}
/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .25em;
    padding: 1.5em;
    background: #fff;
    border-radius: 20px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
.common-contact-mail i{
    color: var(--primary-color);
    transition: .2s ease-out;
}
@media (hover:hover) {
    .common-contact-mail:hover{
        background: var(--accent-color);
    }
    .common-contact-mail:hover,
    .common-contact-mail:hover i{
        color: #fff;
    }
}
@media screen and (max-width:1399px){
    .common-contact-mail{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:575px){
    .common-contact-mail{
        font-size: 1.35rem;
        border-radius: 10px;
    }
}


/*-----------------------------------------------------------------
  common page
------------------------------------------------------------------*/

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    background: url(../images/common/page-top-bg.jpg) no-repeat center / cover;
    margin-bottom: 16px;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .page-top{
        height: 240px;
    }
}
@media screen and (max-width:991px){
    .page-top{
        height: 200px;
    }
}
@media screen and (max-width:767px){
    .page-top{
        height: 160px;
    }
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: relative;
    top: .1em;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}
.page-top-title .jp{
    display: block;
}
.page-top-title .jp small{
    display: block;
    font-size: .6em;
}
.page-top-title .en{
    margin-top: .25em;
    font-size: max(0.6em, .875rem);
    color: var(--primary-color);
}
@media screen and (max-width:1399px){
    .page-top-title{
        font-size: 2.5rem;
    }
}
@media screen and (max-width:991px){
    .page-top-title{
        font-size: 2rem;
    }
}
@media screen and (max-width:767px){
    .page-top-title{
        font-size: 1.75rem;
    }
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    font-size: 12px;
    line-height: 1.5;
}
.breadcrumb > li{
    color: #999;
    --letter-spacing: 0;
}
.breadcrumb > li + li::before{
    display: inline-block;
    margin-right: 10px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.breadcrumb > li > a{
    color: var(--primary-color);
    transition: .2s;
    text-decoration: underline;
}
.breadcrumb > li > a:hover{
    color: var(--accent-color);
}
@media screen and (max-width:767px){
    .breadcrumb{
        font-size: 11px;
    }
}


/*------------------------------------------------------------------
  paging
------------------------------------------------------------------*/
.paging{
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.paging-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    transition: .2s ease-out;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #73574d !important;
    transition: .2s ease-out;
}
.paging-text.current{
    background:  var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .paging-text:hover{
        background:  var(--primary-light-color);
        border-color:  var(--primary-color);
    }
    .paging-text:hover a{
        color:  var(--primary-color) !important;
    }
}
@media screen and (max-width:767px){
    .paging{
        column-gap: 5px;
    }
    .paging-text{
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/*------------------------------------------------------------------
  pagetop-btn
------------------------------------------------------------------*/
#pagetop-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 2;
}
#pagetop-btn img:hover {
    animation: rotates 0.7s linear infinite;
}
@keyframes rotates {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}
@media (max-width: 991px) {
    #pagetop-btn img{
        width: 40px;
        height: auto;
    }
}