@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
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider .swiper-slide{
    height: calc(100vh - 160px);
    overflow: hidden;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/home/hero-overlay.png) no-repeat center right / cover;
    content: "";
    z-index: 1;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1599px){
    .home-hero-slider .swiper-slide{
        height: calc(100vh - 128px);
    }
}
@media screen and (max-width:1199px){
    .home-hero-slider .swiper-slide{
        height: 500px;
    }
}
@media screen and (max-width:767px){
    .home-hero-slider .swiper-slide{
        height: calc(100vh - 200px);
        min-height: 420px;
    }
    .home-hero-slider .swiper-slide::after{
        background: rgba(0,0,0,.5);
    }
}
/*  home-hero-slider-image
------------------------------------------------------------------*/
.home-hero-slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    right: 7vw;
    bottom: 170px;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-hero-detail{
        right: 40px;
    }
}
@media screen and (max-width:767px){
    .home-hero-detail{
        bottom: 50%;
        left: 0;
        transform: translateY(50%);
        width: 100%;
        padding: 0 4vw;
        text-align: center;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: .5em;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}
.home-hero-title small{
    font-size: .58em;
}
@media screen and (max-width:1199px){
    .home-hero-title{
        font-size: 2rem;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        font-size: min(11vw,3rem);
    }
    .home-hero-title small{
        font-size: .35em;
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    color: #fff;
    line-height: 1.625;
}
@media screen and (max-width:1199px){
    .home-hero-text{
        font-size: .8125rem;
    }
}
@media screen and (max-width:767px){
    .home-hero-text{
        font-size: max(2vw,.75rem);
    }
}

/*------------------------------------------------------------------
  home-news
------------------------------------------------------------------*/

/*  home-news
------------------------------------------------------------------*/
.home-news{
    position: relative;
    z-index: 2;
}
/*  home-news-box
------------------------------------------------------------------*/
.home-news-box{
    margin-top: -100px;
    padding: 60px 40px;
    background: #fff;
    border-radius: 12px;
}
@media screen and (max-width:767px){
    .home-news-box{
        padding: 30px 20px;
        margin: -80px -2vw 0;
    }
}
/*  home-news-box-head
------------------------------------------------------------------*/
.home-news-box-head{
    display: grid;
    grid-template-columns: 175px 1fr;
    align-items: flex-end;
    column-gap: 50px;
    margin-bottom: 40px;
}
@media screen and (max-width:1199px){
    .home-news-box-head{
        display: grid;
        grid-template-columns: 142px 1fr;
        align-items: flex-end;
        column-gap: 30px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .home-news-box-head{
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 20px;
        margin-bottom: 20px;
    }
}
/*  home-news-category-list
------------------------------------------------------------------*/
.home-news-category-list{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
@media screen and (max-width:575px){
    .home-news-category-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
/*  home-news-category-btn
------------------------------------------------------------------*/
.home-news-category-btn{
    --data-color: #121313;
    display: block;
    padding: .5em 2em;
    border: 1px solid var(--data-color);
    border-radius: 4px;
    font-size: .875rem;
    color: var(--data-color);
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
/* アクティブ時動作 */
.home-news-category-btn.active{
    background: var(--data-color);
    color: #fff;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-news-category-btn:hover{
        background: var(--data-color);
        color: #fff;
    }
}
@media (hover:none) {
    .home-news-category-btn:active{
        background: var(--data-color);
        color: #fff;
    }
}
@media screen and (max-width:1199px){
    .home-news-category-btn{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .home-news-category-btn{
        padding: .5em;
    }
}
/*  home-news-contents
------------------------------------------------------------------*/
.home-news-contents{
    display: none;
    margin-bottom: 40px;
}
.home-news-contents.active{
    display: block;
    max-height: 250px;
    overflow-y: auto;
}

/*------------------------------------------------------------------
  home-seminars
------------------------------------------------------------------*/

/*  home-seminars-list
------------------------------------------------------------------*/
.home-seminars-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
@media screen and (max-width:1199px){
    .home-seminars-list{
        gap: 16px;
    }
}
@media screen and (max-width:991px){
    .home-seminars-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .home-seminars-list{
        grid-template-columns: 1fr;
    }
}
/*  home-seminars-card
------------------------------------------------------------------*/
.home-seminars-card{
    display: block;
    height: 100%;
    background: #fff;
    transition: .2s ease-out;
}
.home-seminars-card .image{
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.home-seminars-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-seminars-card .body{
    padding: 40px 20px;
}
.home-seminars-card .title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    margin-bottom: 1.25em;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
    transition: .2s ease-out;
}
.home-seminars-card .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.16em;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    --letter-spacing: 0;
    transition: .2s ease-out;
}
.home-seminars-card .license{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 6px;
}
.home-seminars-card .license > li{
    padding: .4em 1em;
    border: 1px solid #787c7c;
    border-radius: 4px;
    color: #787c7c;
    text-align: center;
    line-height: 1.4;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-seminars-card:hover{
        box-shadow: 0 0 20px rgba(37, 159, 75,.5);
    }
    .home-seminars-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-seminars-card:hover .title{
        color: var(--primary-color);
    }
    .home-seminars-card:hover .arrow{
        transform: scale(.8);
    }
}
@media (hover:none) {
    .home-seminars-card:active{
        box-shadow: 0 0 20px rgba(37, 159, 75,.5);
    }
    .home-seminars-card:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-seminars-card:active .title{
        color: var(--primary-color);
    }
    .home-seminars-card:active .arrow{
        transform: scale(.8);
    }
}
@media screen and (max-width:1399px){
    .home-seminars-card .title{
        font-size: 1.25rem;
    }
    .home-seminars-card .license > li{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-seminars-card .body{
        padding: 20px;
    }
    .home-seminars-card .title{
        font-size: 1.125rem;
    }
}

/*------------------------------------------------------------------
  home-membership
------------------------------------------------------------------*/

/*  home-membership-wrapper
------------------------------------------------------------------*/
.home-membership-wrapper{
    display: flex;
    column-gap: 90px;
}
@media screen and (max-width:1399px){
    .home-membership-wrapper{
        column-gap: 60px;
    }
}
@media screen and (max-width:991px){
    .home-membership-wrapper{
        column-gap: 40px;
    }
}
@media screen and (max-width:767px){
    .home-membership-wrapper{
        flex-direction: column;
        row-gap: 30px;
    }
}
/*  home-membership-image
------------------------------------------------------------------*/
.home-membership-image{
    width: 100%;
    overflow: hidden;
}
.home-membership-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .home-membership-image{
        aspect-ratio: 16 / 9;
    }
}
/*  home-membership-detail
------------------------------------------------------------------*/
.home-membership-detail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 645px;
}
/*  home-membership-text
------------------------------------------------------------------*/
.home-membership-text{
    margin-bottom: 2.5em;
    font-size: 1.125rem;
}
@media screen and (max-width:1399px){
    .home-membership-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-membership-text{
        font-size: .875rem;
    }
}


/*------------------------------------------------------------------
  home-banner
------------------------------------------------------------------*/

/*  home-banner
------------------------------------------------------------------*/
.home-banner{
    display: block;
    padding: 20px 10px;
    background: #fff;
    transition: .05s ease-out;
}
@media (hover:hover) {
    .home-banner:hover{
        opacity: .7;
    }
}
@media (hover:none) {
    .home-banner:active{
        opacity: .7;
    }
}
@media screen and (max-width:991px){
    .home-banner{
        padding: 8px 4px;
    }
}


/*/////////////////////////////////////////////////////////////////
  about.html
/////////////////////////////////////////////////////////////////*/

/*  about-greeting-wrapper
------------------------------------------------------------------*/
.about-greeting-wrapper{
    display: grid;
    grid-template-columns: 1fr 400px;
    column-gap: 60px;
}
@media screen and (max-width:1399px){
    .about-greeting-wrapper{
        grid-template-columns: 1fr 300px;
    }
}
@media screen and (max-width:991px){
    .about-greeting-wrapper{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        row-gap: 30px;
    }
}
/*  about-greeting-image
------------------------------------------------------------------*/
.about-greeting-image{
    margin-bottom: 16px;
}
@media screen and (max-width:991px){
    .about-greeting-image{
        width: 100%;
        max-width: 300px;
    }
}
/*  about-map
------------------------------------------------------------------*/
.about-map{
    height: 300px;
    margin-bottom: 20px;
}
.about-map iframe{
    width: 100%;
    height: 100%;
}
/*  about-access-box
------------------------------------------------------------------*/
.about-access-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 30px;
    padding: 30px;
    border-radius: 10px;
    background: #efefef;
}
@media screen and (max-width:575px) {
    .about-access-box{
        justify-content: center;
    }
}
/*  about-access-list
------------------------------------------------------------------*/
.about-access-list{
    display: flex;
    flex-direction: column;
    row-gap: .5em;
    line-height: 1.5;
}
.about-access-list > li{
    position: relative;
    padding-left: 1.25em;
}
.about-access-list > li > i{
    position: absolute;
    top: .3em;
    left: 0;
    color: var(--primary-color);
}


/*/////////////////////////////////////////////////////////////////
  news.html
/////////////////////////////////////////////////////////////////*/

/*  news-category-list
------------------------------------------------------------------*/
.news-category-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
}
@media screen and (max-width:991px){
    .news-category-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .news-category-list{
        grid-template-columns: repeat(2,1fr);
    }
}
/*  news-category-btn
------------------------------------------------------------------*/
.news-category-btn{
    --data-color: #121313;
    display: block;
    padding: 1em;
    border: 1px solid var(--data-color);
    border-radius: 4px;
    color: var(--data-color);
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
/* アクティブ時動作 */
.news-category-btn.active{
    background: var(--data-color);
    color: #fff;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .news-category-btn:hover{
        background: var(--data-color);
        color: #fff;
    }
}
@media (hover:none) {
    .news-category-btn:active{
        background: var(--data-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .news-category-btn{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .news-category-btn{
        font-size: .75rem;
    }
}

/*  news-list
------------------------------------------------------------------*/
.news-list{
    border-top: 1px solid #ccc;
}
.news-list > li{
    line-height: 1;
}
/*  news-list-item
------------------------------------------------------------------*/
.news-list-item{
    position: relative;
    display: grid;
    grid-template-columns: 155px 1fr;
    column-gap: 50px;
    padding: 24px 20px;
    border-bottom: 1px solid #ccc;
    transition: .2s ease-out;
}
.news-list-item .detail{
    display: flex;
    column-gap: 16px;
}
.news-list-item .new{
    font-size: .875rem;
    line-height: 1;
}
.news-list-item .date{
    margin-left: auto;
    font-size: .875rem;
    color: #787878;
    line-height: 1;
}
.news-list-item .category{
    --data-color: #121313;
    display: block;
    width: fit-content;
    padding: .4em .5em;
    margin-bottom: 1em;
    background: var(--data-color);
    border-radius: 4px;
    font-size: .875rem;
    color: #fff;
}
.news-list-item .title{
    line-height: 1.4;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.news-list-item:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    a.news-list-item:hover .title{
        color: var(--primary-color);
    }
}
@media screen and (max-width:1199px){
    .news-list-item{
        grid-template-columns: 125px 1fr;
        column-gap: 30px;
        padding: 20px 16px;
    }
    .news-list-item .new{
        font-size: .75rem;
    }
    .news-list-item .date{
        font-size: .75rem;
    }
    .news-list-item .category{
        font-size: .75rem;
    }
    .news-list-item .title{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .news-list-item{
        grid-template-columns: 1fr;
        row-gap: 16px;
        padding: 16px 0;
    }
    .news-list-item .date{
        margin-left: initial;
    }
    .news-list-item .category{
        font-size: .625rem;
    }
    .news-list-item .title{
        font-size: .875rem;
    }
}
/*  news-container
------------------------------------------------------------------*/
.news-container{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}
@media screen and (max-width:991px){
    .news-container{
        padding: 0 6vw;
    }
}
/*  news-detail
------------------------------------------------------------------*/
.news-detail{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.news-detail .new{
    font-size: .875rem;
    line-height: 1;
}
.news-detail .date{
    font-size: .875rem;
    color: #787878;
    line-height: 1;
}
.news-detail .category{
    display: inline-block;
    font-size: .75rem;
    padding: .4em .5em;
    border-radius: 4px;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:575px){
    .news-detail{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .news-detail .date{
        font-size: .75rem;
    }
    .news-detail .category{
        font-size: .75rem;
    }
}
/*  news-slider
------------------------------------------------------------------*/
.news-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.news-slider .swiper-slide{
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    background: #fff;
    overflow: hidden;
}
.news-slider .swiper-slide a{
    display: block;
    height: 100%;
}
.news-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  news-thumb-slider
------------------------------------------------------------------*/
.news-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}
.news-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.news-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    filter: brightness(0.3);
    cursor: pointer;
}
.news-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.news-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

}
/*  news-slider-button
------------------------------------------------------------------*/
.news-slider-button-prev,
.news-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;
}
.news-slider-button-prev.swiper-button-disabled,
.news-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.news-slider-button-prev{
    left: -18px;
}
.news-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;
}
.news-slider-button-next{
    right: -18px;
}
.news-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) {
    .news-slider-button-prev:hover,
    .news-slider-button-next:hover,
    .news-slider-button-prev:active,
    .news-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .news-slider-button-prev:active,
    .news-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .news-slider-button-prev:active,
    .news-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


/*/////////////////////////////////////////////////////////////////
  seminars.html
/////////////////////////////////////////////////////////////////*/

/*  seminars-contents
------------------------------------------------------------------*/
.seminars-contents{
    position: relative;
    padding: 40px 40px 20px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 12px;
}
@media screen and (max-width:767px){
    .seminars-contents{
        position: relative;
        padding: 30px 20px 20px;
    }
}
/*  seminars-contents-status
------------------------------------------------------------------*/
.seminars-contents-status{
    width: fit-content;
    font-size: .875rem;
    padding: .5em 1em;
    margin-bottom: 12px;
    line-height: 1;
}
.seminars-contents-status.active{ background-color: #99d520; color: #fff;}
.seminars-contents-status.wait{ border:1px solid #99d520; color: #86c30d;}
.seminars-contents-status.fin{ background-color: #ccc; color: #666;}

@media screen and (max-width:767px){
    .seminars-contents-status{
        font-size: .75rem;
    }
}
/*  seminars-category
------------------------------------------------------------------*/
.seminars-category{
    width: fit-content;
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.2;
}

/*  seminars-contact-box
------------------------------------------------------------------*/
.seminars-contact-box{
    height: 100%;
    background: #fff;
    border: 1px solid var(--sub-color);
    text-align: center;
}
.seminars-contact-box .title{
    padding: .75em 1em;
    background: var(--sub-color);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}
.seminars-contact-box .body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
}
.seminars-contact-box .num{
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.seminars-contact-box .num span{
    font-size: 1.75em;
    letter-spacing: 0;
}
@media screen and (max-width:1199px){
    .seminars-contact-box .title{
        font-size: 1.25rem;
    }
    .seminars-contact-box .num{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:575px){
    .seminars-contact-box .num{
        font-size: 1rem;
    }
    .seminars-contact-box .title{
        font-size: 1.125rem;
    }
    .seminars-contact-box .body{
        padding: 20px 12px;
    }
}
@media screen and (max-width:350px){
    .seminars-contact-box .num{
        font-size: .875rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  faq.html
/////////////////////////////////////////////////////////////////*/

/*  faq-area
------------------------------------------------------------------*/
.faq-area{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
/*  faq-item
------------------------------------------------------------------*/
.faq-item dt{
    --toggle: "＋";
    position: relative;
    padding: 1em 2.5em;
    background: var(--primary-light-color);
    font-weight: bold;
    line-height: 1.7;
    cursor: pointer;
    z-index: 1;
}
.faq-item dt::before{
    position: absolute;
    top: .25em;
    left: .5em;
    content: "Q";
    font-size: 1.5em;
    color: var(--primary-color);
    z-index: 1;
}
.faq-item dt::after{
    position: absolute;
    top: .35em;
    right: .5em;
    content: var(--toggle);
    font-size: 1.5em;
    z-index: 1;
}
.faq-item dd{
    position: relative;
    display: none;
    padding: 1em;
    background: #fff;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.7;
    z-index: 1;
}


/*/////////////////////////////////////////////////////////////////
  membership.html
/////////////////////////////////////////////////////////////////*/

/*  membership-special-list
------------------------------------------------------------------*/
.membership-special-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
/*  membership-special-item
------------------------------------------------------------------*/
.membership-special-item{
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}
.membership-special-item .num{
    width: fit-content;
    padding: .5em 1em;
    margin-bottom: 8px;
    background: var(--primary-color);
    font-size: .875rem;
    color: #fff;
    line-height: 1;
}
.membership-special-item .title{
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: 1px solid #aaa;
    font-size: 1.375rem;
    font-weight: bold;
    line-height: 1.4;
}
@media screen and (max-width:1199px){
    .membership-special-item .num{
        font-size: .75rem;
    }
    .membership-special-item .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:991px){
    .membership-special-item .title{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:767px){
    .membership-special-item .title{
        font-size: 1rem;
    }
}

/*  membership-cta
------------------------------------------------------------------*/
.membership-cta{
    position: sticky;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 8px;
    width: 100%;
    padding: 10px;
    background: var(--sub-color);
    text-align: center;
    z-index: 100;
}
.membership-cta .title{
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .membership-cta .title{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:575px){
    .membership-cta .title{
        font-size: 1rem;
    }
}
/*  membership-cta-btn
------------------------------------------------------------------*/
.membership-cta-btn{
    position: relative;
    display: inline-block;
    min-width: 300px;
    padding: .75em 3em;
    background: var(--accent-color);
    border-radius: 4px;
    text-align: center;
    line-height: 1.2;
    transition: .2s;
    z-index: 1;
}
.membership-cta-btn::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s;
    z-index: 1;
}
@media (hover:hover) {
    .membership-cta-btn:hover{ background: var(--red-color); color: #fff;}
    .membership-cta-btn:hover::after{ right: .3em;}
}
@media (hover:none) {
    .membership-cta-btn:active{ background: var(--red-color); color: #fff;}
    .membership-cta-btn:active::after{ right: .3em;}
}


/*/////////////////////////////////////////////////////////////////
  member-directory.html
/////////////////////////////////////////////////////////////////*/

/*  member-gojuon-list
------------------------------------------------------------------*/
.member-gojuon-list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 8px;
}
/*  member-gojuon-list
------------------------------------------------------------------*/
.member-gojuon-list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 8px;
}
@media screen and (max-width:767px){
    .member-gojuon-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:575px){
    .member-gojuon-list{
        gap: 4px;
    }
}
/*  member-gojuon-btn
------------------------------------------------------------------*/
.member-gojuon-btn{
    display: block;
    padding: .75em 1em;
    background: var(--sub-color);
    transition: .2s ease-out;
    color: #fff;
    text-align: center;
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .member-gojuon-btn:hover{
        background: var(--accent-color);
        color: var(--black-color);
    }
}
@media (hover:none) {
    .member-gojuon-btn:active{
        background: var(--accent-color);
        color: var(--black-color);
    }
}
@media screen and (max-width:575px){
    .member-gojuon-btn{
        font-size: .75rem;
    }
}
/*  member-title
------------------------------------------------------------------*/
.member-title{
    width: 120px;
    padding: .5em 1em;
    margin-bottom: 12px;
    background: var(--sub-color);
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1;
}
/*  member-list
------------------------------------------------------------------*/
.member-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    font-size: .875rem;
}
.member-list > li{
    display: flex;
    align-items: center;
    padding: 1em;
    border: 1px solid #ccc;
    line-height: 1.2;
}
@media screen and (max-width:1199px){
    .member-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .member-list{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .member-list{
        grid-template-columns: 1fr;
    }
}

/*/////////////////////////////////////////////////////////////////
  registration.html
/////////////////////////////////////////////////////////////////*/

/*  registration-user-box
------------------------------------------------------------------*/
.registration-user-box{
    display: none;
    padding: 30px;
    margin-bottom: 20px;
    background: var(--primary-light-color);
}
.registration-user-box.active{
    display: block;
}
@media screen and (max-width:575px){
    .registration-user-box{
        padding: 30px 12px;
    }
}

/*  registration-user-add-btn
------------------------------------------------------------------*/
.registration-user-add-btn{
    display: inline-block;
    padding: 1em 2em;
    background: var(--sub-color);
    border-radius: 4px;
    color: #fff;
    line-height: 1;
}
.registration-user-add-btn.disabled{
    background: #ccc;
    color: #666;
    pointer-events: none;
}


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

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 20px;
    background: #efefef;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 5px;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.contact-tel-box .num span{
    font-size: 1.75em;
    letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:1199px){
    .contact-tel-box .num{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:767px){
    .contact-tel-box{
        padding: 24px 16px;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .num{
        font-size: 1rem;
    }
    .contact-tel-box .title{
        font-size: 1.25rem;
    }
    .contact-tel-box .time{
        font-size: 0.75rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-box .num{
        font-size: .875rem;
    }
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
}


/*  contact-attention
------------------------------------------------------------------*/
.contact-attention{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .6em;
    margin-bottom: 30px;
    font-size: 1.25rem;
    color: var(--red-color);
    line-height: 1.4;
}
.contact-attention .icon{
    display: block;
    width: 2em;
}
@media screen and (max-width:1599px){
    .contact-attention{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:1199px){
    .contact-attention{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .contact-attention{
        flex-direction: column;
        row-gap: 8px;
        padding: 16px 12px;
        border: 1px solid var(--red-color);
        border-radius: 4px;
        font-size: .875rem;
    }
    .contact-attention .icon{
        width: 3em;
    }
}