@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-pc
------------------------------------------------------------------*/
.header-pc{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
@media screen and (max-width:991px){
    .header-pc{
        display: none;
    }
}
/*  header-top
------------------------------------------------------------------*/
.header-top{
    display: flex;
    align-items: center;
    column-gap: 30px;
    height: 70px;
    padding: 0 20px;
    background: #fff;
}
@media screen and (max-width:1399px){
    .header-top{
        height: 58px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    width: 340px;
    margin-right: auto;
}
@media screen and (max-width:1399px){
    .header-logo{
        width: 280px;
    }
}

/*  header-tel
------------------------------------------------------------------*/
.header-tel{
    flex-shrink: 0;
    text-align: center;
}
.header-tel .num{
    margin-bottom: 4px;
    font-family: var(--en-font);
    font-size: .875rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.header-tel .num span{
    font-size: 1.5rem;
}
.header-tel .time{
    font-size: .75rem;
    color: #555555;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .header-tel .num{
        margin-bottom: 2px;
    }
    .header-tel .num span{
        font-size: 1.375rem;
    }
}
/*  header-btn-list
------------------------------------------------------------------*/
.header-btn-list{
    display: flex;
    align-items: center;
    column-gap: 12px;
    flex-shrink: 0;
}
@media screen and (max-width:1399px){
    .header-btn-list{
        column-gap: 8px;
    }
}
/*  header-btn
------------------------------------------------------------------*/
.header-btn{
    display: block;
    padding: .75em 1.5em;
    line-height: 1;
    transition: .2s ease-out;
}
.header-btn.member{
    background: var(--accent-color);
}
.header-btn.logout{
    background: var(--black-color);
    color: #fff;
}
.header-btn.contact{
    background: var(--sub-color);
    color: #fff;
}
@media (hover:hover) {
    .header-btn:hover{
        background: var(--red-color);
        color: #fff;
    }
}
@media screen and (max-width:1399px){
    .header-btn{
        font-size: .875rem;
    }
}
/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    display: flex;
    background: #8e9bb4;
    column-gap: 1px;
}
.header-nav > li{
    width: 100%;
}
/*  header-nav-item
------------------------------------------------------------------*/
.header-nav-item{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 1.2;
    font-feature-settings: "palt";
    transition: .2s ease-out;
}
.header-nav-item.active{
    background: var(--sub-color);
}
@media (hover:hover) {
    .header-nav-item:hover{
        background: var(--sub-color);
    }
}
@media screen and (max-width:1399px){
    .header-nav-item{
        height: 42px;
        font-size: .875rem;
    }
}
/*  header-dropdown
------------------------------------------------------------------*/
.header-dropdown{
    position: relative;
    z-index: 1;
}
.header-dropdown::after{
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 10px;
    background: #fff;
    content: "";
    z-index: 1;
}
/*  header-dropdown-menu
------------------------------------------------------------------*/
.header-dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1px;
    background: #fff;
    border-top: 1px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.header-dropdown-menu.active{
    opacity: 1;
    visibility: visible;
}
/*  header-dropdown-item
------------------------------------------------------------------*/
.header-dropdown-item{
    position: relative;
    display: flex;
    align-items: center;
    height: 3.5em;
    padding: 0 2em 0 1em;
    background: var(--primary-light-color);
    font-size: .875rem;
    font-feature-settings: "palt";
    line-height: 1.2;
    transition: .2s ease-out;
}
.header-dropdown-item::after{
    position: absolute;
    top: calc(50% - .5em);
    right: .5em;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* アクティブ時動作 */
.header-dropdown-item.active{
    background: var(--sub-color);
    color: #fff;
}
.header-dropdown-item.active::after{
    right: 0;
}
@media (hover:hover) {
    .header-dropdown-item:hover{
        background: var(--sub-color);
        color: #fff;
    }
    .header-dropdown-item:hover:after{
        right: 0;
    }
}
@media screen and (max-width:1399px){
    .header-dropdown-item{
        font-size: .75rem;
    }
}
/*  header-sp
------------------------------------------------------------------*/
.header-sp{
    display: none;
}
@media screen and (max-width:991px){
    .header-sp{
        position: sticky;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: #fff;
        z-index: 1000;
    }
}
/*  header-sp-logo
------------------------------------------------------------------*/
.header-sp-logo{
    width: 240px;
    margin-left: 10px;
}
/*  header-sp-nav-wrapper
------------------------------------------------------------------*/
.header-sp-nav-wrapper{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    padding: 52px 0 100px;
    background: #fff;
    overflow-y:  scroll;
    transition: .2s ease-out;
    z-index: 3;
}
.header-sp-nav-wrapper.open{
    transform: translateX(-100%);
}
.header-sp-nav-wrapper::-webkit-scrollbar{
    display: none;
}
/*  header-sp-nav-logo
------------------------------------------------------------------*/
.header-sp-nav-logo{
    display: block;
    padding: 12px;
}
/*  header-sp-nav
------------------------------------------------------------------*/
.header-sp-nav{
    margin-bottom: 20px;
    border-top: 1px solid #ccc;
}
/*  header-sp-nav-item
------------------------------------------------------------------*/
.header-sp-nav-item{
    position: relative;
    display: flex;
    align-items: center;
    height: 3.5em;
    padding: 0 2.5em 0 1em;
    border-bottom: 1px solid #ccc;
    font-size: .875rem;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.header-sp-nav-item::after{
    position: absolute;
    top: calc(50% - .5em);
    right: 1em;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* アクティブ時動作 */
.header-sp-nav-item.active{
    color: var(--sub-color);
}
.header-sp-nav-item.active::after{
    right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-sp-nav-item:hover{
        color: var(--sub-color);
    }
    .header-sp-nav-item:hover::after{
        right: .5em;
    }
}
/*  header-sp-dropdown
------------------------------------------------------------------*/
.header-sp-dropdown{
    position: relative;
    z-index: 1;
}
.header-sp-dropdown .opener{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(3.5em - 1px);
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    content: "";
    color: #fff;
    cursor: pointer;
    z-index: 2;
}
/*  header-sp-dropdown-menu
------------------------------------------------------------------*/
.header-sp-dropdown-menu{
    display: none;
}
/*  header-sp-dropdown-item
------------------------------------------------------------------*/
.header-sp-dropdown-item{
    position: relative;
    display: flex;
    align-items: center;
    height: 4em;
    padding: 0 2.5em 0 1em;
    background: var(--primary-light-color);
    border-bottom: 1px solid #fff;
    font-size: .75rem;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.header-sp-dropdown-item::after{
    position: absolute;
    top: calc(50% - .5em);
    right: 1em;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* アクティブ時動作 */
.header-sp-dropdown-item.active{
    color: var(--sub-color);
}
.header-sp-dropdown-item.active::after{
    right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-sp-dropdown-item:hover{
        color: var(--sub-color);
    }
    .header-sp-dropdown-item:hover::after{
        right: .5em;
    }
}
/*  header-sp-btn-list
------------------------------------------------------------------*/
.header-sp-btn-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 0 12px;
    margin-bottom: 20px;
}
/*  header-sp-btn
------------------------------------------------------------------*/
.header-sp-btn{
    display: block;
    padding: 1em 1.5em;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
.header-sp-btn.member{
    background: var(--accent-color);
}
.header-sp-btn.logout{
    background: var(--black-color);
    color: #fff;
}
.header-sp-btn.contact{
    background: var(--sub-color);
    color: #fff;
}
@media (hover:hover) {
    .header-sp-btn:hover{
        background: var(--red-color);
        color: #fff;
    }
}
/*  header-sp-tel
------------------------------------------------------------------*/
.header-sp-tel{
    text-align: center;
}
.header-sp-tel .num{
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.header-sp-tel .num span{
    font-size: 1.75rem;
}
.header-sp-tel .time{
    font-size: .875rem;
    color: #555555;
    line-height: 1;
}
/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        aspect-ratio: 1 / 1;
        background: var(--primary-color);
        transition: .2s ease-out;
        cursor: pointer;
        z-index: 4;
    }
    .header-hamburger .lines {
        position: relative;
        width: 24px;
        height: 16px;
    }
    .header-hamburger .lines .line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        transition: .2s ease-out;
    }
    .header-hamburger .lines .line#line1 {
        top: 0;
    }
    .header-hamburger .lines .line#line2 {
        top: calc(50% - 1px);
    }
    .header-hamburger .lines .line#line3 {
        bottom: 0;
    }
    /* オープン時動作 */
    .header-hamburger.open .lines .line#line1 {
        transform: rotate(-135deg);
        top: 6px !important;
    }
    .header-hamburger.open .lines .line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .lines .line#line3 {
        transform: rotate(135deg);
        top: 6px !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: #05132d;
    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;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 40px;
    margin-bottom: 40px;
}
@media screen and (max-width:991px){
    .footer-wrapper{
        flex-direction: column;
        justify-content: initial;
        align-items: initial;
        margin-bottom: 60px;
    }
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    width: 340px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    z-index: 1;
}
@media screen and (max-width:991px){
    .footer-logo{
        margin: 0 auto 20px;
    }
}
@media screen and (max-width:575px){
    .footer-logo{
        width: 100%;
        max-width: 320px;
    }
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    display: block;
    margin-bottom: 24px;
    font-size: .875rem;
    color: #fff;
    line-height: 1.5;
    transition: .2s ease-out;
}
.footer-address .line{
    text-decoration: underline;
}
.footer-address i{
    display: inline;
    color: var(--sub-color);
}
@media (hover:hover) {
    .footer-address:hover{
        color: var(--sub-color);
    }
}
@media screen and (max-width:991px){
    .footer-address{
        text-align: center;
    }
}
@media screen and (max-width:767px){
    .footer-address{
        font-size: .75rem;
    }
}
/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    display: grid;
    grid-template-columns: repeat(2, auto);
    width: fit-content;
    margin-bottom: 24px;
    font-family: var(--en-font);
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.2;
}
.footer-tel dt{
    font-weight: normal;
}
@media screen and (max-width:991px){
    .footer-tel{
        margin-left: auto;
        margin-right: auto;
    }
}
/*  footer-btn-list
------------------------------------------------------------------*/
.footer-btn-list{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
@media screen and (max-width:991px){
    .footer-btn-list{
        justify-content: center;
    }
}
/*  footer-btn
------------------------------------------------------------------*/
.footer-btn{
    display: block;
    padding: .75em 1.25em;
    font-size: .875rem;
    line-height: 1;
    transition: .2s ease-out;
}
.footer-btn.member{
    background: var(--accent-color);
}
.footer-btn.logout{
    background: #fff;
}
.footer-btn.contact{
    background: var(--sub-color);
    color: #fff;
}
@media (hover:hover) {
    .footer-btn:hover{
        background: var(--red-color);
        color: #fff;
    }
}
@media screen and (max-width:767px){
    .footer-btn{
        font-size: .75rem;
    }
}
/*  footer-nav-wrapper
------------------------------------------------------------------*/
.footer-nav-wrapper{
    display: flex;
    align-items: flex-start;
    column-gap: 40px;
    flex-shrink: 0;
}
@media screen and (max-width:991px){
    .footer-nav-wrapper{
        justify-content: center;
    }    
}
@media screen and (max-width:767px){
    .footer-nav-wrapper{
        flex-direction: column;
        align-items: initial;
    }    
}
/*  footer-nav-title
------------------------------------------------------------------*/
.footer-nav-title{
    padding-bottom: .75em;
    margin-bottom: .75em;
    border-bottom: 1px solid #8e9bb4;
    font-weight: bold;
    color: var(--sub-color);
    line-height: 1;
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin-bottom: 40px;
}
@media screen and (max-width:767px){
    .footer-nav{
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
        margin-bottom: 28px;
    }    
}
@media screen and (max-width:575px){
    .footer-nav{
        grid-template-columns: 1fr;
    }    
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    display: block;
    font-size: 0.875rem;
    font-feature-settings: "palt";
    color: #fff;
    --letter-spacing: 0;
    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(--sub-color);
    }
}
@media screen and (max-width:767px){
    .footer-nav-item{
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 1em 2em 1em 1em;
        background: #fff;
        color: var(--black-color);
        font-size: .75rem;
        z-index: 1;
    }
    .footer-nav-item::before{
        display: none;
    }
    .footer-nav-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;
    }
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #fff;
    line-height: 1.4;
}
@media screen and (max-width:767px){
    .copyright{
        text-align: center;
    }
}


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

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 80px 0;
    background: url(../images/common/common-contact-bg.jpg) no-repeat center / cover;
    --contact-box-height: 200px;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .common-contact{
        --contact-box-height: 160px;
    }
}
@media screen and (max-width:991px){
    .common-contact{
        padding: 60px 0;
    }
}
/*  common-contact-tel
------------------------------------------------------------------*/
.common-contact-tel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: var(--contact-box-height);
    padding: 0 30px;
    background: #fff;
    text-align: center;
    transition: .2s ease-out;
}
.common-contact-tel .title{
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}
.common-contact-tel .tel{
    margin-bottom: 12px;
    font-family: var(--en-font);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0;
    vertical-align: baseline;
    line-height: 1;
}
.common-contact-tel .tel .num{
    font-size: 2em;
    line-height: 1;
    letter-spacing: 0;
}
.common-contact-tel .time{
    color: #666;
    line-height: 1;
}
@media screen and (max-width:1199px){
    .common-contact-tel .title{
        margin-bottom: 12px;
        font-size: 1.25rem;
    }
    .common-contact-tel .tel{
        margin-bottom: 8px;
        font-size: 1.25rem;
    }
    .common-contact-tel .time{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .common-contact-tel{
        height: auto;
        padding: 30px;
    }
}
@media screen and (max-width:575px){
    .common-contact-tel .title{
        margin-bottom: 8px;
        font-size: 1.125rem;
    }
    .common-contact-tel .tel{
        margin-bottom: 6px;
        font-size: 1rem;
    }
    .common-contact-tel .time{
        font-size: .75rem;
    }
}
@media screen and (max-width:374px){
    .common-contact-tel .tel{
        font-size: .875rem;
    }
}
/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5em;
    height: var(--contact-box-height);
    padding: 0 30px;
    background: #fff;
    transition: .2s ease-out;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.common-contact-mail i{
    font-size: 1.5em;
    color: var(--primary-color);
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-contact-mail:hover{
        background: var(--sub-color);
        color: #fff;
    }
    .common-contact-mail:hover i{
        color: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:1199px){
    .common-contact-mail{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:991px){
    .common-contact-mail{
        height: auto;
        padding: 30px;
    }
}
@media screen and (max-width:575px){
    .common-contact-mail{
        font-size: 1.125rem;
    }
}

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


/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 80px 0 ;
    background: var(--primary-light-color);
    z-index: 1;
}
@media screen and (max-width:991px){
    .page-top{
        padding: 60px 0 ;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 50px 0;
    }
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: relative;
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    z-index: 3;
}
.page-top-title .jp{
    display: block;
    margin-bottom: .5em;
}
.page-top-title .en{
    display: block;
    font-family: var(--en-font);
    font-size: max(.5em,.875rem);
    color: var(--primary-color);
}
@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;}
}
@media screen and (max-width:575px){
    .page-top-title{ font-size: 1.5rem;}
}
@media screen and (max-width:374px){
    .page-top-title{ font-size: 1.25rem;}
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    padding: 0 6vw;
    font-size: 12px;
    line-height: 1.5;
}
.breadcrumb > li{
    color: #999;
}
.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(--sub-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;
    border: 1px solid #aaa;
    color: #898989;
    transition: .2s ease-out;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    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-color);
        border-color: var(--primary-color);
    }
    .paging-text:hover a{
        color:  #fff !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;
    }
}


/*------------------------------------------------------------------
  swiper-slider
------------------------------------------------------------------*/

/*  swiper-slider
------------------------------------------------------------------*/
.swiper-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.swiper-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    background: #fff;
}
.swiper-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.swiper-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  swiper-thumb-slider
------------------------------------------------------------------*/
.swiper-thumb-slider{
    position: relative;
	max-width: 520px;
	margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}
.swiper-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.swiper-thumb-slider .swiper-slide{
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.swiper-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.swiper-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
/*  swiper-slider-button
------------------------------------------------------------------*/
.swiper-slider-button-prev,
.swiper-slider-button-next{
    position: absolute;
    top: 50%;
    width: 32px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #333;
	cursor: pointer;
    transition: .2s ease-out;
    z-index: 2;
}
.swiper-slider-button-prev.swiper-button-disabled,
.swiper-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.swiper-slider-button-prev{
    left: 5px;
}
.swiper-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
}
.swiper-slider-button-next{
    right: 5px;
}
.swiper-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .swiper-slider-button-prev:hover,
    .swiper-slider-button-next:hover,
    .swiper-slider-button-prev:active,
    .swiper-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .swiper-slider-button-prev:active,
    .swiper-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .swiper-slider-button-prev:active,
    .swiper-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}