@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: 20px 30px;
    overflow: hidden;
    z-index: 2;
}
@media screen and (max-width:767px){
    .home-hero{
        padding: 10px 10px;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    z-index: 1;
}
.home-hero-slider::after{
    position: absolute;
    top: -1.2%;
    left: -1%;
    width: 102%;
    height: 103%;
    background: url(../images/home-hero-bg.svg) no-repeat center / 100% 100%;
    content: "";
    z-index: -1;
}
.home-hero-slider .swiper-slide{
    position: relative;
    clip-path: url(#homeHeroImageClip);
    background: #fff;
    z-index: 1;
}
@media screen and (max-width:767px){
    .home-hero-slider{
        max-width: 600px;
    }
    .home-hero-slider .swiper-slide{
        clip-path: url(#homeHeroImageClipSp);
    }
    .home-hero-slider::after{
        top: -2%;
        left: -2%;
        width: 104%;
        height: auto;
        aspect-ratio: 14 / 13;
        background: url(../images/home-hero-bg-sp.svg) no-repeat center / 100% 100%;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: homeHeroImage 1s forwards ease-out;
}
@keyframes homeHeroImage {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    position: absolute;
    width: 55.388%;
    bottom: 8%;
    left: 1.5%;
    z-index: 3;
}
@media screen and (max-width:1199px){
    .home-hero-title{
        width: 70%;
        bottom: 5%;
    }
}
@media screen and (max-width:991px){
    .home-hero-title{
        width: 80%;
        bottom: 1.5%;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        width: 68%;
        bottom: -10px;
        left: 0;
    }
}
/*  home-hero-treat
------------------------------------------------------------------*/
.home-hero-treat01{
    position: absolute;
    top: 12.8%;
    left: -2%;
    width: 12.38%;
    z-index: 2;
}
.home-hero-treat02{
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 18.77%;
    z-index: 2;
}
@media screen and (max-width:767px){
    .home-hero-treat01{
        top: 2%;
        width: 30%;
    }
    .home-hero-treat02{
        bottom: -10px;
        right: 0;
        width: 30%;
        z-index: 2;
    }
}


/*------------------------------------------------------------------
  home-about
------------------------------------------------------------------*/

/*  home-about
------------------------------------------------------------------*/
.home-about{
    padding: 80px 0 150px;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 80px 0 120px;
    }
}
@media screen and (max-width:991px){
    .home-about{
        padding: 60px 0 100px;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 60px 0;
    }
}
/*  home-about-treat
------------------------------------------------------------------*/
.home-about-treat01{
    position: absolute;
    top: 80px;
    left: 8vw;
    z-index: -1;
}
.home-about-treat02{
    position: absolute;
    top: 140px;
    right: 8vw;
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-about-treat01{
        left: 6vw;
        width: 180px;
    }
    .home-about-treat02{
        right: 6vw;
        width: 120px;
    }
}
@media screen and (max-width:991px){
    .home-about-treat01{
        top: 40px;
        left: 3vw;
        width: 140px;
    }
    .home-about-treat02{
        top: 60px;
        right: 3vw;
        width: 100px;
    }
}
@media screen and (max-width:575px){
    .home-about-treat01{
        top: 16px;
        left: 1vw;
        width: 100px;
    }
    .home-about-treat02{
        top: 36px;
        right: 1vw;
        width: 80px;
    }
}
/*  home-about-caption
------------------------------------------------------------------*/
.home-about-caption{
    margin-bottom: .8em;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .home-about-caption{
        font-size: 1.75rem;
    } 
}
@media screen and (max-width:991px){
    .home-about-caption{
        font-size: 1.5rem;
    } 
}
@media screen and (max-width:767px){
    .home-about-caption{
        font-size: 1.125rem;
    } 
}
/*  home-about-title
------------------------------------------------------------------*/
.home-about-title{
    margin-bottom: 1em;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-about-title{
        font-size: 2.5rem;
    } 
}
@media screen and (max-width:991px){
    .home-about-title{
        font-size: 2.25rem;
    } 
}
@media screen and (max-width:767px){
    .home-about-title{
        font-size: 1.875rem;
    } 
}
@media screen and (max-width:575px){
    .home-about-title{
        font-size: 1.5rem;
    } 
}
@media screen and (max-width:374px){
    .home-about-title{
        font-size: 1.375rem;
    } 
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 40px;
    font-size: 1.125rem;
    text-align: center;
}
@media screen and (max-width:991px){
    .home-about-text{
        font-size: 1rem;
    } 
}
@media screen and (max-width:767px){
    .home-about-text{
        font-size: .875rem;
        text-align: left;
    } 
}

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

/*  home-links-list
------------------------------------------------------------------*/
.home-links-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px;
}
@media screen and (max-width:1399px){
    .home-links-list{
        gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-links-list{
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}
/*  home-links-item
------------------------------------------------------------------*/
.home-links-item{
    display: block;
    --thisBaseColor: var(--primary-color);
}
.home-links-item.sub{
    --thisBaseColor: var(--sub-color);
}
.home-links-item .image{
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    z-index: 1;
}
.home-links-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-links-item .body{
    position: relative;
    padding: 0 20px;
    margin-top: -30px;
    z-index: 2;
}
.home-links-item .body::after{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    aspect-ratio: 1 / 1;
    background: var(--thisBaseColor);
    border-radius: 50%;
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    transition: .2s ease-out;
}
.home-links-item .title{
    width: fit-content;
    padding: 10px 22px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--thisBaseColor);
    line-height: 1;
}
.home-links-item .caption{
    width: fit-content;
    padding: 8px 22px;
    border-radius: 4px;
    background: #fff;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-links-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-links-item:hover .body::after{
        transform: translateY(-50%) scale(.9);
        background: var(--accent-color);
    }
}
@media screen and (max-width:1399px){
    .home-links-item .image{
        border-radius: 30px;
    }
    .home-links-item .body::after{
        width: 64px;
        font-size: 14px;
    }
    .home-links-item .title{
        padding: 8px 18px;
        font-size: 1.75rem;
    }
    .home-links-item .caption{
        padding: 6px 18px;
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .home-links-item .image{
        border-radius: 20px;
    }
    .home-links-item .body{
        margin-top: -18px;
        padding: 0 10px;
    }
    .home-links-item .body::after{
        right: 4px;
        width: 52px;
        font-size: 12px;
    }
    .home-links-item .title{
        padding: 8px 12px;
        font-size: 1.375rem;
    }
    .home-links-item .caption{
        padding: 6px 12px;
    }
}
@media screen and (max-width:575px){
    .home-links-item .body{
        padding: 0 4px;
    }
    .home-links-item .body::after{
        width: 48px;
        font-size: 10px;
    }
    .home-links-item .title{
        padding: 6px 8px;
        border-radius: 4px;
        font-size: 1.25rem;
    }
    .home-links-item .caption{
        padding: 4px 8px;
    }
}

/*------------------------------------------------------------------
  home-office
------------------------------------------------------------------*/

/*  home-office-list
------------------------------------------------------------------*/
.home-office-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}
@media screen and (max-width:1399px){
    .home-office-list{
        gap: 20px;
    }
}
@media screen and (max-width:991px){
    .home-office-list{
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-office-list{
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/*  home-office-card
------------------------------------------------------------------*/
.home-office-card{
    background: #fff;
    overflow: hidden;
    border-radius: 20px;
}
.home-office-card .image{
    aspect-ratio: 16 / 9;
}
.home-office-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-office-card .body{
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
}
.home-office-card .title{
    margin-bottom: 12px;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.2;
}
.home-office-card .title small{
    display: block;
    font-size: .7em;
}
.home-office-card .category{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}
.home-office-card .category > li{
    padding: .5em 1em;
    background: var(--primary-color);
    border-radius: 4px;
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
.home-office-card .category > li.sub{
    background: var(--sub-color);
}
.home-office-card .address{
    margin-bottom: 20px;
    font-size: .875rem;
    line-height: 1.5;
}
.home-office-card .tel{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .25em;
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}
.home-office-card .tel i{
    font-size: .75em;
    color: var(--primary-color);
}
.home-office-card .link{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5em;
    padding: 0 2.25em;
    margin-top: auto;
    background: var(--primary-color);
    border-radius: 2em;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    transition: .2s;
    z-index: 1;
}
.home-office-card .link::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    /* 通常 */
    .home-office-card .link:hover{
        background: var(--accent-color);
        color: #fff;
    }
    .home-office-card .link:hover::after{
        right: .3em;
    }
}
@media screen and (max-width:1199px){
    .home-office-card .body{
        padding: 20px;
    }
    .home-office-card .title{
        margin-bottom: 8px;
        font-size: 1.5rem;
    }
    .home-office-card .category{
        margin-bottom: 12px;
    }
    .home-office-card .address{
        margin-bottom: 8px;
        font-size: .875rem;
    }
    .home-office-card .tel{
        margin-bottom: 16px;
    }
    .home-office-card .link{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .home-office-card .title{
        font-size: 1.375rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  hattatsu.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  support-five
------------------------------------------------------------------*/

/*  support-five-list
------------------------------------------------------------------*/
.support-five-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 50px;
    margin: 0 -20px 60px;
}
@media screen and (max-width:1199px){
    .support-five-list{
        row-gap: 40px;
        margin: 0 -15px 60px;
    }
}
@media screen and (max-width:991px){
    .support-five-list{
        justify-content: flex-start;
    }
}
@media screen and (max-width:767px){
    .support-five-list{
        row-gap: 30px;
        margin: 0 -5px 40px;
    }
}
@media screen and (max-width:575px){
    .support-five-list{
        row-gap: 12px;
        margin: 0 0 40px;
    }
}

/*  support-five-card
------------------------------------------------------------------*/
.support-five-card{
    width: 33.3333333%;
    padding: 0 20px;
}
.support-five-card .image{
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}
.support-five-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.support-five-card .title{
    --this-font-size: 1.5rem;
    display: flex;
    align-items: center;
    column-gap: .5em;
    margin-bottom: 12px;
    font-size: var(--this-font-size);
    font-weight: bold;
    line-height: 1.2;
}
.support-five-card .title .num{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: calc(var(--this-font-size) * 2);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--primary-color);
    font-size: max(calc(var(--this-font-size) * .666),.75rem);
    color: #fff;
}
.support-five-card .title .num.red{ background: #ce1b1b;}
.support-five-card .title .num.pink{ background: #e32b87;}
.support-five-card .title .num.yellow{ background: #e39e09;}
.support-five-card .title .num.blue{ background: #1a46ab;}
.support-five-card .text{
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .support-five-card .title{
        --this-font-size: 1.375rem;
    }
}
@media screen and (max-width:1199px){
    .support-five-card{
        padding: 0 15px;
    }
}
@media screen and (max-width:991px){
    .support-five-card{
        width: 50%;
    }
}
@media screen and (max-width:767px){
    .support-five-card{
        padding: 0 5px;
    }
    .support-five-card .title{
        --this-font-size: 1.125rem;
    }
}
@media screen and (max-width:575px){
    .support-five-card{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
        column-gap: 8px;
        width: 100%;
        padding: 0 0 12px;
        border-bottom: 1px dashed #bca299;
    }
    .support-five-card .image{
        flex-shrink: 0;
        width: 72px;
        aspect-ratio: 1 / 1;
        border-radius: 16px;
        margin-bottom: 0;
    }
    .support-five-card .title{
        --this-font-size: 1rem;
        margin-bottom: 4px;
    }
}

/*------------------------------------------------------------------
  support-flow
------------------------------------------------------------------*/

/*  support-flow-table
------------------------------------------------------------------*/
.support-flow-table{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #bca299;
}
.support-flow-table th,
.support-flow-table td{
    padding: 1em;
    line-height: 1.5;
    border-bottom: 1px solid #bca299;
    vertical-align: middle;
    font-size: 1.125rem;
}
.support-flow-table th{
    width: 25%;
    background: #f1d79e;
    text-align: center;
}
.support-flow-table td{
    background: #fff;
}
@media screen and (max-width:991px){
    .support-flow-table th,
    .support-flow-table td{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .support-flow-table th,
    .support-flow-table td{
        font-size: .875rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  howto.html
/////////////////////////////////////////////////////////////////*/

/*  howto-flow-list
------------------------------------------------------------------*/
.howto-flow-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
}
/*  howto-flow-box
------------------------------------------------------------------*/
.howto-flow-box{
    --this-base-color: var(--primary-color);
    position: relative;
    padding: 50px;
    background: #fff;
    border: 2px solid var(--this-base-color);
    border-radius: 30px;
}
.howto-flow-box .num{
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-20%, -20%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--this-base-color);
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    z-index: 1;
}
.howto-flow-box .title{
    display: flex;
    align-items: center;
    column-gap: .5em;
    padding-bottom: .25em;
    margin-bottom: .5em;
    border-bottom: 1px dashed #bca299;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.5;
}
.howto-flow-box .title .icon{
    flex-shrink: 0;
    width: 1.5em;
    height: 1.5em;
    line-height: 1;
}
.howto-flow-box .title .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.howto-flow-box.sub{
    --this-base-color: var(--sub-color);
}
@media screen and (max-width:991px){
    .howto-flow-box{
        padding: 40px;
        border-radius: 20px;
    }
    .howto-flow-box .num{
        width: 60px;
        font-size: 1.125rem;
    }
    .howto-flow-box .title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:575px){
    .howto-flow-box{
        padding: 40px 24px 30px;
    }
    .howto-flow-box .num{
        width: 48px;
        font-size: 1rem;
    }
    .howto-flow-box .title{
        font-size: 1.25rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  office.html
/////////////////////////////////////////////////////////////////*/

/*  office-box
------------------------------------------------------------------*/
.office-box{
    padding: 60px;
    background: #fff;
    border-radius: 30px;
}
@media screen and (max-width:767px){
    .office-box{
        padding: 0;
        background: initial;
        border-radius: initial;
    }
}
/*  office-table
------------------------------------------------------------------*/
.office-table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    margin-bottom: 30px;
}
.office-table > tbody> tr > th,
.office-table > tbody> tr > td{
    padding: 1em;
    font-size: 1.125rem;
    line-height: 1.5;
    vertical-align: middle;
}
.office-table > tbody> tr > th{
    width: 20%;
    background: #f5d48e;
    border-radius: 4px;
    white-space: nowrap;
}
.office-table > tbody> tr > th .icon{
    position: relative;
    top: -.1em;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: .5em;
    line-height: 1;
}
.office-table > tbody> tr > th .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.office-table > tbody> tr > td{
    background: #fbf2dd;
    border-radius: 4px;
}
.office-table > tbody> tr > td > table th{
    padding-right: 1em;
}
@media screen and (max-width:1399px){
    .office-table > tbody> tr > th,
    .office-table > tbody> tr > td{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .office-table > tbody> tr > th,
    .office-table > tbody> tr > td{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .office-table > tbody> tr > td{
        background: #fff;
    }
}
@media screen and (max-width:575px){
    .office-table{
        border-collapse: collapse;
    }
    .office-table > tbody> tr > th,
    .office-table > tbody> tr > td{
        display: block;
    }
    .office-table > tbody> tr > th{
        width: 100%;
        border-radius: 4px 4px 0 0;
    }
    .office-table > tbody> tr > td{
        margin-bottom: 5px;
        border-radius: 0 0 4px 4px;
    }
    .office-subtable > tbody> tr > th{
        padding-bottom: 0;
    }
}
/*  office-subtable
------------------------------------------------------------------*/
.office-subtable > tbody> tr > th,
.office-subtable > tbody> tr > td{
    padding-bottom: .5em;
}
.office-subtable > tbody > tr:last-of-type > th,
.office-subtable > tbody > tr:last-of-type > td{
    padding-bottom: 0;
}
@media screen and (max-width:575px){
    .office-subtable > tbody> tr > th,
    .office-subtable > tbody> tr > td{
        display: block;
    }
}
/*  office-category
------------------------------------------------------------------*/
.office-category{
    display: flex;
    justify-content: center;
    column-gap: 8px;
    margin-bottom: 50px;
}
.office-category li{
    padding: .5em 1em;
    background: var(--primary-color);
    border-radius: 4px;
    color: #fff;
    line-height: 1;
}
.office-category li.sub{
    background: var(--sub-color);
}
@media screen and (max-width:767px){
    .office-category{
        margin-bottom: 30px;
    }
}
@media screen and (max-width:575px){
    .office-category li{
        font-size: .75rem;
    }
}
/*  office-map
------------------------------------------------------------------*/
.office-map{
    height: 300px;
    margin-bottom: 40px;
}
.office-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .office-map{
        height: auto;
        aspect-ratio: 4 / 3;
        margin-bottom: 20px;
    }
}


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

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

/*  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-list
------------------------------------------------------------------*/
.news-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 60px;
    margin-bottom: 60px;
}
@media screen and (max-width:1199px){
    .news-list{
        column-gap: 16px;
        row-gap: 40px;
    }
}
@media screen and (max-width:767px){
    .news-list{
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 40px;
    }
}
@media screen and (max-width:575px){
    .news-list{
        column-gap: 12px;
        row-gap: 30px;
    }
}
/*  news-list-item
------------------------------------------------------------------*/
.news-list-item{
    display: block;
}
.news-list-item .image{
    margin-bottom: 16px;
    aspect-ratio: 3 / 2;
    border-radius: 10px;
    overflow: hidden;
}
.news-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.news-list-item .detail{
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.news-list-item .category{
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
.news-list-item .date{
    font-size: .75rem;
    color: #473d38;
    line-height: 1;
}
.news-list-item .new{
    display: inline-block;
    margin-right: 4px;
    font-weight: bold;
    color: var(--red-color);
}
.news-list-item .title{
    display: -webkit-box;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
}
/* ホバー時動作 */
@media (hover:hover) {
    .news-list-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
}
@media screen and (max-width:991px){
    .news-list-item .category{
        font-size: .75rem;
    }
}

/*  news-page
------------------------------------------------------------------*/
.news-page{
    padding: 40px 0 150px;
}
@media screen and (max-width:1199px){
    .news-page{
        padding: 40px 0 100px;
    }
}
@media screen and (max-width:575px){
    .news-page{
        padding: 20px 0 60px;
    }
}
/*  news-detail
------------------------------------------------------------------*/
.news-detail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.news-detail .new{
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
.news-detail .date{
    font-size: .875rem;
    color: #73574d;
    line-height: 1;
}
.news-detail .category{
    display: inline-block;
    font-size: .875rem;
    color: var(--primary-color);
    letter-spacing: 0;
    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: 16 / 9;
    background: #fff;
}
.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;
    overflow: hidden;
    z-index: 1;
}
.news-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.news-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    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%);
    }
}


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

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px;
    background: #fff;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 5px;
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 5px;
    font-size: 1.5rem;
    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{
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .contact-tel-box .title{
        font-size: 1.5rem;
    }
    .contact-tel-box .num{
        font-size: 1.25rem;
    }
    .contact-tel-box .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box{
        padding: 20px;
    }
    .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;
    }
}