@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;
    padding: 30px 0 40px;
    margin-bottom: 60px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-hero{
        padding: 20px 0 30px;
        margin-bottom: 50px;
    }
}
@media screen and (max-width:991px){
    .home-hero{
        padding: 10px 0 20px;
        margin-bottom: 40px;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    overflow: hidden;
}
/*  home-hero-slider-item
------------------------------------------------------------------*/
.home-hero-slider-item{
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    border: 1px solid #ccc;
    overflow: hidden;
}
.home-hero-slider-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
@media (hover:hover) {
    .home-hero-slider-item:hover img{
        opacity: .8;
    }
}
@media screen and (max-width:767px){
    .home-hero-slider-item{
        border-radius: 10px;
    }
}
/*  home-hero-slider-button-next
------------------------------------------------------------------*/
.home-hero-slider-button-prev,
.home-hero-slider-button-next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.2vw;
    aspect-ratio: 1 / 1;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    line-height: 1;
    cursor: pointer;
    transition: .2s ease-out;
    z-index: 1;
}
.home-hero-slider-button-prev{
    left: 22vw;
}
.home-hero-slider-button-prev::before{
    display: block;
    width: 1vw;
    height: 1vw;
    background: url(../images/common/fa-angle-left.png) no-repeat center / contain;
    content: "";
}
.home-hero-slider-button-next{
    right: 22vw;
}
.home-hero-slider-button-next::before{
    display: block;
    width: 1vw;
    height: 1vw;
    background: url(../images/common/fa-angle-right.png) no-repeat center / contain;
    content: "";
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-hero-slider-button-prev:hover,
    .home-hero-slider-button-next:hover{
        background: var(--primary-color);
    }
    .home-hero-slider-button-prev:active,
    .home-hero-slider-button-next:active{
        transform: translateY(-50%) scale(.8);
    }
    .home-hero-slider-button-prev:hover::before,
    .home-hero-slider-button-next:hover::before,
    .home-hero-slider-button-prev:active::before,
    .home-hero-slider-button-next:active::before{
        filter: brightness(0) invert(1);
    }
}

@media screen and (max-width:1399px){
    .home-hero-slider-button-prev{
        left: 13.5vw;
    }
    .home-hero-slider-button-next{
        right: 13.5vw;
    }
}
@media screen and (max-width:991px){
    .home-hero-slider-button-prev,
    .home-hero-slider-button-next{
        width: 40px;
    }
    .home-hero-slider-button-prev{
        left: 7vw;
    }
    .home-hero-slider-button-next{
        right: 7vw;
    }
    .home-hero-slider-button-prev::before,
    .home-hero-slider-button-next::before{
        width: 10px;
        height: 10px;
    }
}
@media screen and (max-width:575px){
    .home-hero-slider-button-prev{
        left: 3vw;
    }
    .home-hero-slider-button-next{
        right: 3vw;
    }
}
/*  home-hero-slider-pagination
------------------------------------------------------------------*/
.home-hero-slider-pagination{
    position: absolute;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 1;
}
.home-hero-slider-pagination .swiper-pagination-bullet{
    width: 80px;
    height: 8px;
    border-radius: initial;
}
.home-hero-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--primary-color);
}
@media screen and (max-width:1399px){
    .home-hero-slider-pagination .swiper-pagination-bullet{
        width: 60px;
        height: 6px;
    }
}
@media screen and (max-width:991px){
    .home-hero-slider-pagination .swiper-pagination-bullet{
        width: 40px;
        height: 4px;
    }
}
@media screen and (max-width:575px){
    .home-hero-slider-pagination .swiper-pagination-bullet{
        width: 30px;
        height: 3px;
        margin: 0 2px !important;
    }
}

/*------------------------------------------------------------------
  home-service
------------------------------------------------------------------*/

/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
}
@media screen and (max-width:991px){
    .home-service-list{
        column-gap: 12px;
    }
}
@media screen and (max-width:767px){
    .home-service-list{
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}
/*  home-service-item
------------------------------------------------------------------*/
.home-service-item{
    position: relative;
    display: block;
    padding: 40px 20px 30px;
    z-index: 1;
}
.home-service-item::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
.home-service-item .image{
    height: 112px;
    margin-bottom: 20px;
}
.home-service-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.home-service-item .title{
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}
.home-service-item .view{
    display: flex;
    align-items: center;
    column-gap: .5em;
    width: fit-content;
    padding: .5em 1.75em;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 2em;
    font-size: .875rem;
    color: #fff;
}
.home-service-item .view::after{
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../images/common/fa-circle-chevron-right.png) no-repeat center / contain;
    filter: brightness(0) invert(1);
    content: "";
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-service-item:hover::after{
        transform: scale(.95);
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        box-shadow: 0 0 20px rgba(45, 206, 255, 0.5);
    }
    .home-service-item:hover .view::after{
        transform: translateX(.5em);
    }
}
@media (hover:none) {
    .home-service-item:active::after{
        transform: scale(.95);
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        box-shadow: 0 0 20px rgba(45, 206, 255, 0.5);
    }
    .home-service-item:active .view::after{
        transform: translateX(.5em);
    }
}
@media screen and (max-width:1399px){
    .home-service-item .image{
        height: 100px;
    }
    .home-service-item .title{
        font-size: 1.25rem;
    }
    .home-service-item .view{
        font-size: .8125rem;
    }
}
@media screen and (max-width:991px){
    .home-service-item{
        padding: 30px 12px 20px;
    }
    .home-service-item .image{
        height: 80px;
        margin-bottom: 16px;
    }
    .home-service-item .title{
        margin-bottom: 16px;
        font-size: 1.125rem;
    }
    .home-service-item .view{
        font-size: .75rem;
    }
}

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

/*  home-news-head
------------------------------------------------------------------*/
.home-news-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    margin-bottom: 40px;
}
@media screen and (max-width:991px){
    .home-news-head{
        margin-bottom: 30px;
    }
}
@media screen and (max-width:767px){
    .home-news-head{
        justify-content: center;
    }
}
/*  home-news-btn
------------------------------------------------------------------*/
.home-news-btn{
    display: flex;
    align-items: center;
    column-gap: .75em;
    width: fit-content;
    padding: .5em 1.25em;
    background: var(--primary-color);
    border-radius: 2em;
    color: #fff;
    transition: .2s ease-out;
}
.home-news-btn::after{
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../images/common/fa-circle-chevron-right.png) no-repeat center / contain;
    filter: brightness(0) invert(1);
    content: "";
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-news-btn:hover{
        background: var(--accent-color);
    }
    .home-news-btn:hover::after{
        transform: translateX(.5em);
    }
}
@media (hover:none) {
    .home-news-btn:active{
        background: var(--accent-color);
    }
    .home-news-btn:active::after{
        transform: translateX(.5em);
    }
}
@media screen and (max-width:767px){
    .home-news-btn{
        display: none;
    }
}
/*  home-news-contents
------------------------------------------------------------------*/
.home-news-contents{
    display: none;
}
.home-news-contents.active{
    display: block;
}

/*------------------------------------------------------------------
  home-seminar
------------------------------------------------------------------*/

/*  home-seminar-head
------------------------------------------------------------------*/
.home-seminar-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    margin-bottom: 40px;
}
@media screen and (max-width:991px){
    .home-seminar-head{
        margin-bottom: 30px;
    }
}
@media screen and (max-width:767px){
    .home-seminar-head{
        justify-content: center;
    }
}
/*  home-seminar-btn
------------------------------------------------------------------*/
.home-seminar-btn{
    display: flex;
    align-items: center;
    column-gap: .75em;
    width: fit-content;
    padding: .5em 1.25em;
    background: var(--sub-color);
    border-radius: 2em;
    color: #fff;
    transition: .2s ease-out;
}
.home-seminar-btn::after{
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../images/common/fa-circle-chevron-right.png) no-repeat center / contain;
    filter: brightness(0) invert(1);
    content: "";
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-seminar-btn:hover{
        background: var(--accent-color);
    }
    .home-seminar-btn:hover::after{
        transform: translateX(.5em);
    }
}
@media (hover:none) {
    .home-seminar-btn:active{
        background: var(--accent-color);
    }
    .home-seminar-btn:active::after{
        transform: translateX(.5em);
    }
}
@media screen and (max-width:767px){
    .home-seminar-btn{
        display: none;
    }
}


/*------------------------------------------------------------------
  home-links
------------------------------------------------------------------*/

/*  home-links-list
------------------------------------------------------------------*/
.home-links-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
}
@media screen and (max-width:991px){
    .home-links-list{
        column-gap: 12px;
    }
}
@media screen and (max-width:767px){
    .home-links-list{
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }
}
/*  home-links-item
------------------------------------------------------------------*/
.home-links-item{
    position: relative;
    display: block;
    padding: 40px 20px 30px;
    z-index: 1;
}
.home-links-item::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #fff;
    border: 1px solid #5c6368;
    border-radius: 20px;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
.home-links-item .image{
    height: 100px;
    margin-bottom: 20px;
}
.home-links-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.home-links-item .title{
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}
.home-links-item .view{
    display: flex;
    align-items: center;
    column-gap: .5em;
    width: fit-content;
    padding: .5em 1.75em;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 2em;
    font-size: .875rem;
    color: #fff;
}
.home-links-item .view::after{
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../images/common/fa-circle-chevron-right.png) no-repeat center / contain;
    filter: brightness(0) invert(1);
    content: "";
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-links-item:hover::after{
        transform: scale(.95);
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        box-shadow: 0 0 20px rgba(45, 206, 255, 0.5);
    }
    .home-links-item:hover .view::after{
        transform: translateX(.5em);
    }
}
@media (hover:none) {
    .home-links-item:active::after{
        transform: scale(.95);
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        box-shadow: 0 0 20px rgba(45, 206, 255, 0.5);
    }
    .home-links-item:active .view::after{
        transform: translateX(.5em);
    }
}
@media screen and (max-width:1399px){
    .home-links-item .image{
        height: 90px;
    }
    .home-links-item .title{
        font-size: 1.25rem;
    }
    .home-links-item .view{
        font-size: .8125rem;
    }
}
@media screen and (max-width:991px){
    .home-links-item{
        padding: 30px 12px 20px;
    }
    .home-links-item .image{
        height: 80px;
        margin-bottom: 16px;
    }
    .home-links-item .title{
        margin-bottom: 16px;
        font-size: 1.125rem;
    }
    .home-links-item .view{
        font-size: .75rem;
    }
}
@media screen and (max-width:767px){
    .home-links-item{
        padding: 24px 12px 16px;
    }
    .home-links-item::after{
        border-radius: 10px;
    }
    .home-links-item .image{
        height: 60px;
        margin-bottom: 16px;
    }
    .home-links-item .title{
        margin-bottom: 16px;
        font-size: 1rem;
    }
    .home-links-item .view{
        padding: .25em 1.25em;
    }
}

/*/////////////////////////////////////////////////////////////////
  service.html
/////////////////////////////////////////////////////////////////*/

/*  service-tel
------------------------------------------------------------------*/
.service-tel{
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}
.service-tel .num{
    font-size: 2em;
}
@media screen and (max-width:767px){
    .service-tel{
        font-size: 1rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  senior.html
/////////////////////////////////////////////////////////////////*/

/*  senior-facility-search
------------------------------------------------------------------*/
.senior-facility-search{
    width: 100%;
    margin-bottom: 20px;
}
.senior-facility-search > tbody > tr > th,
.senior-facility-search > tbody > tr > td{
    padding: 1em 0;
    border-bottom: 1px solid #ccc;
    line-height: 1.2;
    vertical-align: middle;
}
.senior-facility-search > tbody > tr > th{
    padding-right: 1em;
    color: var(--primary-color);
    white-space: nowrap;
}
@media screen and (max-width:767px){
    .senior-facility-search > tbody > tr > th,
    .senior-facility-search > tbody > tr > td{
        display: block;
    }
    .senior-facility-search > tbody > tr > th{
        padding: 1em 0 0;
        border-bottom: initial;
    }
}
/*  senior-facility-search-category
------------------------------------------------------------------*/
.senior-facility-search-category{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
@media screen and (max-width:767px){
    .senior-facility-search-category{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 4px;
    }
}
/*  senior-facility-search-category-btn
------------------------------------------------------------------*/
.senior-facility-search-category-btn{
    display: block;
    padding: .5em 1em;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 2em;
    font-size: .875rem;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease-out;
}
.senior-facility-search-category-btn.active{
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
.senior-facility-search-category-btn input{
    display: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .senior-facility-search-category-btn:hover{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color:#fff;
    }
}
@media (hover:none) {
    .senior-facility-search-category-btn:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color:#fff;
    }
}
@media screen and (max-width:991px){
    .senior-facility-search-category-btn{
        font-size: .75rem;
    }
}
@media screen and (max-width:767px){
    .senior-facility-search-category-btn{
        text-align: center;
    }
}
/*  senior-facility-selected
------------------------------------------------------------------*/
.senior-facility-selected th,
.senior-facility-selected td{
    padding: .5em 0;
    vertical-align: middle;
    line-height: 1.2;
}
.senior-facility-selected th{
    padding-right: 1em;
    white-space: nowrap;
}
@media screen and (max-width:767px){
    .senior-facility-selected th,
    .senior-facility-selected td{
        display: block;
    }
    .senior-facility-selected th{
        padding-bottom: 0;
    }
}
/*  senior-facility-list
------------------------------------------------------------------*/
.senior-facility-list{
    width: 100%;
}
.senior-facility-list > thead > tr > th,
.senior-facility-list > tbody > tr > td{
    padding: .5em;
    line-height: 1.2;
    border: 1px solid #ccc;
    vertical-align: middle;
    text-align: center;
}
.senior-facility-list > thead > tr > th{
    background: var(--primary-light-color);
}
.senior-facility-list a{
    color: var(--primary-color);
    text-decoration: underline;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .senior-facility-list a:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .senior-facility-list a:active{
        color: var(--accent-color);
    }
}
@media screen and (max-width:1399px){
    .senior-facility-list{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .senior-facility-list{
        font-size: .75rem;
    }
}

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

/*  news-category
------------------------------------------------------------------*/
.news-category{
    display: flex;
    align-items: flex-end;
    border-bottom: 3px solid #5c6368;
    margin-bottom: 36px;
}
.news-category > li{
    flex: 1;
}
@media screen and (max-width:991px){
    .news-category{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        align-items: initial;
        border-bottom: initial;
        gap: 8px;
        margin-bottom: 28px;
    }
    .news-category > li{
        flex: initial;
    }
}
@media screen and (max-width:767px){
    .news-category{
        grid-template-columns: repeat(2,1fr);
    }
}
/*  news-category-btn
------------------------------------------------------------------*/
.news-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    padding: 0 .5em;
    background: #efefef;
    border-top: 1px solid #aaaaaa;
    border-left: 1px solid #aaaaaa;
    border-right: 1px solid #aaaaaa;
    border-radius: 8px 8px 0 0;
    font-size: .9125rem;
    color: #555;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.news-category-btn.active{
    height: 3.5em;
    background: var(--primary-color);
    border-color: var(--primary-color);
    pointer-events: none;
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {
    .news-category-btn:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .news-category-btn:active{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
}
@media screen and (max-width:1399px){
    .news-category-btn{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .news-category-btn{
        border: 1px solid #aaaaaa;
        border-radius: 4px;
        font-size: .8125rem;
    }
    .news-category-btn.active{
        height: 3em;
    }
}
@media screen and (max-width:767px){
    .news-category-btn{
        font-size: .75rem;
    }
}

/*  news-list
------------------------------------------------------------------*/
.news-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
@media screen and (max-width:1399px){
    .news-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:1199px){
    .news-list{
        gap: 20px;
    }
}
@media screen and (max-width:991px){
    .news-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .news-list{
        grid-template-columns: 1fr;
    }
}
/*  news-list-card
------------------------------------------------------------------*/
.news-list-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #5c6368;
    border-radius: 10px;
    overflow: hidden;
    transition: .2s ease-out;
}
.news-list-card .image{
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.news-list-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.news-list-card .body{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 16px 12px;
}
.news-list-card .category{
    display: block;
    width: fit-content;
    padding: .25em 1em;
    margin-bottom: 8px;
    background: var(--primary-color);
    border-radius: 4px;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
.news-list-card .title{
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.5;
    transition: .2s ease-out;
}
.news-list-card .text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 16px;
    overflow: hidden;
    font-size: .875rem;
    color: #4d5459;
    line-height: 1.5;
}
.news-list-card .detail{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 8px;
    margin-top: auto;
    font-size: .75rem;
    color: #5c6368;
    line-height: 1;
}
.news-list-card .new{
    display: inline-block;
    margin-right: .75em;
    color: var(--accent-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .news-list-card:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    .news-list-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
}
@media (hover:none) {
    .news-list-card:active{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    .news-list-card:active .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
}
@media screen and (max-width:991px){
    .news-list-card .title{
        margin-bottom: 12px;
    }
    .news-list-card .text{
        margin-bottom: 12px;
        font-size: .8125rem;
    }
}
@media screen and (max-width:575px){
    .news-list-card{
        border-radius: 8px;
    }
}
/*  news-section
------------------------------------------------------------------*/
.news-section{
    padding: 60px 0;
}
@media screen and (max-width:991px){
    .news-section{
        padding: 40px 0;
    }
}

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

/*  news-detail-head
------------------------------------------------------------------*/
.news-detail-head{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.news-detail-head .new{
    font-size: .875rem;
    color: var(--accent-color);
    line-height: 1;
}
.news-detail-head .date{
    font-size: .875rem;
    color: #5c6368;
    line-height: 1;
}
.news-detail-head .category{
    display: inline-block;
    padding: .25em 1em;
    background: var(--primary-color);
    border-radius: 4px;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:575px){
    .news-detail-head{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .news-detail-head .date{
        font-size: .75rem;
    }
    .news-detail-head .category{
        font-size: .75rem;
    }
}
/*  news-detail-slider
------------------------------------------------------------------*/
.news-detail-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.news-detail-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.news-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  news-detail-thumb-slider
------------------------------------------------------------------*/
.news-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.news-detail-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.news-detail-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.news-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.news-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  news-detail-slider-button
------------------------------------------------------------------*/
.news-detail-slider-button-prev,
.news-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.news-detail-slider-button-prev.swiper-button-disabled,
.news-detail-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.news-detail-slider-button-prev{
    left: 4px;
}
.news-detail-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: .75rem;
    height: .75rem;
    background: url(../images/common/fa-angle-left.png) no-repeat center / contain;
    content: "";
}
.news-detail-slider-button-next{
    right: 4px;
}
.news-detail-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: .75rem;
    height: .75rem;
    background: url(../images/common/fa-angle-right.png) no-repeat center / contain;
    content: "";
}
/* ホバー時動作 */
@media (hover:hover) {
    .news-detail-slider-button-prev:hover,
    .news-detail-slider-button-next:hover,
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    .news-detail-slider-button-prev:hover::after,
    .news-detail-slider-button-next:hover::after,
    .news-detail-slider-button-prev:hover::after,
    .news-detail-slider-button-next:hover::after{
        filter: brightness(0) invert(1);
    }
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}

/*/////////////////////////////////////////////////////////////////
  seminar.html
/////////////////////////////////////////////////////////////////*/

/*  seminar-category
------------------------------------------------------------------*/
.seminar-category{
    display: flex;
    align-items: flex-end;
    border-bottom: 3px solid #5c6368;
    margin-bottom: 36px;
}
.seminar-category > li{
    flex: 1;
}
@media screen and (max-width:991px){
    .seminar-category{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        align-items: initial;
        border-bottom: initial;
        gap: 8px;
        margin-bottom: 28px;
    }
    .seminar-category > li{
        flex: initial;
    }
}
@media screen and (max-width:767px){
    .seminar-category{
        grid-template-columns: repeat(2,1fr);
    }
}
/*  seminar-category-btn
------------------------------------------------------------------*/
.seminar-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    padding: 0 .5em;
    background: #efefef;
    border-top: 1px solid #aaaaaa;
    border-left: 1px solid #aaaaaa;
    border-right: 1px solid #aaaaaa;
    border-radius: 8px 8px 0 0;
    font-size: .9125rem;
    color: #555;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.seminar-category-btn.active{
    height: 3.5em;
    background: var(--sub-color);
    border-color: var(--sub-color);
    pointer-events: none;
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {
    .seminar-category-btn:hover{
        background: var(--sub-light-color);
        border-color: var(--sub-color);
        color: var(--sub-color);
    }
}
@media (hover:none) {
    .seminar-category-btn:active{
        background: var(--sub-light-color);
        border-color: var(--sub-color);
        color: var(--sub-color);
    }
}
@media screen and (max-width:1399px){
    .seminar-category-btn{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .seminar-category-btn{
        border: 1px solid #aaaaaa;
        border-radius: 4px;
        font-size: .8125rem;
    }
    .seminar-category-btn.active{
        height: 3em;
    }
}
@media screen and (max-width:767px){
    .seminar-category-btn{
        font-size: .75rem;
    }
}
/*  seminar-list
------------------------------------------------------------------*/
.seminar-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
@media screen and (max-width:1399px){
    .seminar-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:1199px){
    .seminar-list{
        gap: 20px;
    }
}
@media screen and (max-width:991px){
    .seminar-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .seminar-list{
        grid-template-columns: 1fr;
    }
}
/*  seminar-list-card
------------------------------------------------------------------*/
.seminar-list-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #5c6368;
    border-radius: 10px;
    overflow: hidden;
    transition: .2s ease-out;
}
.seminar-list-card .image{
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.seminar-list-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.seminar-list-card .body{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 16px 12px;
}
.seminar-list-card .category{
    display: block;
    width: fit-content;
    padding: .25em 1em;
    margin-bottom: 8px;
    background: var(--sub-color);
    border-radius: 4px;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
.seminar-list-card .title{
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.5;
    transition: .2s ease-out;
}
.seminar-list-card .fin{
    display: inline-block;
    color: var(--accent-color);
    margin-right: .5em;
}
.seminar-list-card .text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: 16px;
    overflow: hidden;
    font-size: .875rem;
    color: #4d5459;
    line-height: 1.5;
}
.seminar-list-card .detail{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 8px;
    margin-top: auto;
    font-size: .75rem;
    color: #5c6368;
    line-height: 1;
}
.seminar-list-card .new{
    display: inline-block;
    margin-right: .75em;
    color: var(--accent-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .seminar-list-card:hover{
        background: var(--sub-light-color);
        border-color: var(--sub-color);
    }
    .seminar-list-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
}
@media (hover:none) {
    .seminar-list-card:active{
        background: var(--sub-light-color);
        border-color: var(--sub-color);
    }
    .seminar-list-card:active .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
}
@media screen and (max-width:991px){
    .seminar-list-card .title{
        margin-bottom: 12px;
    }
    .seminar-list-card .text{
        margin-bottom: 12px;
        font-size: .8125rem;
    }
}
@media screen and (max-width:575px){
    .seminar-list-card{
        border-radius: 8px;
    }
}
/*  seminar-detail-head
------------------------------------------------------------------*/
.seminar-detail-head{
    display: flex;
    column-gap: 12px;
    margin-bottom: 12px;
}
.seminar-detail-head .new{
    font-size: .875rem;
    color: var(--accent-color);
    line-height: 1;
}
.seminar-detail-head .date{
    font-size: .875rem;
    color: #5c6368;
    line-height: 1;
}
.seminar-detail-head .category{
    display: inline-block;
    padding: .25em 1em;
    background: var(--sub-color);
    border-radius: 4px;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:575px){
    .seminar-detail-head{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .seminar-detail-head .date{
        font-size: .75rem;
    }
    .seminar-detail-head .category{
        font-size: .75rem;
    }
}
/*  seminar-section
------------------------------------------------------------------*/
.seminar-section{
    padding: 80px 0;
}
@media screen and (max-width:991px){
    .seminar-section{
        padding: 40px 0;
    }
}
/*  seminar-detail-wrapper
------------------------------------------------------------------*/
.seminar-detail-wrapper{
    display: flex;
    align-items: flex-start;
    column-gap: 60px;
}
@media screen and (max-width:1399px){
    .seminar-detail-wrapper{
        column-gap: 40px;
    }
}
@media screen and (max-width:991px){
    .seminar-detail-wrapper{
        flex-direction: column-reverse;
        align-items: initial;
        row-gap: 20px;
    }
}
/*  seminar-detail-article
------------------------------------------------------------------*/
.seminar-detail-article{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
}
/*  seminar-detail-teacher
------------------------------------------------------------------*/
.seminar-detail-teacher{
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 20px;
    margin-bottom: 20px;
}
.seminar-detail-teacher:last-of-type{
    margin-bottom: 0;
}
.seminar-detail-teacher .image{
    aspect-ratio: 1 / 1;
}
.seminar-detail-teacher .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1199px){
    .seminar-detail-teacher{
        grid-template-columns: 160px 1fr;
    }
}
@media screen and (max-width:767px){
    .seminar-detail-teacher{
        grid-template-columns: 100px 1fr;
    }
}
@media screen and (max-width:575px){
    .seminar-detail-teacher{
        grid-template-columns: 60px 1fr;
        column-gap: 12px;
    }
}
/*  seminar-detail-chirashi-list
------------------------------------------------------------------*/
.seminar-detail-chirashi-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
@media screen and (max-width:1399px){
    .seminar-detail-chirashi-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .seminar-detail-chirashi-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .seminar-detail-chirashi-list{
        column-gap: 8px;
        row-gap: 20px;
    }
}
/*  seminar-detail-chirashi-item
------------------------------------------------------------------*/
.seminar-detail-chirashi-item .image{
    aspect-ratio: 1 / 1.414;
    border: 1px solid #ccc;
}
.seminar-detail-chirashi-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.seminar-detail-chirashi-item .file{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5em;
    padding: 1em;
    margin-top: 10px;
    background: var(--primary-color);
    border-radius: 3em;
    font-size: .875rem;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}
.seminar-detail-chirashi-item .file::before{
    content: url(../img/etc.gif);
}
.seminar-detail-chirashi-item .file.pdf::before{
    content: url(../img/pdf.gif);
}
.seminar-detail-chirashi-item .file.word::before{
    content: url(../img/word.gif);
}
.seminar-detail-chirashi-item .file.excel::before{
    content: url(../img/excel.gif);
}
@media screen and (max-width:1399px){
    .seminar-detail-chirashi-item .file{
        font-size: .75rem;
    }
}
/*  seminar-detail-aside
------------------------------------------------------------------*/
.seminar-detail-aside{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    width: 300px;
    flex-shrink: 0;
}
@media screen and (max-width:1399px){
    .seminar-detail-aside{
        width: 280px;
    }
}
@media screen and (max-width:1199px){
    .seminar-detail-aside{
        width: 240px;
    }
}
@media screen and (max-width:991px){
    .seminar-detail-aside{
        grid-template-columns: repeat(2,1fr);
        gap: 16px;
        width: 100%;
    }
}
@media screen and (max-width:767px){
    .seminar-detail-aside{
        gap: 8px;
    }
}
/*  seminar-detail-info
------------------------------------------------------------------*/
.seminar-detail-info{
    border: 1px solid #ccc;
}
.seminar-detail-info .title{
    padding: .75em .5em;
    background: var(--primary-light-color);
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.seminar-detail-info .text{
    padding: .75em .5em;
    font-size: .875rem;
    color: #5c6368;
    line-height: 1.4;
    text-align: center;
}
@media screen and (max-width:991px){
    .seminar-detail-info .text{
        font-size: .75rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  job-foreign.html
/////////////////////////////////////////////////////////////////*/

/*  job-foreign-slider
------------------------------------------------------------------*/
.job-foreign-slider{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.job-foreign-slider .swiper-slide{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.job-foreign-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  job-foreign-slider-button
------------------------------------------------------------------*/
.job-foreign-slider-button-prev,
.job-foreign-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.job-foreign-slider-button-prev.swiper-button-disabled,
.job-foreign-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.job-foreign-slider-button-prev{
    left: 4px;
}
.job-foreign-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: .75rem;
    height: .75rem;
    background: url(../images/common/fa-angle-left.png) no-repeat center / contain;
    content: "";
}
.job-foreign-slider-button-next{
    right: 4px;
}
.job-foreign-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: .75rem;
    height: .75rem;
    background: url(../images/common/fa-angle-right.png) no-repeat center / contain;
    content: "";
}
/* ホバー時動作 */
@media (hover:hover) {
    .job-foreign-slider-button-prev:hover,
    .job-foreign-slider-button-next:hover,
    .job-foreign-slider-button-prev:active,
    .job-foreign-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
    .job-foreign-slider-button-prev:hover::after,
    .job-foreign-slider-button-next:hover::after,
    .job-foreign-slider-button-prev:hover::after,
    .job-foreign-slider-button-next:hover::after{
        filter: brightness(0) invert(1);
    }
    .job-foreign-slider-button-prev:active,
    .job-foreign-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}


/*/////////////////////////////////////////////////////////////////
  job-form.html
/////////////////////////////////////////////////////////////////*/

/*  form-container
------------------------------------------------------------------*/
.form-container{
    max-width: 1120px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){ 
    .form-container{
        padding: 0 6vw;
    }
}
@media print{
    .form-container{
        padding: 0 15px !important;
    }
}
/*  form-note
------------------------------------------------------------------*/
.form-note{
    padding: .5em;
    background: var(--primary-light-color);
    margin-bottom: 10px;
    line-height: 1.2;
}


/*/////////////////////////////////////////////////////////////////
  corporation.html
/////////////////////////////////////////////////////////////////*/

/*  corporation-map
------------------------------------------------------------------*/
.corporation-map{
    height: 300px;
    margin-bottom: 30px;
}
.corporation-map iframe{
    width: 100%;
    height: 100%;
}


/*/////////////////////////////////////////////////////////////////
  recruit.html
/////////////////////////////////////////////////////////////////*/

/*  recruit-welfare-list
------------------------------------------------------------------*/
.recruit-welfare-list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}
@media screen and (max-width:1399px){
    .recruit-welfare-list{
        grid-template-columns: repeat(4,1fr);
    }
}
@media screen and (max-width:1199px){
    .recruit-welfare-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .recruit-welfare-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .recruit-welfare-list{
        grid-template-columns: 1fr;
        row-gap: 8px;
    }
}
/*  recruit-welfare-item
------------------------------------------------------------------*/
.recruit-welfare-item{
    height: 100%;
    padding: 30px 15px 20px;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 10px;
    text-align: center;
}
.recruit-welfare-item .image{
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
}
.recruit-welfare-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.recruit-welfare-item .text{
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:575px){
    .recruit-welfare-item{
        display: flex;
        align-items: center;
        column-gap: 10px;
        padding: 10px;
    }
    .recruit-welfare-item .image{
        width: 32px;
        height: 32px;
        margin: initial;
    }
    .recruit-welfare-item .text{
        font-size: 1rem;
        text-align: left;
    }
}


/*/////////////////////////////////////////////////////////////////
  member.html
/////////////////////////////////////////////////////////////////*/

/*  member-category
------------------------------------------------------------------*/
.member-category{
    display: flex;
    align-items: flex-end;
    border-bottom: 3px solid #5c6368;
    margin-bottom: 36px;
}
.member-category > li{
    flex: 1;
}
@media screen and (max-width:991px){
    .member-category{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        align-items: initial;
        border-bottom: initial;
        gap: 8px;
        margin-bottom: 28px;
    }
    .member-category > li{
        flex: initial;
    }
}
@media screen and (max-width:767px){
    .member-category{
        grid-template-columns: repeat(2,1fr);
    }
}
/*  member-category-btn
------------------------------------------------------------------*/
.member-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    padding: 0 .5em;
    background: #efefef;
    border-top: 1px solid #aaaaaa;
    border-left: 1px solid #aaaaaa;
    border-right: 1px solid #aaaaaa;
    border-radius: 8px 8px 0 0;
    font-size: .9125rem;
    color: #555;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.member-category-btn.active{
    height: 3.5em;
    background: #a8972a;
    border-color: #a8972a;
    pointer-events: none;
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {
    .member-category-btn:hover{
        background: #f0ebd8;
        border-color: #a8972a;
        color: #a8972a;
    }
}
@media (hover:none) {
    .member-category-btn:active{
        background: #f0ebd8;
        border-color: #a8972a;
        color: #a8972a;
    }
}
@media screen and (max-width:1399px){
    .member-category-btn{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .member-category-btn{
        border: 1px solid #aaaaaa;
        border-radius: 4px;
        font-size: .8125rem;
    }
    .member-category-btn.active{
        height: 3em;
    }
}
@media screen and (max-width:767px){
    .member-category-btn{
        font-size: .75rem;
    }
}

/*  member-list
------------------------------------------------------------------*/
.member-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
@media screen and (max-width:1399px){
    .member-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:1199px){
    .member-list{
        gap: 20px;
    }
}
@media screen and (max-width:991px){
    .member-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .member-list{
        grid-template-columns: 1fr;
    }
}
/*  member-list-card
------------------------------------------------------------------*/
.member-list-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid #5c6368;
    border-radius: 10px;
    overflow: hidden;
    transition: .2s ease-out;
}
.member-list-card .image{
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.member-list-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.member-list-card .body{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 16px 12px;
}
.member-list-card .category{
    display: block;
    width: fit-content;
    padding: .25em 1em;
    margin-bottom: 8px;
    background: #a8972a;
    border-radius: 4px;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
.member-list-card .title{
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.5;
    transition: .2s ease-out;
}
.member-list-card .detail{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 8px;
    margin-top: auto;
    font-size: .75rem;
    color: #5c6368;
    line-height: 1;
}
.member-list-card .new{
    display: inline-block;
    margin-right: .75em;
    color: var(--accent-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .member-list-card:hover{
        background: #f0ebd8;
        border-color: #a8972a;
    }
    .member-list-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
}
@media (hover:none) {
    .member-list-card:active{
        background: #f0ebd8;
        border-color: #a8972a;
    }
    .member-list-card:active .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
}
@media screen and (max-width:991px){
    .member-list-card .title{
        margin-bottom: 12px;
    }
}
@media screen and (max-width:575px){
    .member-list-card{
        border-radius: 8px;
    }
}

/*  member-section
------------------------------------------------------------------*/
.member-section{
    padding: 60px 0;
}
@media screen and (max-width:991px){
    .member-section{
        padding: 40px 0;
    }
}

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

/*  member-detail-head
------------------------------------------------------------------*/
.member-detail-head{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.member-detail-head .new{
    font-size: .875rem;
    color: var(--accent-color);
    line-height: 1;
}
.member-detail-head .date{
    font-size: .875rem;
    color: #5c6368;
    line-height: 1;
}
.member-detail-head .category{
    display: inline-block;
    padding: .25em 1em;
    background: #a8972a;
    border-radius: 4px;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
@media screen and (max-width:575px){
    .member-detail-head{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .member-detail-head .date{
        font-size: .75rem;
    }
    .member-detail-head .category{
        font-size: .75rem;
    }
}
/*  member-detail-slider
------------------------------------------------------------------*/
.member-detail-slider{
    position: relative;
    margin-bottom: 10px;
    z-index: 1;
}
.member-detail-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.member-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  member-detail-thumb-slider
------------------------------------------------------------------*/
.member-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.member-detail-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.member-detail-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.member-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.member-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  member-detail-slider-button
------------------------------------------------------------------*/
.member-detail-slider-button-prev,
.member-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #a8972a;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #a8972a;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.member-detail-slider-button-prev.swiper-button-disabled,
.member-detail-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.member-detail-slider-button-prev{
    left: 4px;
}
.member-detail-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: .75rem;
    height: .75rem;
    background: url(../images/common/fa-angle-left.png) no-repeat center / contain;
    filter: brightness(0) saturate(100%) invert(62%) sepia(11%) saturate(2548%) hue-rotate(14deg) brightness(92%) contrast(86%);
    content: "";
}
.member-detail-slider-button-next{
    right: 4px;
}
.member-detail-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: .75rem;
    height: .75rem;
    background: url(../images/common/fa-angle-right.png) no-repeat center / contain;
    filter: brightness(0) saturate(100%) invert(62%) sepia(11%) saturate(2548%) hue-rotate(14deg) brightness(92%) contrast(86%);
    content: "";
}
/* ホバー時動作 */
@media (hover:hover) {
    .member-detail-slider-button-prev:hover,
    .member-detail-slider-button-next:hover,
    .member-detail-slider-button-prev:active,
    .member-detail-slider-button-next:active{
        background: #a8972a;
        border-color: #a8972a;
    }
    .member-detail-slider-button-prev:hover::after,
    .member-detail-slider-button-next:hover::after,
    .member-detail-slider-button-prev:hover::after,
    .member-detail-slider-button-next:hover::after{
        filter: brightness(0) invert(1);
    }
    .member-detail-slider-button-prev:active,
    .member-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}