@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;
    height: 80px;
    background: #fff;
}
@media screen and (max-width:1399px){
    .header-top{
        height: 72px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    display: flex;
    align-items: center;
    width: 312px;
    margin-left: 30px;
    margin-right: auto;
}
@media screen and (max-width:1399px){
    .header-logo{
        width: 280px;
        margin-left: 10px;
    }
}
/*  header-sns
------------------------------------------------------------------*/
.header-sns{
    display: flex;
    align-items: center;
    flex-shrink: 0;
    column-gap: 20px;
    padding: 0 30px;
    line-height: 1;
}
.header-sns > li > a{
    display: block;
    width: 36px;
    aspect-ratio: 1 / 1;
}
.header-sns > li > a > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:1399px){
    .header-sns{
        column-gap: 16px;
        padding: 0 20px;
    }
    .header-sns > li > a{
        width: 32px;
    }    
}
/*  header-language
------------------------------------------------------------------*/
.header-language{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 8px;
    padding: 0 20px;
    border-left: 1px solid #ccc;
}
@media screen and (max-width:1399px){
    .header-language{
        row-gap: 4px;
        padding: 0 12px;
    }
}
/*  header-language-title
------------------------------------------------------------------*/
.header-language-title{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5em;
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .header-language-title{
        font-size: .875rem;
    }
}
/*  header-language-list
------------------------------------------------------------------*/
.header-language-list{
    display: flex;
    align-items: center;
    column-gap: 8px;
}
@media screen and (max-width:1399px){
    .header-language-list{
        column-gap: 4px;
    }
}
/*  header-language-list-item
------------------------------------------------------------------*/
.header-language-list-item{
    display: block;
    padding: .5em 1em;
    background: #f0ebd8;
    border-radius: 4px;
    font-size: .875rem;
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-language-list-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .header-language-list-item:active{
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:1399px){
    .header-language-list-item{
        font-size: .8125rem;
    }
}
/*  header-subnav
------------------------------------------------------------------*/
.header-subnav{
    display: flex;
    flex-shrink: 0;
}
@media screen and (max-width:1399px){
    .header-subnav{
    }
}
/*  header-subnav-item
------------------------------------------------------------------*/
.header-subnav-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: .5em;
    height: 100%;
    padding: 0 24px;
    line-height: 1;
    border-left: 1px solid #ccc;
    transition: .2s ease-out;
}
.header-subnav-item .icon{
    width: 2.25em;
    height: 2.25em;
    transition: .2s ease-out;
}
.header-subnav-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (hover:hover) {
    .header-subnav-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .header-subnav-item:hover .icon{
        filter: brightness(0) invert(1);
    }
}
@media screen and (max-width:1399px){
    .header-subnav-item{
        padding: 0 12px;
        font-size: .875rem;
    }
}
/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    display: flex;
    background: #fff;
    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-light-color);
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.2;
    transition: .2s ease-out;
}
.header-nav-item.active{
    background: var(--primary-color);
    color: #fff;
}
@media (hover:hover) {
    .header-nav-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .header-nav-item:active{
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:1399px){
    .header-nav-item{
        height: 42px;
        font-size: 1rem;
    }
}
/*  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-feature-settings: "palt";
    line-height: 1.2;
    transition: .2s ease-out;
}
.header-dropdown-item::after{
    position: absolute;
    top: calc(50% - .5em);
    right: .5em;
    display: block;
    width: .75em;
    height: .75em;
    background: url(../images/common/fa-angle-right.png) no-repeat center / contain;
    filter: saturate(0) brightness(11%);
    content: "";
    transition: .2s ease-out;
    z-index: 1;
}
/* アクティブ時動作 */
.header-dropdown-item.active{
    background: var(--primary-color);
    color: #fff;
}
.header-dropdown-item.active::after{
    right: 0;
}
@media (hover:hover) {
    .header-dropdown-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .header-dropdown-item:hover:after{
        right: 0;
        filter: brightness(0) invert(1);
    }
}
@media screen and (max-width:1399px){
    .header-dropdown-item{
        font-size: .875rem;
    }
}
/*  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: 200px;
    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: 3em;
    padding: 0 2.5em 0 1em;
    border-bottom: 1px solid #ccc;
    font-size: 1rem;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.header-sp-nav-item::after{
    position: absolute;
    top: calc(50% - .5em);
    right: 1.4em;
    display: block;
    width: .75em;
    height: .75em;
    background: url(../images/common/fa-angle-right.png) no-repeat center / contain;
    filter: saturate(0) brightness(11%);
    content: "";
    transition: .2s ease-out;
    z-index: 1;
}
/* アクティブ時動作 */
.header-sp-nav-item.active{
    color: var(--primary-color);
}
.header-sp-nav-item.active::after{
    right: 1em;
    filter: initial;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-sp-nav-item:hover{
        color: var(--primary-color);
    }
    .header-sp-nav-item:hover::after{
        right: 1em;
        filter: initial;
    }
}
@media (hover:none) {
    .header-sp-nav-item:active{
        color: var(--primary-color);
    }
    .header-sp-nav-item:active::after{
        right: 1em;
        filter: initial;
    }
}
/*  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: 3.5em;
    padding: 0 2.5em 0 1.5em;
    background: var(--primary-light-color);
    border-bottom: 1px solid #fff;
    font-size: .875rem;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.header-sp-dropdown-item::after{
    position: absolute;
    top: calc(50% - .5em);
    right: 1em;
    display: block;
    width: .75em;
    height: .75em;
    background: url(../images/common/fa-angle-right.png) no-repeat center / contain;
    filter: saturate(0) brightness(11%);
    content: "";
    transition: .2s ease-out;
    z-index: 1;
}
/* アクティブ時動作 */
.header-sp-dropdown-item.active{
    color: var(--sub-color);
}
.header-sp-dropdown-item.active::after{
    right: .5em;
    filter: brightness(0) saturate(100%) invert(59%) sepia(23%) saturate(1393%) hue-rotate(115deg) brightness(93%) contrast(81%);
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-sp-dropdown-item:hover{
        color: var(--sub-color);
    }
    .header-sp-dropdown-item:hover::after{
        right: .5em;
        filter: brightness(0) saturate(100%) invert(59%) sepia(23%) saturate(1393%) hue-rotate(115deg) brightness(93%) contrast(81%);
    }
}
/*  header-sp-subnav
------------------------------------------------------------------*/
.header-sp-subnav{
    display: flex;
    column-gap: 8px;
    padding: 0 12px;
    margin-bottom: 20px;
}
.header-sp-subnav > li{
    width: 100%;
}
/*  header-sp-subnav-item
------------------------------------------------------------------*/
.header-sp-subnav-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: .5em;
    padding: 12px;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: .875rem;
    line-height: 1;
    transition: .2s ease-out;
}
.header-sp-subnav-item .icon{
    width: 2.25em;
    height: 2.25em;
    transition: .2s ease-out;
}
.header-sp-subnav-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (hover:hover) {
    .header-sp-subnav-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .header-sp-subnav-item:hover .icon{
        filter: brightness(0) invert(1);
    }
}
/*  header-sp-language
------------------------------------------------------------------*/
.header-sp-language{
    padding: 0 12px;
    margin-bottom: 20px;
}
/*  header-sp-language-title
------------------------------------------------------------------*/
.header-sp-language-title{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .25em;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}
/*  header-sp-language-list
------------------------------------------------------------------*/
.header-sp-language-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
}
/*  header-sp-language-list-item
------------------------------------------------------------------*/
.header-sp-language-list-item{
    display: block;
    padding: .5em 1em;
    background: #f0ebd8;
    border-radius: 4px;
    font-size: .875rem;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-sp-language-list-item:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .header-sp-language-list-item:active{
        background: var(--primary-color);
        color: #fff;
    }
}
/*  header-sp-sns
------------------------------------------------------------------*/
.header-sp-sns{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    line-height: 1;
}
.header-sp-sns > li > a{
    display: block;
    width: 36px;
    aspect-ratio: 1 / 1;
}
.header-sp-sns > li > a > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  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: var(--primary-light-color);
    z-index: 1
}
@media screen and (max-width:991px){
    footer{
        padding: 60px 0 20px;
    }
}
/*  footer-top
------------------------------------------------------------------*/
.footer-top{
    display: flex;
    align-items: center;
    column-gap: 40px;
    margin-bottom: 30px;
}
@media screen and (max-width:991px){
    .footer-top{
        flex-direction: column;
        row-gap: 20px;
    }
}
/*  footer-sns
------------------------------------------------------------------*/
.footer-sns{
    display: flex;
    align-items: center;
    flex-shrink: 0;
    column-gap: 16px;
    line-height: 1;
}
.footer-sns > li > a{
    display: block;
    width: 32px;
    aspect-ratio: 1 / 1;
}
.footer-sns > li > a > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:767px){
    .footer-sns{
        justify-content: center;
    }
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    z-index: 1;
}
/*  footer-nav-wrapper
------------------------------------------------------------------*/
.footer-nav-wrapper{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-bottom: 40px;
}
@media screen and (max-width:991px){
    .footer-nav-wrapper{
        display: none;
    }    
}
/*  footer-nav-section
------------------------------------------------------------------*/
.footer-nav-section{
    padding: 12px 30px;
    border-right: 1px solid #aaa;
}
.footer-nav-section:last-of-type{
    border-right: initial;
}
@media screen and (max-width:1399px){
    .footer-nav-section{
        padding: 12px 20px;
    }
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
}
/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    position: relative;
    display: block;
    padding-left: .75em;
    font-weight: bold;
    line-height: 1.5;
    transition: .2s ease-out;
}
.footer-nav-item::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "-";
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .footer-nav-item:active{
        color: var(--primary-color);
    }
}
/*  footer-subnav
------------------------------------------------------------------*/
.footer-subnav{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 12px;
}
/*  footer-subnav-item
------------------------------------------------------------------*/
.footer-subnav-item{
    position: relative;
    display: block;
    padding-left: .75em;
    font-weight: bold;
    font-size: .875rem;
    color: #5c6368;
    line-height: 1.5;
    transition: .2s ease-out;
}
.footer-subnav-item::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "-";
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-subnav-item:hover{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .footer-subnav-item:active{
        color: var(--primary-color);
    }
}
/*  footer-bottom
------------------------------------------------------------------*/
.footer-bottom{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 20px;
}
@media screen and (max-width:991px){
    .footer-bottom{
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
    }
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 8px;
    font-size: .875rem;
    color: #5c6368;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .footer-address{
        text-align: center;
    }
}
/*  footer-time
------------------------------------------------------------------*/
.footer-time{
    font-size: .875rem;
    color: #5c6368;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .footer-time{
        text-align: center;
    }
}
/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: .875rem;
    color: #5c6368;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .copyright{
        font-size: .75rem;
        text-align: center;
    }
}

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


/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 80px 0 100px;
    background: url(../images/common/bg-warter2.jpg) no-repeat center / cover;
    z-index: 1;
}
@media screen and (max-width:991px){
    .page-top{
        padding: 60px 0 72px;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 50px 0 60px;
    }
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: relative;
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    z-index: 3;
}
@media screen and (max-width:991px){
    .page-top-title{ font-size: 2rem;}
}
@media screen and (max-width:767px){
    .page-top-title{ font-size: 1.5rem;}
}
@media screen and (max-width:575px){
    .page-top-title{ font-size: 1.25rem;}
}
@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;
    width: .75em;
    height: .75em;
    margin-right: 10px;
    background: url(../images/common/fa-angle-right.png) no-repeat center / contain;
    filter: saturate(0) brightness(150%);
    content: "";
}
.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;
    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%);
    display: block;
    width: .75em;
    height: .75em;
    background: url(../images/common/fa-angle-left.png) no-repeat center / contain;
    filter: saturate(0) brightness(11%);
    content: "";
}
.swiper-slider-button-next{
    right: 5px;
}
.swiper-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: .75em;
    height: .75em;
    background: url(../images/common/fa-angle-right.png) no-repeat center / contain;
    filter: saturate(0) brightness(11%);
    content: "";
}
/* ホバー時動作 */
@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%);
    }
}