@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: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
    background: #fff;
    z-index: 1000;
}
@media screen and (max-width:991px){
    header{
        height: 60px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    padding-left: 30px;
}
@media print, screen and (max-width:1399px){
    .header-logo{
        width: 320px;
        padding-left: 15px;
    }
}
@media screen and (max-width:991px){
    .header-logo{
        width: 220px;
        padding-left: 5px;
    }
}

/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-shrink: 0;
}
@media print, screen and (max-width:1399px){
    .header-nav{
        column-gap: 20px;
    }
}
@media screen and (max-width:991px){
    .header-nav{
        display: none;
    }
}

/*  header-nav-top
------------------------------------------------------------------*/
.header-nav-top{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 15px;
}
@media print, screen and (max-width:1399px){
    .header-nav-top{
        column-gap: 20px;
        margin-bottom: 12px;
    }
}

/*  header-nav-main
------------------------------------------------------------------*/
.header-nav-main{
    display: flex;
    justify-content: flex-end;
    column-gap: 10px;
}
.header-nav-main > li > a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 100%;
    padding: 0.5em 2em;
    background: var(--primary-light-color);
    border-radius: 3em;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.05em;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.header-nav-main > li > a.wide{
    letter-spacing: 0.7em;
    padding-right: 1.4em;
}
.header-nav-main > li > a::after{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0;
    transition: .2s ease-out;
}
/* アクティブ時動作 */
.header-nav-main > li > a.active:hover{
    background: var(--primary-color);
    color: #fff;
}
.header-nav-main > li > a.active::after{
    right: 5px;
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-main > li > a:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .header-nav-main > li > a:hover::after{
        right: 5px;
        color: #fff;
    }
}
@media print, screen and (max-width:1399px){
    .header-nav-main{
        column-gap: 5px;
    }
    .header-nav-main > li > a{
        width: 170px;
        font-size: 0.75rem;
    }
}
@media print, screen and (max-width:1199px){
    .header-nav-main > li > a,
    .header-nav-main > li > a.wide{
        width: auto;
        padding: 0.5em 2.2em 0.5em 1.5em;
        letter-spacing: 0;
    }
}

/*  header-nav-other
------------------------------------------------------------------*/
.header-nav-other{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.header-nav-other > li > a{
    display: block;
    font-size: 0.875rem;
    color: #666;
    line-height: 1;
    transition: .2s;
}
/* アクティブ時動作 */
.header-nav-other > li > a.active{
    color: var(--primary-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-nav-other > li > a:hover{
        color: var(--primary-color);
    }
}
@media print, screen and (max-width:1399px){
    .header-nav-other{
        column-gap: 16px;
    }
    .header-nav-other > li > a{
        font-size: 0.8125rem;
    }
}

/*  header-tel
------------------------------------------------------------------*/
.header-tel{
    font-family: var(--en-font);
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.header-tel i{
    position: relative;
    top: -0.1em;
    font-size: 0.8em;
    margin-right: 0.2em;
}
@media print, screen and (max-width:1399px){
    .header-tel{
        font-size: 1.5rem;
    }
}

/*  header-mail
------------------------------------------------------------------*/
.header-mail{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 120px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    font-weight: bold;
    color: #fff;
    line-height: 1;
    text-align: center;
    transition: .2s ease-out;
}
.header-mail i{
    display: block;
    margin-bottom: 0.3em;
    font-size: 2.625em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-mail:hover{
        background: var(--primary-hover-color);
    }
}
@media print, screen and (max-width:1399px){
    .header-mail{
        width: 100px;
        font-size: 0.75rem;
    }
}

/*  header-sp
------------------------------------------------------------------*/
.header-sp{
    display: none;
}
@media screen and (max-width:991px){
    .header-sp{
        position: fixed;
        top: 0;
        left: 100%;
        display: block;
        width: 320px;
        height: 100vh;
        padding: 80px 0 150px;
        background: #fff;
        overflow-y: scroll;
        opacity: 0;
        transition: .6s ease;
        z-index: 1001;
    }
    .header-sp.open{
        opacity: 1;
        transform: translateX(-100%);
    }
    .header-sp::-webkit-scrollbar{
        display: none;
    }
}
@media screen and (max-width:320px){
    .header-sp{
        width: 100%;
    }
}
/*  header-sp-logo
------------------------------------------------------------------*/
.header-sp-logo{
    padding: 0 15px;
    margin-bottom: 15px;
}
/*  header-sp-nav
------------------------------------------------------------------*/
.header-sp-nav > li > a{
    position: relative;
    display: block;
    padding: 1em;
    background: var(--primary-light-color);
    border-bottom: 1px solid #ccc;
    font-size: 0.875rem;
    font-weight: bold;
    transition: .2s;
    z-index: 1;
}
.header-sp-nav > li > a::after{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--primary-color);
    transition: .4s ease-out;
}
/* アクティブ時動作 */
.header-sp-nav > li > a.active{
    background: var(--primary-color);
    color: #fff;
}
.header-sp-nav > li > a.active::after{
    right: 5px;
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-sp-nav > li > a:hover{
        background: var(--primary-color);
        color: #fff;
    }
    .header-sp-nav > li > a:hover::after{
        right: 5px;
        color: #fff;
    }
}
/*  header-sp-other-nav
------------------------------------------------------------------*/
.header-sp-other-nav{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
}
.header-sp-other-nav > li{
    border-bottom: 1px solid #ccc;
}
.header-sp-other-nav > li:nth-of-type(odd){
    border-right: 1px solid #ccc;
}
.header-sp-other-nav > li > a{
    position: relative;
    display: block;
    padding: 1.5em 1em 1.5em 0.5em;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.2;
    transition: .2s;
}
.header-sp-other-nav > li > a::after{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s;
}
.header-sp-other-nav > li > a i{
    margin-right: 3px;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-sp-other-nav > li > a:hover{
        color: var(--primary-color);
    }
    .header-sp-other-nav > li > a:hover::after{
        right: 5px;
    }
}
/* アクティブ時動作 */
.header-sp-other-nav > li > a.active{
    color: var(--primary-color);
}
.header-sp-other-nav > li > a.active::after{
    right: 5px;
}

/*  header-sp-contact
------------------------------------------------------------------*/
.header-sp-contact{
    display: flex;
    justify-content: center;
    column-gap: 7px;
    padding: 1.2em 1em;
    margin: 0 15px 20px;
    background: var(--accent-color);
    border-radius: 2em;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
.header-sp-contact i{
    font-size: 1.25em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-sp-contact:hover{
        background: var(--primary-color);
        color: #fff;
    }
}

/*  header-sp-tel
------------------------------------------------------------------*/
.header-sp-tel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.header-sp-tel .text{
    margin-bottom: 3px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}
.header-sp-tel .num{
    margin-bottom: 3px;
    font-family: var(--en-font);
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.header-sp-tel .time{
    font-size: 0.875rem;
    line-height: 1;
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px) {
    .header-hamburger{
        position: fixed;
        top: 0;
        right: 0;
        display: block;
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        cursor: pointer;
        z-index: 1001;
    }
    .header-hamburger .inner-line {
        display: block;
        position: absolute;
        left: 15px;
        width: 30px;
        height: 2px;
        background-color: #fff;
        transition: .2s;
    }
    .header-hamburger #line1 {
        top: 14px;
    }
    .header-hamburger #line2 {
        top: 22px;
    }
    .header-hamburger #line3 {
        top: 30px;
    }
    .header-hamburger .inner-line.open#line1 {
        transform: rotate(-45deg);
        top: 22px !important;
    }
    .header-hamburger .inner-line.open#line2 {
        opacity: 0;
    }
    .header-hamburger .inner-line.open#line3 {
        transform: rotate(45deg);
        top: 22px !important;
    }
    .header-hamburger .text {
        position: absolute;
        bottom: 9px;
        left: 0;
        width: 100%;
        font-size: 12px;
        font-weight: bold;
        color: #fff;
        text-align: center;
        line-height: 1;
    }
}

/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    display: none;
}
@media screen and (max-width:991px) {
    .header-overlay{
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        visibility: hidden;
        opacity: 0;
        transition: .4s;
        cursor: pointer;
        z-index: 1000;
    }
    .header-overlay.is-show{
        visibility: visible;
        opacity: 1;
    }
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 80px 0 30px;
    z-index: 1
}
@media screen and (max-width:991px){
    footer{
        padding-top: 60px;
    }
}

/*  footer-wrapper
------------------------------------------------------------------*/
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
@media screen and (max-width:991px){
    .footer-wrapper{
        flex-direction: column;
        row-gap: 30px;
    }
}

/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    margin-bottom: 24px;
}
@media screen and (max-width:991px){
    .footer-logo{
        text-align: center;
    }
}
/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 24px;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .footer-address{
        text-align: center;
    }
}

/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    font-family: var(--en-font);
    font-size: 1.25rem;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .footer-tel{
        font-size: 1.5rem;
        text-align: center;
    }
}

/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    justify-content: center;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .footer-nav{
        display: none;
    }
}

/*  footer-nav-list
------------------------------------------------------------------*/
.footer-nav-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.2em;
}
.footer-nav-list > li > a{
    position: relative;
    display: block;
    width: fit-content;
    padding-left: 1.4em;
    padding-bottom: 0.3em;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.3;
    transition: .2s;
}
.footer-nav-list > li > a::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}
.footer-nav-list > li > a::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #666;
    content: "";
    transition: .2s;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-list > li > a:hover{
        color: var(--primary-color);
    }
    .footer-nav-list > li > a:hover::after{
        background: var(--primary-color);
    }
}
@media screen and (max-width:767px){
    .footer-nav-list > li > a{
        font-size: 0.75rem;
    }
}

/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    line-height: 1;
}
@media screen and (max-width:991px){
    .copyright{
        text-align: center;
    }
}


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

/*  common-contact
------------------------------------------------------------------*/
.common-contact{
    position: relative;
    padding: 80px 0;
    background: url(../images/common/common-contact-bg.jpg);
    z-index: 1;
}
.common-contact::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    opacity: 0.7;
    z-index: -1;
}
@media screen and (max-width:767px){
    .common-contact{
        padding: 60px 0;
    }
}

/*  common-contact-wrapper
------------------------------------------------------------------*/
.common-contact-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 80px;
}
@media screen and (max-width:1199px){
    .common-contact-wrapper{
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}

/*  common-contact-tel-box
------------------------------------------------------------------*/
.common-contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px;
    background: #fff;
    text-align: center;
}
@media screen and (max-width:767px){
    .common-contact-tel-box{
        padding: 30px 20px;
    }
}
@media screen and (max-width:350px){
    .common-contact-tel-box{
        padding: 20px 12px;
    }
}

/*  common-contact-tel
------------------------------------------------------------------*/
.common-contact-tel{
    margin-bottom: 30px;
    font-family: var(--en-font);
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.common-contact-tel i{
    position: relative;
    top: -0.1em;
    margin-right: 0.3em;
    font-size: 0.8em;
}
@media screen and (max-width:767px){
    .common-contact-tel{
        margin-bottom: 20px;
        font-size: 2rem;
    }
}
@media screen and (max-width:350px){
    .common-contact-tel{
        font-size: 1.75rem;
    }
}

/*  common-contact-tel-time
------------------------------------------------------------------*/
.common-contact-tel-time{
    display: grid;
    grid-template-columns: repeat(2,auto);
    align-items: center;
    column-gap: 12px;
    row-gap: 12px;
}
.common-contact-tel-time dt{
    padding: 5px;
    border: 1px solid #333;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1;
}
.common-contact-tel-time dd{
    font-size: 1rem;
    line-height: 1.2;
}
@media screen and (max-width:767px){
    .common-contact-tel-time{
        column-gap: 5px;
        row-gap: 8px;
    }
    .common-contact-tel-time dt{
        font-size: 0.625rem;
    }
    .common-contact-tel-time dd{
        font-size: 0.75rem;
    }
}
@media screen and (max-width:350px){
    .common-contact-tel-time dd{
        font-size: 0.6875rem;
    }
}

/*  common-contact-btns
------------------------------------------------------------------*/
.common-contact-btns > li{
    margin-bottom: 42px;
}
.common-contact-btns > li:last-of-type{
    margin-bottom: 0;
}
@media screen and (max-width:1199px){
    .common-contact-btns > li{
        margin-bottom: 30px;
    }
}
@media screen and (max-width:767px){
    .common-contact-btns > li{
        margin-bottom: 15px;
    }
}

/*  common-contact-mail
------------------------------------------------------------------*/
.common-contact-mail{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: var(--primary-color);
    border-radius: 70px;
    transition: .2s ease-out;
    line-height: 1;
}
.common-contact-mail::after{
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    transition: .2s ease-out;
}
.common-contact-mail .caption{
    position: relative;
    margin-bottom: 1em;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-color);
}
.common-contact-mail .caption::before,
.common-contact-mail .caption::after{
    position: absolute;
    top: 50%;
    display: block;
    width: 1px;
    height: 1.5em;
    background: var(--accent-color);
    content: "";
}
.common-contact-mail .caption::before{
    left: -0.6em;
    transform: translateY(-50%) rotate(-25deg);
}
.common-contact-mail .caption::after{
    right: -0.4em;
    transform: translateY(-50%) rotate(25deg);
}
.common-contact-mail .title{
    font-size: 1.875rem;
    font-weight: bold;
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-contact-mail:hover{
        background: var(--primary-hover-color);
    }
    .common-contact-mail:hover::after{
        right: 20px;
    }
}
@media screen and (max-width:767px){
    .common-contact-mail{
        height: 100px;
    }
    .common-contact-mail::after{
        right: 20px;
        font-size: 1.125rem;
    }
    .common-contact-mail .caption{
        font-size: 0.875rem;
    }
    .common-contact-mail .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:350px){
    .common-contact-mail{
        height: 90px;
    }
    .common-contact-mail::after{
        font-size: 1rem;
    }
    .common-contact-mail .caption{
        font-size: 0.75rem;
    }
    .common-contact-mail .title{
        font-size: 1.125rem;
    }
}

/*  common-contact-kizai
------------------------------------------------------------------*/
.common-contact-kizai{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: #fff;
    border-radius: 70px;
    transition: .2s ease-out;
    line-height: 1;
}
.common-contact-kizai::after{
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: .2s ease-out;
}
.common-contact-kizai .caption{
    position: relative;
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: .2s ease-out;
}
.common-contact-kizai .title{
    font-size: 1.625rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}
/* ホバー時動作 */
@media (hover:hover) {
    .common-contact-kizai:hover{
        background: var(--primary-light-color);
    }
    .common-contact-kizai:hover::after{
        right: 20px;
    }
}
@media screen and (max-width:767px){
    .common-contact-kizai{
        height: 100px;
    }
    .common-contact-kizai::after{
        right: 20px;
        font-size: 1.125rem;
    }
    .common-contact-kizai .caption{
        font-size: 0.75rem;
    }
    .common-contact-kizai .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:350px){
    .common-contact-kizai{
        height: 90px;
    }
    .common-contact-kizai::after{
        font-size: 1rem;
    }
    .common-contact-kizai .title{
        font-size: 1.125rem;
    }
}

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

/*  page-top-section
------------------------------------------------------------------*/
.page-top-section{
    position: relative;
    padding: 100px 0 100px;
    overflow: hidden;
    z-index: 1;
}
.page-top-section::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    content: "";
    z-index: -1;
}
.page-top-section.lesson{ background: url(../images/lesson-page-top.jpg) no-repeat center / cover;}
.page-top-section.kizai{ background: url(../images/kizai-page-top.jpg) no-repeat center / cover;}
.page-top-section.studio{ background: url(../images/studio-page-top.jpg) no-repeat center / cover;}
.page-top-section.shop{ background: url(../images/shop-page-top.jpg) no-repeat center / cover;}
.page-top-section.works{ background: url(../images/works-page-top.jpg) no-repeat center / cover;}
.page-top-section.contact{ background: url(../images/contact-page-top.jpg) no-repeat center / cover;}
@media screen and (max-width:991px){
    .page-top-section{
        padding: 70px 0;
    }
}
@media screen and (max-width:767px){
    .page-top-section{
        padding: 50px 0;
    }
}
@media screen and (max-width:575px){
    .page-top-section{
        padding: 40px 0;
    }
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
.page-top-title .jp{
    display: block;
    margin-bottom: 0.2em;
    color: #fff;
}
.page-top-title .en{
    display: block;
    font-family: var(--en-font);
    font-size: max(0.5em, 0.875rem);
    color: var(--primary-color);
}
@media screen and (max-width:1399px){
    .page-top-title{ font-size: 2.25rem;}
}
@media screen and (max-width:1199px){
    .page-top-title{ font-size: 2rem;}
}
@media screen and (max-width:991px){
    .page-top-title{ font-size: 1.75rem;}
}
@media screen and (max-width:767px){
    .page-top-title{ font-size: 1.5rem;}
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    background: transparent !important;
    flex-wrap: wrap;
    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;
    margin: 0 -5px;
}
.paging .paging-text{
    display:inline-block;
    padding:0px 5px;
}
.paging .paging-text a,
.paging .paging-text.current{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #efefef;
    cursor: pointer;
    transition: .2s;
    color: #777;
}
.paging .paging-text.current{
    margin: 0 5px;
    background: var(--primary-color);
    color: #fff;
}
@media screen and (max-width:767px){
    .paging .paging-text a,
    .paging .paging-text.current{
        width: 34px;
        height: 34px;
    }
}

/*------------------------------------------------------------------
  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;
    }
}


/*------------------------------------------------------------------
  paging-contents
------------------------------------------------------------------*/

/*  page-contents-wrapper
------------------------------------------------------------------*/
.page-contents-wrapper{
    position: relative;
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    max-width: 1520px;
    padding: 60px 60px 0;
    margin: 0 auto;
    z-index: 1;
}
.page-contents-wrapper aside{
    flex-shrink: 0;
    width: 250px;
    padding: 15px;
    background: var(--primary-light-color);
}
.page-contents-wrapper article{
    width: 100%;
}
@media screen and (max-width:991px){
    .page-contents-wrapper{
        flex-direction: column;
        max-width: 810px;
        row-gap: 30px;
    }
    .page-contents-wrapper aside{
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .page-contents-wrapper {
        max-width: calc(510px + 10vw);
        padding: 30px 5vw 0;
    }
}

/*------------------------------------------------------------------
  paging-nav
------------------------------------------------------------------*/

/*  page-nav-wrapper
------------------------------------------------------------------*/
.page-nav-wrapper{
    position: sticky;
    top: 100px;
    left: 0;
}
@media screen and (max-width:1399px){
    .page-nav-wrapper{
        top: 80px;
    }
}

/*  page-nav-list
------------------------------------------------------------------*/
.page-nav-list{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
@media print, screen and (max-width:991px){
    .page-nav-list{
        flex-wrap: wrap;
        flex-direction: row;
        margin: 0 -5px;
    }
    .page-nav-list > li{
        width: 50%;
        padding: 0 5px;
    }
}

/*  page-nav-list-item
------------------------------------------------------------------*/
.page-nav-list-item{
    position: relative;
    display: block;
    padding: 1em 1.5em 1em 1em;
    background: #fff;
    font-size: 0.875rem;
    line-height: 1;
    transition: .2s;
}
.page-nav-list-item::after{
    position: absolute;
    top: 50%;
    right: 0.5em;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}
/* ホバー時動作 */
.page-nav-list-item:hover{
    background-color: var(--sub-color2);
    color: #593023;
}
/* アクティブ時動作 */
.page-nav-list-item.active{
    background-color: var(--sub-color2);
    color: #593023;
}
@media screen and (max-width:575px){
    .page-nav-list-item{
        font-size: 0.75rem;
    }
}