@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;
    z-index: 1000;
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    padding: 24px;
    background: #fff;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .header-logo{
        width: 120px;
        padding: 18px;
    }
}
@media screen and (max-width:991px){
    .header-logo{
        width: 100px;
        padding: 12px;
        background: #fff;
    }
}
@media screen and (max-width:575px){
    .header-logo{
        width: 70px;
        padding: 8px;
    }
}
/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    position: fixed;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 72px;
    aspect-ratio: 1 / 1;
    background: var(--black-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: 70%;
}
.header-hamburger .lines .line#line3 {
    bottom: 0;
    width: 40%;
}
/* オープン時動作 */
.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;
    width: 100%;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-hamburger:hover .lines .line#line2,
    .header-hamburger:hover .lines .line#line3{
        width: 100%;
    }
}
@media screen and (max-width:1199px){
    .header-hamburger{
        top: 8px;
        right: 8px;
        width: 64px;
    }
}
@media screen and (max-width:991px){
    .header-hamburger{
        top: 10px;
        right: 10px;
        width: 52px;
    }
}
@media print {
    .header-hamburger{
        position: absolute;
    }
}

/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    padding: 100px 0;
    background: #fff;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
    z-index: 3;
}
.header-nav.open{
    transform: translateX(-100%);
    visibility: visible;
    opacity: 1;
}
.header-nav::-webkit-scrollbar{
    display: none;
}
@media screen and (max-width:1199px){
    .header-nav{
        padding: 90px 0;
    }
}
@media screen and (max-width:991px){
    .header-nav{
        padding: 80px 0 120px;
    }
}

/*  header-nav-logo
------------------------------------------------------------------*/
.header-nav-logo{
    display: block;
    margin-bottom: 16px;
    text-align: center;
}
.header-nav-logo .jp{ 
    display: block;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}
.header-nav-logo .en{  
    display: block;
    font-family: var(--en-font);
    font-size: 1.125rem;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 1;
}

/*  header-nav-list
------------------------------------------------------------------*/
.header-nav-list{
    margin-bottom: 20px;
    border-top: 1px solid #bcaf99;
    line-height: 1;
}

/*  header-nav-item
------------------------------------------------------------------*/
.header-nav-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 8px;
    width: 100%;
    height: 3.5em;
    padding: 0 2.5em 0 1em;
    border-bottom: 1px solid #bcaf99;
    font-size: .875rem;
    --letter-spacing: 0;
    line-height: 1.4;
    transition: .2s ease-out;
    z-index: 1;
}
.header-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;
    transition: .2s right ease-out;
}
/* アクティブ時動作 */
.header-nav-item.active{
    color: var(--accent-color);
}
.header-nav-item.active::after{
    right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-item:hover{
        color: var(--accent-color);
    }
    .header-nav-item:hover::after{
        right: .5em;
    }
}
/*  header-dropdown
------------------------------------------------------------------*/
.header-dropdown .toggle{
    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(--black-color);
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: .2s ease-out;
    z-index: 2;
}
.header-dropdown .toggle::after{
    content: "＋";
}
/* オープン時動作 */
.header-dropdown .toggle.open::after{
    content: "－";
}
/*  header-dropdown-menu
------------------------------------------------------------------*/
.header-dropdown-menu{
    display: none;
    background: #f7f5f0;
}
/*  header-dropdown-item
------------------------------------------------------------------*/
.header-dropdown-item{
    position: relative;
    display: block;
    padding: 1.25em 2.5em 1.25em 2em;
    border-bottom: 1px solid #bca299;
    font-size: .8125rem;
    --letter-spacing: 0;
    line-height: 1;
    transition: .2s ease-out;
}
.header-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-dropdown-item.active{
    color: var(--accent-color);
}
.header-dropdown-item.active::after{
    right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-dropdown-item:hover{
        color: var(--accent-color);
    }
    .header-dropdown-item:hover::after{
        right: .5em;
    }
}

/*  header-nav-btn-list
------------------------------------------------------------------*/
.header-nav-btn-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 0 20px;
    margin-bottom: 40px;
}
/*  header-nav-contact
------------------------------------------------------------------*/
.header-nav-contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    padding: 0 1em;
    height: 56px;
    border-radius: 3em;
    background: var(--accent-color);
    font-size: 1rem;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    transition: .2s ease-out;
}
.header-nav-contact small{
    display: block;
    font-size: .75rem;
}
@media (hover:hover) {
    .header-nav-contact:hover{
        filter: brightness(1.2);
    }
}
/*  header-nav-line
------------------------------------------------------------------*/
.header-nav-line{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    padding: 0 1em;
    height: 56px;
    border-radius: 3em;
    background: #06c755;
    font-size: .875rem;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.header-nav-line i{
    font-size: 1.875em;
}
@media (hover:hover) {
    .header-nav-line:hover{
        filter: brightness(1.2);
    }
}
/*  header-nav-address
------------------------------------------------------------------*/
.header-nav-address{
    margin-bottom: 10px;
    font-size: .875rem;
    text-align: center;
    letter-spacing: 0;
    line-height: 1.5;
}
/*  header-nav-access
------------------------------------------------------------------*/
.header-nav-access{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    width: fit-content;
    margin: 0 auto 20px;
    padding: 1em 2em;
    background: var(--black-color);
    border-radius: 2em;
    font-size: .75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    letter-spacing: 0;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-access:hover{
        background: var(--accent-color);
    }
}
@media (hover:none) {
    .header-nav-access:active{
        background: var(--accent-color);
    }
}

/*  header-nav-tel
------------------------------------------------------------------*/
.header-nav-tel{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    --letter-spacing: 0;
    margin-bottom: 20px;
    line-height: 1;
}
.header-nav-tel .num{
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 1.75rem;
    font-weight: bold;
}
.header-nav-tel .num .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    background: var(--black-color);
    border-radius: 50%;
}
.header-nav-tel .num .icon i{
    font-size: 0.44em;
    color: #fff;
}
.header-nav-tel .time{
    font-size: .75rem;
    text-align: center;
}
/*  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 40px;
    z-index: 1
}
@media screen and (max-width:991px){
    footer{
        padding: 60px 0;
    }
}
/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 70px;
}
@media screen and (max-width:991px){
    .footer-wrapper{
        flex-direction: column;
        justify-content: flex-start;
        row-gap: 50px;
    }
}
/*  footer-detail
------------------------------------------------------------------*/
.footer-detail{
    flex-shrink: 0;
}
/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    margin-bottom: 30px;
}
@media screen and (max-width:991px){
    .footer-logo{
        width: 280px;
        margin: 0 auto 30px;
    }
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 30px;
    font-size: .875rem;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .footer-address{
        text-align: center;
    }
}

/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    margin-bottom: 40px;
    font-family: var(--en-font);
    font-size: 1.5rem;
    --letter-spacing: 0;
    line-height: 1;
}
.footer-tel dt{
    font-weight: normal;
}
@media screen and (max-width:991px){
    .footer-tel{
        width: fit-content;
        margin: 0 auto;
    }
}
/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    column-gap: 40px;
}
@media screen and (max-width:991px){
    .footer-nav{
        justify-content: center;
    }
}
@media screen and (max-width:767px){
    .footer-nav{
        flex-direction: column;
        row-gap: 40px;
    }
}
/*  footer-nav-title
------------------------------------------------------------------*/
.footer-nav-title{
    padding-bottom: .75em;
    margin-bottom: .75em;
    border-bottom: 1px solid #846d69;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
}
@media screen and (max-width:767px){
    .footer-nav-title{
        padding-bottom: 0;
        border-bottom: initial;
        font-size: 1.25rem;
    }
}
/*  footer-nav-list
------------------------------------------------------------------*/
.footer-nav-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    line-height: 1;
}
@media screen and (max-width:767px){
    .footer-nav-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
/*  footer-nav-list-item
------------------------------------------------------------------*/
.footer-nav-list-item{
    font-size: 0.875rem;
    letter-spacing: 0;
    transition: .2s ease-out;
}
.footer-nav-list-item::before{
    margin-right: 4px;
    content: "-";
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-list-item:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .footer-nav-list-item:active{
        color: var(--accent-color);
    }
}
@media screen and (max-width:767px){
    .footer-nav-list-item{
        position: relative;
        display: flex;
        align-items: center;
        column-gap: .5em;
        height: 3.5em;
        padding: 0 1.75em 0 .75em;
        border: 1px solid #bca299;
        font-size: .75rem;
        line-height: 1.4;
        z-index: 1;
    }
    .footer-nav-list-item::before{
        display: none;
    }
    .footer-nav-list-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: #846d69;
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .copyright{
        text-align: center;
    }
}


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

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 150px 0 100px;
    background: url(../images/common/common-contact-bg.jpg) no-repeat center / cover;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .common-contact{
        padding: 120px 0 80px;
    }
}
@media screen and (max-width:991px){
    .common-contact{
        padding: 100px 0 60px;
    }
}
@media screen and (max-width:767px){
    .common-contact{
        padding: 80px 0 60px;
    }
}
/*  common-contact-list
------------------------------------------------------------------*/
.common-contact-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    --ccb-height: 120px;
    margin-bottom: 50px;
}
.common-contact-list > .wide{
    grid-column: 1 / 3;
}
@media screen and (max-width:991px){
    .common-contact-list{
        gap: 20px;
        --ccb-height: 100px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .common-contact-list{
        grid-template-columns: 1fr;
        gap: 12px;
        --ccb-height: 80px;
    }
    .common-contact-list > .wide{
        grid-column: initial;
    }
}
/*  common-contact-tel
------------------------------------------------------------------*/
.common-contact-tel{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .3em;
    height: var(--ccb-height);
    background: #fff;
    font-family: var(--en-font);
    font-size: 2.5rem;
    font-weight: bold;
    --letter-spacing: 0;
    line-height: 1;
}
.common-contact-tel i{
    font-size: .8em;
    color: var(--primary-color);
}
@media screen and (max-width:991px){
    .common-contact-tel{
        font-size: 2rem;
    }
}
@media screen and (max-width:767px){
    .common-contact-tel{
        font-size: 1.75rem;
    }
}
/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5em;
    height: var(--ccb-height);
    background: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}
.common-contact-mail i{
    font-size: 2.2em;
}
.common-contact-mail .sub{
    font-size: max(.7em,.75rem);
}
@media screen and (max-width:991px){
    .common-contact-mail{
        font-size: 1.25rem;
    }
}
/*  common-contact-line
------------------------------------------------------------------*/
.common-contact-line{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
    height: var(--ccb-height);
    background: #06c755;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.common-contact-line i{
    display: none;
}
.common-contact-line .qr{
    flex-shrink: 0;
    width: 80px;
    aspect-ratio: 1 / 1;
    background: #fff;
}
.common-contact-line .title{
    margin-bottom: .4em;
}
.common-contact-line .sub{
    font-size: max(.7em,.75rem);
    color: #ffdc51;
}
@media screen and (max-width:991px){
    .common-contact-line{
        column-gap: 12px;
    }
    .common-contact-line .qr{
        display: none;
    }
    .common-contact-line i{
        display: block;
        font-size: 2.5em;
    }
    .common-contact-line{
        font-size: 1.25rem;
    }
}
/*  common-contact-box
------------------------------------------------------------------*/
.common-contact-box{
    display: flex;
    align-items: center;
    column-gap: 20px;
    background: #fff;
    padding: 20px;
    margin-bottom: 60px;
}
.common-contact-box .image{
    flex-shrink: 0;
    width: 130px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}
.common-contact-box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.common-contact-box .title{
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: 1px solid #846d69;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
}
.common-contact-box .text{
    font-size: .875rem;
    line-height: 1.8;
}
@media screen and (max-width:991px){
    .common-contact-box .image{
        width: 110px;
    }
    .common-contact-box .title{
        font-size: 1.125rem;
    }
    .common-contact-box .text{
        font-size: .8125rem;
    }
}
@media screen and (max-width:767px){
    .common-contact-box{
        flex-direction: column;
        row-gap: 20px;
        padding: 30px 20px;
    }
    .common-contact-box .image{
        width: 180px;
    }
    .common-contact-box .title{
        font-size: 1.125rem;
    }
    .common-contact-box .text{
        font-size: .8125rem;
    }
}
/*  common-contact-area
------------------------------------------------------------------*/
.common-contact-area{
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 2em;
    row-gap: 1.5em;
}
.common-contact-area dt,
.common-contact-area dd{
    font-weight: normal;
    color: #fff;
    line-height: 1.8;
}
@media screen and (max-width:767px){
    .common-contact-area dt,
    .common-contact-area dd{
        font-size: .75rem;
    }
}

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

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 160px 20px 120px;
    margin-bottom: 20px;
    background: #fff;
    z-index: 1;
}
.page-top.detail-page{
    margin: 0 auto 40px;
    padding: 150px 60px 0;
    max-width: 1000px;
}
@media screen and (max-width:1399px){
    .page-top{
        padding: 120px 20px 100px;
    }
    .page-top.detail-page{
        padding: 120px 60px 0;
    }
}
@media screen and (max-width:991px){
    .page-top{
        padding: 90px 20px 80px;
    }
    .page-top.detail-page{
        padding: 100px 6vw 0;
    }
}
@media screen and (max-width:575px){
    .page-top{
        padding: 70px 20px 60px;
    }
    .page-top.detail-page{
        margin-bottom: 30px;
    }
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: relative;
    font-size: 3rem;
    color: #fff;
    text-align: center;
    z-index: 2;
}
.page-top-title .en{
    display: block;
    margin-bottom: .5em;
    overflow: hidden;
    font-family: var(--en-font);
    font-size: max(.75em,.875rem);
    font-weight: bold;
    color: var(--primary-color);
    --letter-spacing: 0;
    line-height: 1;
}
.page-top-title .jp{
    display: block;
    font-weight: bold;
    line-height: 1.2;
}
@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;}
}
@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.375rem;}
}

/*  page-top-image
------------------------------------------------------------------*/
.page-top-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: brightness(0.5);
    z-index: 1;
}
.page-top-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    animation: pageTopImage .8s forwards ease-out;
}
@keyframes pageTopImage {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    font-size: 12px;
    line-height: 1.5;
}
.breadcrumb > li{
    color: #846d69;
    --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;
    }
}

/*------------------------------------------------------------------
  page-2col
------------------------------------------------------------------*/

/*  page-2col
------------------------------------------------------------------*/
.page-2col{
    display: grid;
    grid-template-columns: 320px 1fr;
    width: 100%;
    max-width: 1920px;
    margin: 100px auto;
}
.page-2col aside{
    position: relative;
    padding: 0 40px;
    border-right: 1px solid var(--primary-light-color);
    z-index: 1;
}
.page-2col article{
    padding: 0 80px;
}
@media screen and (max-width:1399px){
    .page-2col{
        grid-template-columns: 280px 1fr;
    }
    .page-2col aside{
        padding: 0 40px;
    }
    .page-2col article{
        padding: 0 60px;
    }
}
@media screen and (max-width:1199px){
    .page-2col{
        display: flex;
        flex-direction: column-reverse;
        row-gap: 60px;
    }
    .page-2col aside{
        padding: 0 60px;
    }
    .page-2col article{
        padding: 0 60px;
    }
}
@media screen and (max-width:991px){
    .page-2col{
        margin: 80px 0;
    }
    .page-2col aside{
        padding: 0 6vw;
    }
    .page-2col article{
        padding: 0 6vw;
    }
}
@media screen and (max-width:767px){
    .page-2col{
        margin: 50px 0;
    }
}
@media print{
    .page-2col{
        display: flex;
        flex-direction: column-reverse;
    }
    .page-2col article{
        padding: 0 15px;
    }
}
/*  page-2col-aside-wrapper
------------------------------------------------------------------*/
.page-2col-aside-wrapper{
    position: sticky;
    top: 60px;
    left: 0;
    z-index: 1;
}
/*  page-2col aside-list
------------------------------------------------------------------*/
.page-2col-aside-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
}
@media screen and (max-width:1199px){
    .page-2col-aside-list{
        grid-template-columns: repeat(5,1fr);
        gap: 8px;
    }
}
@media screen and (max-width:991px){
    .page-2col-aside-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .page-2col-aside-list{
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
@media screen and (max-width:575px){
    .page-2col-aside-list{
        grid-template-columns: 1fr;
    }
}
/*  page-2col aside-list-item
------------------------------------------------------------------*/
.page-2col-aside-list-item{
    position: relative;
    display: flex;
    align-items: center;
    height: 3.5em;
    padding: 0 2em 0 1.5em;
    background: var(--primary-light-color);
    border-radius: 2em;
    font-size: .8125rem;
    line-height: 1.2;
    z-index: 1;
    transition: .2s ease-out;
}
.page-2col-aside-list-item::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
    transition: .2s ease-out;
}
/* アクティブ時動作 */
.page-2col-aside-list-item.active{
    background: var(--black-color);
    color: #fff;
}
.page-2col-aside-list-item.active::after{
    right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .page-2col-aside-list-item:hover{
        background: var(--accent-color);
        color: #fff;
    }
    .page-2col-aside-list-item:hover::after{
        right: .5em;
    }
}
@media screen and (max-width:1399px){
    .page-2col-aside-list-item{
        font-size: .75rem;
    }
}

/*------------------------------------------------------------------
  common-category
------------------------------------------------------------------*/
/*  common-category-list
------------------------------------------------------------------*/
.common-category-list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
    margin-bottom: 60px;
}
@media screen and (max-width:1199px){
    .common-category-list{
        grid-template-columns: repeat(4,1fr);
    }
}
@media screen and (max-width:991px){
    .common-category-list{
        grid-template-columns: repeat(3,1fr);
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .common-category-list{
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 30px;
    }
}
@media screen and (max-width:575px){
    .common-category-list{
        gap: 8px;
    }
}
/*  common-category-btn
------------------------------------------------------------------*/
.common-category-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3.5em;
    padding: 0 1em;
    border-radius: 2em;
    background: var(--primary-light-color);
    text-align: center;
    font-size: .875rem;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.common-category-btn.active{
    background: var(--accent-color);
    color: #fff;
    pointer-events: none;
}
@media (hover:hover) {
    .common-category-btn:hover{
        background: var(--accent-color);
        color: #fff;
    }
}
@media screen and (max-width:575px){
    .common-category-btn{
        font-size: .75rem;
    }
}

/*------------------------------------------------------------------
  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: var(--primary-light-color);
    border: 1px solid var(--primary-light-color);
    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(--black-color);
    border-color: var(--black-color);
    color: #fff !important;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .paging-text:hover{
        background:  var(--accent-color);
        border-color:  var(--accent-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;
    }
}