@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

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



/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  index.html home-hero
------------------------------------------------------------------*/

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: 49.2% 23.8% 23.8%;
    grid-template-rows: repeat(2, 1fr);
    padding: 30px 1.5% 60px;
    column-gap: 1.5%;
    row-gap: 1.5vw;
    z-index: 1;
}
@media screen and (max-width:767px){
    .home-hero{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        padding: 0 0 60px;
    }
}

/*  home-hero-image
------------------------------------------------------------------*/
.home-hero-image:nth-of-type(1){
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.home-hero-image:nth-of-type(2){
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}
.home-hero-image:nth-of-type(3){
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.home-hero-image:nth-of-type(4){
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}
.home-hero-image img{
    width: 100%;
}
@media screen and (max-width:767px){
    .home-hero-image:nth-of-type(1){
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        aspect-ratio: 8 / 5;
    }
    .home-hero-image:nth-of-type(2){
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
    .home-hero-image:nth-of-type(3){
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        aspect-ratio: 16 / 9;
    }
    .home-hero-image:nth-of-type(4){
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        aspect-ratio: 16 / 9;
    }
    .home-hero-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 24%;
    text-align: center;
}
@media screen and (max-width:991px){
    .home-hero-title{
        width: 33%;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        width: 70%;
    }
}

/*------------------------------------------------------------------
  index.html home-news
------------------------------------------------------------------*/

/*  home-news-category
------------------------------------------------------------------*/
.home-news-category{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 10px;
    row-gap: 10px;
    margin-bottom: 20px;
}
@media screen and (max-width:991px){
    .home-news-category{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .home-news-category{
        grid-template-columns: repeat(2,1fr);
    }
}

/*  home-news-category-btn
------------------------------------------------------------------*/
.home-news-category-btn{
    position: relative;
    display: block;
    width: 100%;
    padding: 0.9em 1.5em;
    background: #fff;
    border-radius: 2em;
    font-weight: 500;
    line-height: 1.3;
    transition: .2s ease-out;
}
.home-news-category-btn::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f13a";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}
/* アクティブ時動作 */
.home-news-category-btn.active{
    background: var(--primary-color);
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-news-category-btn:hover{
        background: var(--primary-color);
        color: #fff;
    }   
}
@media screen and (max-width:1199px){
    .home-news-category-btn{
        font-size: 0.875rem;
    }
}
@media screen and (max-width:767px){
    .home-news-category-btn{
        font-size: 0.75rem;
    }
}

/*  home-news-list
------------------------------------------------------------------*/
.home-news-list{
    display: none;
    max-height: 240px;
    padding: 0 30px;
    background: #fff;
    overflow-y: auto;
}
.home-news-list.active{
    display: block;
}
.home-news-list::-webkit-scrollbar{
    width: 5px;
}
.home-news-list::-webkit-scrollbar-track{
    background: #ccc;
}
.home-news-list::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}
@media screen and (max-width:767px){
    .home-news-list{
        max-height: 320px;
        padding: 0 15px;
    }
}

/*  home-news-item
------------------------------------------------------------------*/
.home-news-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 1.3em 0;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    z-index: 1;
}
.home-news-item::after{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--primary-color);
    z-index: 1;
}
.home-news-item .date{
    flex-shrink: 0;
    width: 5em;
    font-family: var(--en-font);
    line-height: 1;
}
.home-news-item .category{
    flex-shrink: 0;
    width: 12em;
    padding: 0.4em 0.5em;
    border: 1px solid var(--primary-color);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
}
.home-news-item .title{
    width: 100%;
    padding-right: 1.5em;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.5;
    transition: .2s ease-out;
}
.home-news-item .new{
    display: inline-block;
    margin-right: 5px;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
}
/* 詳細がない場合 */
.home-news-item.none{
    pointer-events: none;
}
.home-news-item.none::after{
    display: none;
}
/* ホバー時動作 */
@media (hover:hover) {    
    .home-news-item:hover .title{
        color: var(--primary-color);
    }
}
@media screen and (max-width:767px){
    .home-news-item{
        flex-wrap: wrap;
        row-gap: 10px;
        column-gap: 10px;
    }
    .home-news-item .category{
        width: fit-content;
        font-size: 0.7125rem;
    }
}

/*  home-news-item
------------------------------------------------------------------*/
.home-news-item{
    background: #fff;
}
.home-news-item dt{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 24px 60px 24px 30px;
    line-height: 1.5;
    cursor: pointer;
    transition: .2s ease-out;
}
.home-news-item dt::after{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    content: "\f13a";
    font-family: "Font Awesome 6 Free";
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
}
.home-news-item dt .date{
    font-family: var(--en-font);
    font-weight: normal;
    color: var(--primary-color);
}
.home-news-item dd{
    display: none;
    padding: 22px 30px;
    border-top: 1px solid #ccc;
    line-height: 1.8;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-news-item dt:hover{
        color: var(--primary-color);
    }    
}
/* オープン時動作 */
.home-news-item dt.open::after{
    content: "\f139";
}
@media screen and (max-width:767px){
    .home-news-item dt{
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 40px 12px 15px;
    }
    .home-news-item dt::after{
        right: 10px;
    }
    .home-news-item dd{
        padding: 10px 15px 20px;
    }
}

/*  home-news-modal
------------------------------------------------------------------*/
.home-news-modal{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 1002;
}
.home-news-modal.active{
    opacity: 1;
    visibility: visible;
}

/*  home-news-modal-overlay
------------------------------------------------------------------*/
.home-news-modal-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    cursor: pointer;
    z-index: -1;
}

/*  home-news-modal-box
------------------------------------------------------------------*/
.home-news-modal-box{
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    max-height: 90svh;
    padding: 50px 30px 30px;
    background: #fff;
    z-index: 1;
}

/*  home-news-modal-box-wrapper
------------------------------------------------------------------*/
.home-news-modal-box-wrapper{
    max-height: calc(90vh - 80px);
    max-height: calc(90svh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
}
.home-news-modal-box-wrapper::-webkit-scrollbar{
    width: 5px;
}
.home-news-modal-box-wrapper::-webkit-scrollbar-track{
    background: #ccc;
}
.home-news-modal-box-wrapper::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}

/*  home-news-modal-close
------------------------------------------------------------------*/
.home-news-modal-close{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

/*  home-news-modal-item
------------------------------------------------------------------*/
.home-news-modal-item{
    display: none;
}
.home-news-modal-item.active{
    display: block;
}

/*  home-news-modal-detail
------------------------------------------------------------------*/
.home-news-modal-detail{
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 5px;
}
.home-news-modal-detail .date{
    flex-shrink: 0;
    font-family: var(--en-font);
    line-height: 1;
}
.home-news-modal-detail .category{
    padding: 0.4em 0.5em;
    border: 1px solid var(--primary-color);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
}
.home-news-modal-detail .new{
    flex-shrink: 0;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
}
@media screen and (max-width:767px){
    .home-news-modal-detail .new{
        font-size: 0.75rem;
    }
    .home-news-modal-detail .date{
        font-size: 0.75rem;
    }
    .home-news-modal-detail .category{
        font-size: 0.625rem;
    }
}

/*------------------------------------------------------------------
  index.html home-links
------------------------------------------------------------------*/

/*  home-links-btn
------------------------------------------------------------------*/
.home-links-btn{
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    border: 1px solid #555;
    transition: .2s ease-out;
}
.home-links-btn::after{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: .2s ease-out;
}
.home-links-btn .image{
    flex-shrink: 0;
    width: 150px;
    height: 100%;
    overflow: hidden;
}
.home-links-btn .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-links-btn .body{
    width: 100%;
    padding: 24px 50px 16px 30px;
}
.home-links-btn .title{
    margin-bottom: 0.4em;
    font-size: 1.3125rem;
    font-weight: bold;
    line-height: 1.4;
}
.home-links-btn .text{
    line-height: 1.5;
}
.home-links-btn .view{
    display: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-links-btn:hover{
        border-color: var(--primary-color);
        background: var(--primary-light-color);
    }
    .home-links-btn:hover::after{
        right: 10px;
    }
    .home-links-btn:hover .image img{
        transform: scale(1.1);
        filter: brightness(0.6);
    }
}
@media screen and (max-width:767px){  
    .home-links-btn::after{
        right: 15px;
        font-size: 18px;
    }  
    .home-links-btn .image{
        width: 120px;
    }
    .home-links-btn .body{
        padding: 30px 30px 24px 15px;
    }
    .home-links-btn .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:575px){
    .home-links-btn{
        display: block;
        text-align: center;
    }
    .home-links-btn::after{
        display: none;
    }  
    .home-links-btn .image{
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .home-links-btn .body{
        padding: 20px 15px;
    }
    .home-links-btn .title{
        font-size: 1.125rem;
    }
    .home-links-btn .text{
        margin-bottom: 10px;
    }
    .home-links-btn .view{
        display: block;
        font-weight: bold;
        color: var(--primary-color);
    }
}

/*------------------------------------------------------------------
  index.html home-access
------------------------------------------------------------------*/

/*  home-access-map
------------------------------------------------------------------*/
.home-access-map{
    height: 340px;
    overflow: hidden;
}
@media screen and (max-width:575px){
    .home-access-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}



/*/////////////////////////////////////////////////////////////////
  lesson.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  lesson.html lesson-reason
------------------------------------------------------------------*/

/*  lesson-reason
------------------------------------------------------------------*/
.lesson-reason{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}
@media screen and (max-width:767px){
    .lesson-reason{
        grid-template-columns: 1fr;
        row-gap: 10px;
    }
}
/*  lesson-reason-item
------------------------------------------------------------------*/
.lesson-reason-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
}
.lesson-reason-item .image{
    width: 80px;
    height: 80px;
}
.lesson-reason-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lesson-reason-item .text{
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .lesson-reason-item .image{
        width: 60px;
        height: 60px;
    }
    .lesson-reason-item .text{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .lesson-reason-item {
        flex-direction: row;
        justify-content: flex-start;
        column-gap: 15px;
        padding: 10px;
        aspect-ratio: initial;
        border-radius: 3px;
    }
    .lesson-reason-item .image{
        width: 40px;
        height: 40px;
    }
    .lesson-reason-item .text{
        text-align: left;
    }
}
@media screen and (max-width:350px){
    .lesson-reason-item .image{
        width: 30px;
        height: 30px;
    }
    .lesson-reason-item .text{
        font-size: 0.875rem;
    }
}

/*------------------------------------------------------------------
  lesson.html lesson-category
------------------------------------------------------------------*/

/*  lesson-category
------------------------------------------------------------------*/
.lesson-category{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
    row-gap: 10px;
}
.lesson-category > li{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em;
    border: 1px solid var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.3;
}
@media screen and (max-width:991px){
    .lesson-category{
        grid-template-columns: repeat(3, 1fr);
    }
    .lesson-category > li{
        font-size: 0.75rem;
    }
}
@media screen and (max-width:767px){
    .lesson-category{
        grid-template-columns: repeat(2, 1fr);
    }
}

/*------------------------------------------------------------------
  lesson.html lesson-price
------------------------------------------------------------------*/

/*  lesson-price
------------------------------------------------------------------*/
.lesson-price{
    padding: 60px 0;
    background: var(--primary-light-color);
}
@media screen and (max-width:767px){
    .lesson-price{
        padding-top: 0;
        background: initial;
    }
}

/*  lesson-price-box
------------------------------------------------------------------*/
.lesson-price-box{
    padding: 60px;
    background: #fff;
}
@media screen and (max-width:767px){
    .lesson-price-box{
        padding: 0;
    }
}

/*  lesson-price-kessai
------------------------------------------------------------------*/
.lesson-price-kessai{
    height: 100%;
    padding: 20px;
    background: #efefef;
    text-align: center;
}
@media screen and (max-width:575px){
    .lesson-price-kessai{
        padding: 15px;
    }
}

/*------------------------------------------------------------------
  lesson.html lesson-teacher
------------------------------------------------------------------*/

/*  lesson-teacher-list
------------------------------------------------------------------*/
.lesson-teacher-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}
@media screen and (max-width:991px){
    .lesson-teacher-list{
        column-gap: 15px;
        row-gap: 15px;
    }
}
@media screen and (max-width:767px){
    .lesson-teacher-list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:575px){
    .lesson-teacher-list{
        column-gap: 10px;
        row-gap: 10px;
    }
}
@media screen and (max-width:350px){
    .lesson-teacher-list{
        grid-template-columns: 1fr;
    }
}

/*  lesson-teacher-item
------------------------------------------------------------------*/
.lesson-teacher-item{
    padding: 30px;
    border: 1px solid #999;
    text-align: center;
    cursor: pointer;
    transition: .2s ease-out;
}
.lesson-teacher-item .image{
    width: 150px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 15px;
}
.lesson-teacher-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lesson-teacher-item .name{
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
}
.lesson-teacher-item .kana{
    margin-bottom: 15px;
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.lesson-teacher-item .position{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 5px;
    row-gap: 5px;
}
.lesson-teacher-item .position > li{
    padding: 0.3em 0.5em;
    border: 1px solid #666;
    background: #fff;
    font-size: 0.75rem;
    color: #666;
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .lesson-teacher-item:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
}
@media screen and (max-width:991px){
    .lesson-teacher-item{
        padding: 20px;
    }
}
@media screen and (max-width:575px){
    .lesson-teacher-item{
        padding: 15px 10px;
    }
    .lesson-teacher-item .image{
        width: 100px;
    }
    .lesson-teacher-item .name{
        font-size: 1rem;
    }
    .lesson-teacher-item .kana{
        margin-bottom: 12px;
        font-size: 0.6875rem;
    }
    .lesson-teacher-item .position > li{
        font-size: 0.625rem;
    }
}

/*------------------------------------------------------------------
  lesson.html lesson-modal
------------------------------------------------------------------*/

/*  lesson-modal
------------------------------------------------------------------*/
.lesson-modal{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 1002;
}
.lesson-modal.active{
    opacity: 1;
    visibility: visible;
}

/*  lesson-modal-overlay
------------------------------------------------------------------*/
.lesson-modal-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    cursor: pointer;
    z-index: -1;
}

/*  lesson-modal-box
------------------------------------------------------------------*/
.lesson-modal-box{
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    max-height: 90svh;
    padding: 50px 30px 30px;
    background: #fff;
    z-index: 1;
}
@media screen and (max-width:575px){
    .lesson-modal-box{
        padding: 50px 15px 30px;
    }
}

/*  lesson-modal-box-wrapper
------------------------------------------------------------------*/
.lesson-modal-box-wrapper{
    max-height: calc(90vh - 80px);
    max-height: calc(90svh - 80px);
    padding-right: 5px;
    overflow-y: auto;
}
.lesson-modal-box-wrapper::-webkit-scrollbar{
    width: 5px;
}
.lesson-modal-box-wrapper::-webkit-scrollbar-track{
    background: #ccc;
}
.lesson-modal-box-wrapper::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}

/*  lesson-modal-close
------------------------------------------------------------------*/
.lesson-modal-close{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

/*  lesson-modal-item
------------------------------------------------------------------*/
.lesson-modal-item{
    display: none;
}
.lesson-modal-item.active{
    display: block;
}
.lesson-modal-item .image{
    width: 200px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 15px;
}
.lesson-modal-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lesson-modal-item .name{
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.lesson-modal-item .kana{
    margin-bottom: 15px;
    font-size: 0.875rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
}
.lesson-modal-item .position{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 5px;
    row-gap: 5px;
    margin-bottom: 20px;
}
.lesson-modal-item .position > li{
    padding: 0.3em 0.5em;
    border: 1px solid #666;
    font-size: 0.75rem;
    color: #666;
    line-height: 1;
}

/*/////////////////////////////////////////////////////////////////
  kizai.html
/////////////////////////////////////////////////////////////////*/

/*  kizai-genre-btn
------------------------------------------------------------------*/
.kizai-genre-btn{
    position: relative;
    display: block;
    padding: 30px;
    background: #fff;
    border: 2px solid #aaa;
    border-radius: 3px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
/* アクティブ時動作 */
.kizai-genre-btn.active{
    border-color: var(--primary-color);
    color: var(--primary-color);
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .kizai-genre-btn:hover{
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
}
@media screen and (max-width:575px){
    .kizai-genre-btn{
        padding: 15px;
        font-size: 1rem;
    }
}

/*  kizai-card
------------------------------------------------------------------*/
.kizai-card{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid #ccc;
    transition: .2s ease-out;
}
.kizai-card .image{
    aspect-ratio: 16 / 9;
    margin-bottom: 15px;
}
.kizai-card .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.kizai-card .detail{
    text-align: center;
}
/* ホバー時動作 */
@media (hover:hover) {
    .kizai-card:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
}
@media screen and (max-width:767px){
    .kizai-card{
        display: flex;
        align-items: center;
        padding: 10px;
        column-gap: 10px;
    }
    .kizai-card .image{
        flex-shrink: 0;
        width:80px;
        aspect-ratio: 1 / 1;
        margin-bottom: initial;
    }
    .kizai-card .detail{
        text-align: left;
    }
}


/*------------------------------------------------------------------
  kizai.html kizai-modal
------------------------------------------------------------------*/

/*  kizai-modal
------------------------------------------------------------------*/
.kizai-modal{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 1000;
}
.kizai-modal.is-show{
    opacity: 1;
    visibility: visible;
}
@media screen and (max-width:575px){
    .kizai-modal{
        padding: 30px 10px;
    }
}

/*  kizai-modal-overlay
------------------------------------------------------------------*/
.kizai-modal-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    cursor: pointer;
    z-index: -1;
}

/*  kizai-modal-box
------------------------------------------------------------------*/
.kizai-modal-box{
    position: relative;
    display: none;
    width: 100%;
    max-width: 700px;
    max-height: calc(100vh - 60px);
    max-height: calc(100svh - 60px); /* iOS対策 */
    padding: 60px 60px 80px 60px;
    background: #fff;
}
@media screen and (max-width:575px){
    .kizai-modal-box{
        padding: 30px 15px 60px 15px;
    }
}

/*  kizai-modal-container
------------------------------------------------------------------*/
.kizai-modal-container{
    max-height: calc(100vh - 200px);
    max-height: calc(100svh - 200px); /* iOS対策 */
    padding-right: 5px;
    padding-bottom: 30px;
    overflow-x: hidden;
    overflow-y: auto;
}
.kizai-modal-container::-webkit-scrollbar{
    width: 2px;
}
.kizai-modal-container::-webkit-scrollbar-track{
    background: #ccc;
}
.kizai-modal-container::-webkit-scrollbar-thumb{
    background: #666;
}
@media screen and (max-width:575px){
    .kizai-modal-container{
        padding-right: 0;
        max-height: calc(100vh - 160px);
        max-height: calc(100svh - 160px); /* iOS対策 */
    }
}

/*  kizai-modal-image
------------------------------------------------------------------*/
.kizai-modal-image{
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3 / 2;
    margin: 0 auto 30px;    
}
.kizai-modal-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*  kizai-modal-close
------------------------------------------------------------------*/
.kizai-modal-close{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding-top: 15px;
    text-align: center;
}
@media screen and (max-width:575px){
    .kizai-modal-close{
        height: 60px;
        padding-top: 10px;
    }
}

/*  kizai-modal-close-btn
------------------------------------------------------------------*/
.kizai-modal-close-btn{
    display: inline-block;
    padding: 15px 40px;
    background: #333;
    border-radius: 2em;
    color: #fff;
    line-height: 1;
    transition: .2s;
}
.kizai-modal-close-btn:hover{
    background: var(--primary-color);
}
@media screen and (max-width:575px){
    .kizai-modal-close-btn{
        padding: 10px 40px;
    }
}

/*/////////////////////////////////////////////////////////////////
  studio.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  studio.html studio-feature
------------------------------------------------------------------*/

/*  studio-feature
------------------------------------------------------------------*/
.studio-feature{
    display: flex;
    align-items: center;
    column-gap: 30px;
    padding: 20px;
    border: 1px solid #555;
    margin-bottom: 30px;
}
.studio-feature .icon{
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}
.studio-feature .icon img{
    width: 100%;
    height: 100%;
}
.studio-feature .body{
    width: 100%;
}
.studio-feature .title{
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.3;
}
@media screen and (max-width:767px){
    .studio-feature .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .studio-feature{
        flex-direction: column;
        row-gap: 15px;
    }
    .studio-feature .icon{
        width: 80px;
        height: 80px;
    }
    .studio-feature .title{
        text-align: center;
    }
}

/*------------------------------------------------------------------
  studio.html studio-price-table
------------------------------------------------------------------*/

/*  studio-price-table
------------------------------------------------------------------*/
.studio-price-table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    margin-bottom: 5px;
}
.studio-price-table th,
.studio-price-table td{
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
}
.studio-price-table th{
    background: var(--accent-color);
    font-size: 1.25rem;
}
.studio-price-table td{
    background: #efefef;
    font-weight: 500;
}
.studio-price-table td .num{
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
}
@media screen and (max-width:991px){
    .studio-price-table th,
    .studio-price-table td{
        padding: 15px;
    }
    .studio-price-table th{
        font-size: 1.125rem;
    }
}


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

/*/////////////////////////////////////////////////////////////////
  shop.html
/////////////////////////////////////////////////////////////////*/

/*  shop-map
------------------------------------------------------------------*/
.shop-map{
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
    overflow: hidden;
}
.shop-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .shop-map{
        aspect-ratio: 4 / 3;
    }
}

/*  shop-movie
------------------------------------------------------------------*/
.shop-movie{
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
}
.shop-movie iframe{
    width: 100%;
    height: 100%;
}

/*  shop-faq
------------------------------------------------------------------*/
.shop-faq{
    margin-bottom: 15px;
}
.shop-faq:last-of-type{
    margin-bottom: 0;
}
.shop-faq dt,
.shop-faq dd{
    padding: 15px;
    line-height: 1.5;
}
.shop-faq dt{
    background: var(--accent-color);
}
.shop-faq dt::before{
    content: "Q.";
}
.shop-faq dd{
    background: #efefef;
}
@media screen and (max-width:767px){
    .shop-faq dt,
    .shop-faq dd{
        padding: 10px;
    }
}

/*/////////////////////////////////////////////////////////////////
  works.html
/////////////////////////////////////////////////////////////////*/


/*------------------------------------------------------------------
  works.html works-category
------------------------------------------------------------------*/

/*  works-category-wrapper
------------------------------------------------------------------*/
.works-category-wrapper{
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}
@media screen and (max-width:767px){
    .works-category-wrapper{
        margin-bottom: 30px;
    }
}
/*  works-category-btn
------------------------------------------------------------------*/
.works-category-btn{
    position: relative;
    display: block;
    padding: 1em 3em 1em 1em;
    background: var(--primary-color);
    border-radius: 4px;
    color: #fff;
    line-height: 1.2;
    z-index: 1;
    --btn-icon: "＋";
}
.works-category-btn::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: var(--btn-icon);
    font-weight: bold;
    z-index: 1;
}
/*  works-category-dropdown
------------------------------------------------------------------*/
.works-category-dropdown{
    display: none;
    border: 1px solid #ccc;
    box-shadow: 0 10px 16px rgba(0,0,0,0.2);
}
/*  works-category-item
------------------------------------------------------------------*/
.works-category-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 1em;
    padding: 1em .5em 1em 1em;
    line-height: 1.2;
    border-bottom: 1px solid #ccc;
    z-index: 1;
}
.works-category-item::after{
    flex-shrink: 0;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: max(.8em,.10px);
    font-weight: bold;
    z-index: 1;
}
.works-category-item.active{
    background: var(--primary-light-color);
    color: var(--primary-color);
}
.works-category-item.active::after{
    content: "選択中";
    font-family: "NotoSansJP";
}
@media screen and (max-width:575px){
    .works-category-item{
        font-size: .75rem;
    }
}

/*------------------------------------------------------------------
  works.html works-card
------------------------------------------------------------------*/

/*  works-card
------------------------------------------------------------------*/
.works-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.works-card .image{
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.works-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.works-card .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
    transition: .2s;
}
.works-card .category{
    width: fit-content;
    padding: 0.3em 0.5em;
    margin-top: auto;
    border: 1px solid var(--primary-color);
    font-size: 0.75rem;
    color: var(--primary-color);
    line-height: 1;
}
.works-card:hover .image img{
    transform: scale(1.1);
    filter: brightness(0.6);
}
.works-card:hover .title{
    color: var(--primary-color);
}
@media screen and (max-width:1399px){
    .works-card .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .works-card{
        padding: 0;
        border: initial;
    }
    .works-card .image{
        margin-bottom: 10px;
    }
    .works-card .title{
        margin-bottom: 10px;
        font-size: 0.75rem;
    }
    .works-card .category{
        font-size: 0.625rem;
    }
}

/*------------------------------------------------------------------
  works.html works-modal
------------------------------------------------------------------*/

/*  works-modal
------------------------------------------------------------------*/
.works-modal{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 1000;
}
.works-modal.active{
    opacity: 1;
    visibility: visible;
}
@media screen and (max-width:575px){
    .works-modal{
        padding: 30px 10px;
    }
}

/*  works-modal-overlay
------------------------------------------------------------------*/
.works-modal-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    cursor: pointer;
    z-index: -1;
}

/*  works-modal-box
------------------------------------------------------------------*/
.works-modal-box{
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: calc(100vh - 60px);
    max-height: calc(100svh - 60px); /* iOS対策 */
    padding: 60px 60px 80px 60px;
    background: #fff;
}
@media screen and (max-width:575px){
    .works-modal-box{
        padding: 30px 15px 60px 15px;
    }
}

/*  works-modal-item
------------------------------------------------------------------*/
.works-modal-item{
    display: none;
    max-height: calc(100vh - 200px);
    max-height: calc(100svh - 200px); /* iOS対策 */
    padding-right: 5px;
    padding-bottom: 30px;
    overflow-x: hidden;
    overflow-y: auto;
}
.works-modal-item::-webkit-scrollbar{
    width: 2px;
}
.works-modal-item::-webkit-scrollbar-track{
    background: #ccc;
}
.works-modal-item::-webkit-scrollbar-thumb{
    background: #666;
}
.works-modal-item.active{
    display: block;
}
@media screen and (max-width:575px){
    .works-modal-item{
        padding-right: 0;
        max-height: calc(100vh - 160px);
        max-height: calc(100svh - 160px); /* iOS対策 */
    }
}

/*  works-modal-category
------------------------------------------------------------------*/
.works-modal-category{
    width: fit-content;
    padding: 0.3em 0.5em;
    margin-bottom: 10px;
    border: 1px solid var(--primary-color);
    font-size: 0.75rem;
    color: var(--primary-color);
    line-height: 1;
}

/*  works-modal-close
------------------------------------------------------------------*/
.works-modal-close{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding-top: 15px;
    text-align: center;
}
@media screen and (max-width:575px){
    .works-modal-close{
        height: 60px;
        padding-top: 10px;
    }
}

/*  works-modal-close-btn
------------------------------------------------------------------*/
.works-modal-close-btn{
    display: inline-block;
    padding: 15px 40px;
    background: #333;
    border-radius: 2em;
    color: #fff;
    line-height: 1;
    transition: .2s;
}
.works-modal-close-btn:hover{
    background: var(--primary-color);
}
@media screen and (max-width:575px){
    .works-modal-close-btn{
        padding: 10px 40px;
    }
}

/*  works-modal-image
------------------------------------------------------------------*/
.works-modal-image a{
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 10px;
    overflow: hidden;
}
.works-modal-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*  works-modal-thumbnails
------------------------------------------------------------------*/
.works-modal-thumbnails{
    display: flex;
    justify-content: center;
}
.works-modal-thumbnails .thumbnail{
    width: 20%;
    height: auto;
    aspect-ratio: 1 / 1;
    border: 2px solid transparent;
    filter: brightness(0.6);
    transition: .4s ease;
    cursor: pointer;
}
.works-modal-thumbnails .thumbnail.active{
    border-color: var(--primary-color);
    filter: brightness(1);
    pointer-events: none;
}
.works-modal-thumbnails .thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*/////////////////////////////////////////////////////////////////
  blog.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  blog.html blog-card
------------------------------------------------------------------*/

/*  blog-card
------------------------------------------------------------------*/
.blog-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.blog-card .image{
    margin-bottom: 20px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.blog-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.blog-card .detail{
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-bottom: 4px;
}
.blog-card .date{
    font-size: 14px;
    color: #666;
    line-height: 1;
}
.blog-card .new{
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.blog-card .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 12px;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
    transition: .2s;
}
.blog-card .category{
    width: fit-content;
    padding: 0.3em 0.5em;
    margin-top: auto;
    border: 1px solid var(--primary-color);
    font-size: 0.75rem;
    color: var(--primary-color);
    line-height: 1;
}
.blog-card:hover .image img{
    transform: scale(1.1);
    filter: brightness(0.6);
}
.blog-card:hover .title{
    color: var(--primary-color);
}
@media screen and (max-width:1399px){
    .works-card .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .works-card{
        padding: 0;
        border: initial;
    }
    .works-card .image{
        margin-bottom: 10px;
    }
    .works-card .title{
        margin-bottom: 10px;
        font-size: 0.75rem;
    }
    .works-card .category{
        font-size: 0.625rem;
    }
}

/*  blog-container
------------------------------------------------------------------*/
.blog-container{
    max-width: 1000px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .blog-container{
        padding: 0 6vw;
    }
}

/*  blog-detail
------------------------------------------------------------------*/
.blog-detail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.blog-detail .new{
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
.blog-detail .date{
    font-size: .875rem;
    color: #73574d;
    line-height: 1;
}
.blog-detail .category{
    display: inline-block;
    font-size: .875rem;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 1;
}
@media screen and (max-width:575px){
    .blog-detail{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .blog-detail .date{
        font-size: .75rem;
    }
    .blog-detail .category{
        font-size: .75rem;
    }
}
/*  blog-slider
------------------------------------------------------------------*/
.blog-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.blog-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #fff;
}
.blog-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.blog-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  blog-thumb-slider
------------------------------------------------------------------*/
.blog-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.blog-thumb-slider .swiper-slide{
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.blog-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.blog-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

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


/*/////////////////////////////////////////////////////////////////
  contact.html
/////////////////////////////////////////////////////////////////*/

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

/*  contact-tel
------------------------------------------------------------------*/
.contact-tel{
    margin-bottom: 20px;
    font-family: var(--en-font);
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.contact-tel span{
    font-size: 1.75em;
    letter-spacing: 0;
}
@media screen and (max-width:767px){
    .contact-tel{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel{
        font-size: 1.125rem;
    }
}