@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-bottom: 54px;
    overflow: hidden;
    z-index: 2;
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    width: 90%;
    max-width: 1552px;
    margin-left: auto;
    z-index: 1;
}
.home-hero-slider .swiper-slide{
    position: relative;
    clip-path: url(#homeHeroImageClip);
    background: #fff;
    z-index: 1;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 50%);
    content: "";
    z-index: 1;
}
@media screen and (max-width:767px){
    .home-hero-slider{
        width: 83%;
    }
    .home-hero-slider .swiper-slide{
        clip-path: url(#homeHeroImageClipSp);
    }
    .home-hero-slider .swiper-slide::after{
        background: linear-gradient(0deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,0) 60%);
    }
}
/*  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;
    bottom: 30px;
    left: 3vw;
    width: 45%;
    max-width: 745px;
    z-index: 2;
}
@media screen and (max-width:767px){
    .home-hero-title{
        width: 80%;
    }
}
/*  home-hero-treat
------------------------------------------------------------------*/
.home-hero-treat{
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    max-width: 520px;
    z-index: -1;
}
/*  home-hero-scroll
------------------------------------------------------------------*/
.home-hero-scroll{
    position: absolute;
    bottom: 0;
    right: 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    padding: 20px 12px 0 12px;
    background: var(--primary-color);
    line-height: 1;
    z-index: 1;
}
.home-hero-scroll .text{
    font-family: var(--en-font);
    font-size: 12px;
    color: #fff;
    writing-mode: vertical-lr;
}
.home-hero-scroll .line{
    position: relative;
    width: 1px;
    height: 200px;
    background: #fff;
    z-index: 1;
}
.home-hero-scroll .line .point{
    position: absolute;
    top: 0;
    left: -4px;
    width: 9px;
    height: 9px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    animation: scrollPoint 3s ease-out infinite;
}
.home-hero-scroll .line .point::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    content: "";
    opacity: 0.5;
    animation: scrollPointEffect 1s ease-out infinite;
}
@keyframes scrollPoint {
    0%{
        top: 0;
        opacity: 0;
    }
    5%{
        opacity: 1;
    }
    60%{
        top: 100%;
        opacity: 1;
    }
    80%{
        top: 100%;
        opacity: 0;
    }
    100%{
        top: 100%;
        opacity: 0;
    }
}
@keyframes scrollPointEffect {
    from{
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    to{
        opacity: 0;
        transform:  translate(-50%, -50%) scale(8);
    }
}
@media screen and (max-width:991px){
    .home-hero-scroll .line{
        height: 150px;
    }
}
@media screen and (max-width:575px){
    .home-hero-scroll{
        padding: 10px 6px 0;
    }
    .home-hero-scroll .line{
        height: 100px;
    }
}
@media print {
    .home-hero-scroll{
        bottom: 30px;
        right: 30px;
    }
}


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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding-top: min(11.66vw,224px);
    padding-bottom: min(7.8125vw,150px);
    margin-top: -72px;
    overflow: hidden;
    z-index: 1;
}
.home-about::before{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url(../images/home-about-bg.jpg) no-repeat top center / contain;
    content: "";
    z-index: -2;
}
.home-about::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    content: "";
    transition: .6s ease-out .2s;
    z-index: -1;
}
.home-about.active::after{
    width: 0;
}
@media screen and (max-width:1199px){
    .home-about::before{
        background-size: 1200px;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding-top: 120px;
        padding-bottom: 0;
    }
}
/*  home-about-container
------------------------------------------------------------------*/
.home-about-container{
    padding: 0 8.3vw;
}
@media screen and (max-width:1199px){
    .home-about-container{
        padding: 0 6vw;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    position: relative;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-about-detail{
        width: 45%;
    }
}
@media screen and (max-width:767px){
    .home-about-detail{
        width: 100%;
        margin-bottom: 20px;
    }
}
/*  home-about-entitle-large
------------------------------------------------------------------*/
.home-about-entitle-large{
    position: relative;
    margin-left: max(-6.25vw,-120px);
    font-family: var(--en-font);
    font-size: min(14.0625vw,270px);
    font-weight: bold;
    color: #c1c1c1;
    white-space: nowrap;
    line-height: 1;
    z-index: 1;
}
@media screen and (max-width:767px){
    .home-about-entitle-large{
        margin-left:initial;
        font-size: 20vw;
        text-align: center;
    }
}
/*  home-about-entitle-small
------------------------------------------------------------------*/
.home-about-entitle-small{
    position: relative;
    margin-top: -.6em;
    margin-left: -.5em;
    margin-bottom: .4em;
    font-family: var(--en-font);
    font-size: min(6.25vw,120px);
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
    line-height: 1;
    z-index: 2;
}
@media screen and (max-width:767px){
    .home-about-entitle-small{
        margin-left:initial;
        font-size: 8vw;
        text-align: center;
    }
}
/*  home-about-title
------------------------------------------------------------------*/
.home-about-title{
    margin-bottom: 1.5em;
    font-size: clamp(2rem,2.1875vw,2.625rem);
    font-weight: bold;
    white-space: nowrap;
    line-height: 1.5;
}
@media screen and (max-width:1199px){
    .home-about-title{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:991px){
    .home-about-title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:767px){
    .home-about-title{
        font-size: 1.375rem;
        text-align: center;
        white-space: initial;
    }
}
@media screen and (max-width:374px){
    .home-about-title{
        font-size: 1.25rem;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    font-size: clamp(1rem,1.0416vw,1.25rem);
    line-height: 2.5;
}
@media screen and (max-width:991px){
    .home-about-text{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-about-text{
        line-height: 2;
    }
}
/*  home-about-images
------------------------------------------------------------------*/
.home-about-images{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    max-width: 960px;
    z-index: 1;
}
.home-about-images .image01{
    position: relative;
    width: 82%;
    margin: 0 auto;
    z-index: 3;
}
.home-about-images .image02{
    position: absolute;
    top: 21.5%;
    left: 0;
    width: 92.4%;
    z-index: 2;
}
.home-about-images .shape{
    position: absolute;
    top: 6.9%;
    right: 0;
    width: 39.3%;
    aspect-ratio: 9 / 8;
    background: var(--primary-color);
    z-index: 1;
}
@media screen and (max-width:767px){
    .home-about-images{
        position: relative;
        width: 100%;
    }
}


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

/*  home-service
------------------------------------------------------------------*/
.home-service{
    position: relative;
    padding: 150px 0 120px;
    background: #1f1f1f;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-service{
        padding: 130px 0 100px;
    }
}
@media screen and (max-width:991px){
    .home-service{
        padding: 120px 0 80px;
    }
}
@media screen and (max-width:767px){
    .home-service{
        padding: 105px 0 60px;
    }
}
/*  home-service-treat
------------------------------------------------------------------*/
.home-service-treat{
    position: absolute;
    top: 80px;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    line-height: 1;
    z-index: -1;
}
.home-service-treat .one,
.home-service-treat .two{
    display: block;
    flex-shrink: 0;
    padding-right: 40px;
}
.home-service-treat .one{
    animation: service-treat1 60s -30s linear infinite;
}
.home-service-treat .two{
    animation: service-treat2 60s linear infinite;
}
@keyframes service-treat1 {
    from{ transform: translateX(100%);}
    to{ transform: translateX(-100%);}
}
@keyframes service-treat2 {
    from{ transform: translateX(0%);}
    to{ transform: translateX(-200%);}
}
@media screen and (max-width:1399px){
    .home-service-treat .one,
    .home-service-treat .two{
        width: 1600px;
    }
}
@media screen and (max-width:991px){
    .home-service-treat .one,
    .home-service-treat .two{
        width: 1300px;
    }
}
@media screen and (max-width:767px){
    .home-service-treat .one,
    .home-service-treat .two{
        width: 1000px;
    }
}
/*  home-service-title
------------------------------------------------------------------*/
.home-service-title{
    margin-bottom: 160px;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-service-title{
        margin-bottom: 120px;
        font-size: 2.5rem;
    }
}
@media screen and (max-width:991px){
    .home-service-title{
        margin-bottom: 90px;
        font-size: 2rem;
    }
}
/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: min(5.7vw,110px);
    padding-bottom: min(5.2vw,100px);
}
.home-service-list::after{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) skewY(-3deg);
    transform-origin: bottom left;
    width: 100vw;
    height: 45%;
    background: var(--primary-color);
    content: "";
    z-index: -1;
}
.home-service-list > li:nth-of-type(1){
    margin-top: 60px;
}
.home-service-list > li:nth-of-type(2){
    margin-top: 30px;
}
@media screen and (max-width:991px){
    .home-service-list{
        column-gap: 30px;
    }
    .home-service-list::after{
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) skewY(-3deg);
        transform-origin: bottom left;
        width: 100vw;
        height: 45%;
        background: var(--primary-color);
        content: "";
        z-index: -1;
    }
}
@media screen and (max-width:767px){
    .home-service-list{
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
    .home-service-list::after{
        display: none;
    }
    .home-service-list > li:nth-of-type(1),
    .home-service-list > li:nth-of-type(2){
        margin-top: 0;
    }
}
/*  home-service-list-item
------------------------------------------------------------------*/
.home-service-list-item{
    position: relative;
    display: block;
    z-index: 1;
}
.home-service-list-item .image{
    position: relative;
    overflow: hidden;
    aspect-ratio: 23 / 32;
    z-index: 1;
}
.home-service-list-item .image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
    content: "";
    z-index: 1;
}
.home-service-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-service-list-item .title{
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 2;
}
.home-service-list-item .title .en{
    font-family: var(--en-font);
    font-size: min(4.25vw,4.5rem);
    font-weight: bold;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
.home-service-list-item .title .jp{
    font-size: min(1.75vw,1.5rem);
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    transition: .2s ease-out;
}
.home-service-list-item .view{
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    column-gap: 1em;
    font-family: var(--en-font);
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    transition: .2s ease-out;
    z-index: 2;
}
.home-service-list-item .view > .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    aspect-ratio: 1 / 1;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {    
    .home-service-list-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-service-list-item:hover .view > .arrow{
        transform: scale(.9);
        background: var(--accent-color);
        border-color: var(--accent-color);
    }
}
@media screen and (max-width:1399px){
    .home-service-list-item .view{
        font-size: 1rem;
    }
    .home-service-list-item .view > .arrow{
        width: 7vw;
        font-size: 14px;
    }
}
@media screen and (max-width:991px){
    .home-service-list-item .title{
        top: -10px;
        left: -10px;
    }
    .home-service-list-item .title .en{
        font-size: 2.25rem;
    }
    .home-service-list-item .title .jp{
        font-size: 1rem;
    }
    .home-service-list-item .view{
        bottom: -10px;
        right: -10px;
        font-size: .875rem;
    }
    .home-service-list-item .view > .arrow{
        width: 60px;
        font-size: 12px;
    }
}
@media screen and (max-width:767px){
    .home-service-list-item .image{
        aspect-ratio: 8 / 3;
    }
    .home-service-list-item .title .en{
        font-size: 2rem;
    }
    .home-service-list-item .title .jp{
        font-size: .875rem;
    }
    .home-service-list-item .view > .arrow{
        width: 48px;
    }
}

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

/*  home-news
------------------------------------------------------------------*/
.home-news{
    padding: 120px 0 100px;
    overflow: hidden;
}
@media screen and (max-width:991px){
    .home-news{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-news{
        padding: 60px 0;
    }
}
/*  home-news-wrapper
------------------------------------------------------------------*/
.home-news-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .home-news-wrapper{
        flex-direction: column;
    }
}
/*  home-news-detail
------------------------------------------------------------------*/
.home-news-detail{
    flex-shrink: 0;
}
/*  home-news-contents
------------------------------------------------------------------*/
.home-news-contents{
    width: 100%;
    max-width: 1200px;
}

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

/*  home-links
------------------------------------------------------------------*/
.home-links{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
@media screen and (max-width:575px){
    .home-links{
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}
/*  home-links-item
------------------------------------------------------------------*/
.home-links-item{
    position: relative;
    display: block;
    z-index: 1;
}
.home-links-item .image{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.home-links-item .image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    content: "";
    z-index: 1;
}
.home-links-item .image img{
    width: 100%;
    height: auto;
    transition: .2s ease-out;
}
.home-links-item .detail{
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    width: 100%;
    padding-bottom: clamp(24px,2.08vw,40px);
    padding-left: clamp(28px,2.6vw,50px);
    padding-right: clamp(20px,1.5625vw,30px);
    z-index: 1;
}
.home-links-item .title{
    font-size: clamp(2.5rem,3.75vw,4.5rem);
    font-weight: bold;
    color: #fff;
}
.home-links-item .title .en{
    font-family: var(--en-font);
    line-height: 1;
}
.home-links-item .title .jp{
    margin-top: .5em;
    font-size: max(.333em,.875rem);
    line-height: 1.4;
}
.home-links-item .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(60px,5.2vw,100px);
    aspect-ratio: 1 / 1;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: clamp(12px,.9375vw,18px);
    color: #fff;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-links-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-links-item:hover .arrow{
        transform: scale(.9);
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
}

/*------------------------------------------------------------------
  home-instagram
------------------------------------------------------------------*/

/*  home-instagram
------------------------------------------------------------------*/
.home-instagram{
    padding: 150px 0;
    background: url(../images/home-instagram.jpg) no-repeat center / 100% auto;
    overflow: hidden;
}
@media screen and (max-width:1919px){
    .home-instagram{
        background-size: 1920px;
    }
}
@media screen and (max-width:1399px){
    .home-instagram{
        padding: 120px 0;
        background-size: 1500px;
    }
}
@media screen and (max-width:991px){
    .home-instagram{
        padding: 100px 0;
        background-size: 1200px;
    }
}
@media screen and (max-width:767px){
    .home-instagram{
        padding: 80px 0;
        background-size: 1000px;
    }
}

/*------------------------------------------------------------------
  home-bellmare
------------------------------------------------------------------*/

/*  home-bellmare
------------------------------------------------------------------*/
.home-bellmare{
    padding: 60px 0;
    background: url(../images/home-bellmare-bg.jpg) no-repeat center / cover;
    overflow: hidden;
}
@media screen and (max-width:991px){
    .home-bellmare{
        padding: 40px 0;
    }
}
/*  home-bellmare-logo
------------------------------------------------------------------*/
.home-bellmare-logo{
    width: fit-content;
    margin: 0 auto 20px;
    text-align: center;
}
@media screen and (max-width:575px){
    .home-bellmare-logo{
        width: 120px;
    }
}
/*  home-bellmare-text
------------------------------------------------------------------*/
.home-bellmare-text{
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    letter-spacing: .2em;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .home-bellmare-text{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:575px){
    .home-bellmare-text{
        font-size: 1.125rem;
        letter-spacing: .1em;
    }
}


/*/////////////////////////////////////////////////////////////////
  company.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  company-greeting
------------------------------------------------------------------*/

/*  company-greeting-wrapper
------------------------------------------------------------------*/
.company-greeting-wrapper{
    display: flex;
}
@media screen and (max-width:767px){
    .company-greeting-wrapper{
        display: block;
        padding: 0 6vw;
    }
}
/*  company-greeting-image
------------------------------------------------------------------*/
.company-greeting-image{
    position: relative;
    width: 55vw;
    height: 600px;
    overflow: hidden;
    z-index: 1;
}
.company-greeting-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .company-greeting-image{
        height: 540px;
    }
}
@media screen and (max-width:767px){
    .company-greeting-image{
        width: 100%;
        height: auto;
        margin: 0 auto 40px;
    }
}
/*  company-greeting-detail
------------------------------------------------------------------*/
.company-greeting-detail{
    position: relative;
    flex-shrink: 0;
    width: 51vw;
    padding: 60px 60px 0;
    margin-top: 120px;
    margin-left: -6vw;
    background: #fff;
    z-index: 2;
}
@media screen and (max-width:991px){
    .company-greeting-detail{
        padding: 50px 50px 0;
        margin-top: 80px;
    }
}
@media screen and (max-width:767px){
    .company-greeting-detail{
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        padding: 0;
    }
}

/*------------------------------------------------------------------
  company-map
------------------------------------------------------------------*/

/*  company-map
------------------------------------------------------------------*/
.company-map{
    height: 400px;
    margin-bottom: 60px;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .company-map{
        height: auto;
        aspect-ratio: 4 / 3;
        margin-bottom: 40px;
    }
}


/*/////////////////////////////////////////////////////////////////
  electrical.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  electrical-service
------------------------------------------------------------------*/

/*  electrical-service-list
------------------------------------------------------------------*/
.electrical-service-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: clamp(30px,4.6875vw,90px);
    row-gap: clamp(60px,4.6875vw,90px);
    padding-top: clamp(20px,2.083vw,40px);
}
@media screen and (max-width:991px){
    .electrical-service-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .electrical-service-list{
        grid-template-columns: 1fr;
    }
}
/*  electrical-service-card
------------------------------------------------------------------*/
.electrical-service-card{
    position: relative;
    z-index: 1;
}
.electrical-service-card .image{
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}
.electrical-service-card .image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 30%);
    content: "";
    z-index: 1;
}
.electrical-service-card .title{
    position: absolute;
    top: -1.1em;
    left: -.6em;
    font-size: clamp(1.5rem,1.666vw,2rem);
    font-weight: bold;
    color: #fff;
    line-height: 1;
    z-index: 2;
}
.electrical-service-card .title .num{
    display: inline-block;
    margin-right: .2em;
    font-family: var(--en-font);
    font-size: 2em;
    font-style: italic;
    color: var(--primary-color);
    letter-spacing: 0;
}
.electrical-service-card .text{
    color: #fff;
}

/*------------------------------------------------------------------
  electrical-works
------------------------------------------------------------------*/

/*  electrical-works-list
------------------------------------------------------------------*/
.electrical-works-list{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 30px;
}
/*  electrical-works-item
------------------------------------------------------------------*/
.electrical-works-list > li > a{
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
@media screen and (max-width:1399px){
    .electrical-works-list{
        gap: 16px;
    }
}
@media screen and (max-width:1199px){
    .electrical-works-list{
        grid-template-columns: repeat(4,1fr);
    }
}
@media screen and (max-width:767px){
    .electrical-works-list{
        gap: 8px;
    }
}
@media screen and (max-width:575px){
    .electrical-works-list{
        grid-template-columns: repeat(3,1fr);
    }
}
/*  electrical-works-image
------------------------------------------------------------------*/
.electrical-works-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*/////////////////////////////////////////////////////////////////
  renovation.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  renovation-house
------------------------------------------------------------------*/

/*  renovation-house-list
------------------------------------------------------------------*/
.renovation-house-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
@media screen and (max-width:1399px){
    .renovation-house-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .renovation-house-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .renovation-house-list{
        column-gap: 12px;
    }
}
/*  renovation-house-card
------------------------------------------------------------------*/
.renovation-house-card .image{
    margin-bottom: 20px;
}
.renovation-house-card .title{
    margin-bottom: 12px;
    font-size: clamp(1.125rem,1.25vw,1.5rem);
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}
.renovation-house-card .text{
    line-height: 1.8;
}
@media screen and (max-width:575px){
    .renovation-house-card .title{
        font-size: 1rem;
    }
    .renovation-house-card .text{
        font-size: .8125rem;
    }
}

/*------------------------------------------------------------------
  renovation-shop
------------------------------------------------------------------*/

/*  renovation-shop-image
------------------------------------------------------------------*/
.renovation-shop-image{
    height: 400px;
    margin-bottom: 40px;
    overflow: hidden;
}
.renovation-shop-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .renovation-shop-image{
        height: 300px;
    }
}
@media screen and (max-width:767px){
    .renovation-shop-image{
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

/*------------------------------------------------------------------
  renovation-smallreform
------------------------------------------------------------------*/

/*  renovation-smallreform-list
------------------------------------------------------------------*/
.renovation-smallreform-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
@media screen and (max-width:1599px){
    .renovation-smallreform-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .renovation-smallreform-list{
        grid-template-columns: 1fr;
    }
}
/*  renovation-smallreform-item
------------------------------------------------------------------*/
.renovation-smallreform-item{
    padding: 30px;
    border: 1px solid var(--primary-color);
}
@media screen and (max-width:767px){
    .renovation-smallreform-item{
        padding: 24px;
    }
}


/*/////////////////////////////////////////////////////////////////
  food.html
/////////////////////////////////////////////////////////////////*/

/*  food-map
------------------------------------------------------------------*/
.food-map{
    height: 300px;
    margin-bottom: 40px;
    overflow: hidden;
}
.food-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .food-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}


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


/*------------------------------------------------------------------
  recruit-lead
------------------------------------------------------------------*/

/*  recruit-lead
------------------------------------------------------------------*/
.recruit-lead{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 800px;
    padding-top: 180px;
    background: url(../images/recruit-lead-bg.jpg) no-repeat center / 100%;
    z-index: 1;
}
.recruit-lead::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    content: "";
    z-index: -1;
}
.recruit-lead.active::after{
    animation: recruitLeadBg .4s forwards ease-out;
}
@keyframes recruitLeadBg {
    0%{
        width: 100%;
    }
    100%{
        width: 0;
    }
}
@media screen and (max-width:1919px){
    .recruit-lead{
        background-size: 1920px;
    }
}
@media screen and (max-width:991px){
    .recruit-lead{
        height: 600px;
        padding-top: 90px;
        background-size: 1200px;
    }
}
@media screen and (max-width:575px){
    .recruit-lead{
        height: 400px;
        padding-top: 60px;
        background-size: 640px;
    }
}
@media print {
    .recruit-lead::after{
        width: 0;
    }
}
/*  recruit-lead-title
------------------------------------------------------------------*/
.recruit-lead-title{
    opacity: 0;
    filter: blur(100px);
}
.active .recruit-lead-title{
    animation: recruitLeadTitle .8s forwards ease-out;
}
@keyframes recruitLeadTitle {
    0%{
        opacity: 0;
        filter: blur(100px);
    }
    100%{
        opacity: 1;
        filter: blur(0);
    }
}
@media screen and (max-width:991px){
    .recruit-lead-title img{
        width: auto;
        height: 360px;
    }
}
@media screen and (max-width:575px){
    .recruit-lead-title img{
        height: 240px;
    }
}
@media print {
    .recruit-lead-title{
        opacity: 1;
        filter: blur(0);
    }
}


/*------------------------------------------------------------------
  recruit-feature
------------------------------------------------------------------*/

/*  recruit-feature-list
------------------------------------------------------------------*/
.recruit-feature-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: clamp(30px,4.6875vw,90px);
    row-gap: clamp(60px,4.6875vw,90px);
    padding-top: clamp(20px,2.083vw,40px);
}
@media screen and (max-width:1199px){
    .recruit-feature-list{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .recruit-feature-list{
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }
}
/*  recruit-feature-card
------------------------------------------------------------------*/
.recruit-feature-card{
    position: relative;
    z-index: 1;
}
.recruit-feature-card:nth-of-type(1){
    margin-top: 60px;
}
.recruit-feature-card:nth-of-type(2){
    margin-top: 30px;
}
.recruit-feature-card .num{
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(140px,9.375vw,180px);
    aspect-ratio: 1 / 1;
    padding-right: .15em;
    font-family: var(--en-font);
    font-size: clamp(2rem,2.5vw,3rem);
    font-weight: bold;
    font-style: italic;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 1;
    z-index: -1;
}
.recruit-feature-card .num::before{
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    border: 1px dashed #555;
    border-radius: 50%;
    content: "";
    z-index: 1;
    animation: recruitFeatureNum1 60s infinite linear;
}
.recruit-feature-card .num::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed #898989;
    border-radius: 50%;
    content: "";
    z-index: 1;
    animation: recruitFeatureNum2 60s infinite linear;
}
.recruit-feature-card .title{
    position: relative;
    padding-left: 10px;
    font-size: clamp(1.5rem,1.666vw,2rem);
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    z-index: 2;
}
.recruit-feature-card .subtitle{
    position: relative;
    padding-left: 10px;
    font-size: clamp(.9125rem,.9325vw,1.125rem);
    font-weight: bold;
    color: #e0e0e0;
    line-height: 1.5;
    z-index: 2;
}
.recruit-feature-card .image{
    position: relative;
    margin-top: clamp(-40px,-2.08vw,-30px);
    margin-bottom: 30px;
    z-index: 1;
}
.recruit-feature-card .image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 20%);
    content: "";
    z-index: 1;
}
.recruit-feature-card .text{
    color: #fff;
}
@keyframes recruitFeatureNum1 {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}
@keyframes recruitFeatureNum2 {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(-360deg);
    }
}
@media screen and (max-width:1199px){
    .recruit-feature-card .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .recruit-feature-card:nth-of-type(1),
    .recruit-feature-card:nth-of-type(2){
        margin-top: 0;
    }
    .recruit-feature-card .num{
        left: initial;
        right: 0;
        transform: translate(25%, -45%);
        width: clamp(140px,20vw,180px);
        font-size: clamp(2rem,6vw,3rem);
    }
    .recruit-feature-card .title{
        padding: 0;
        margin-left: -10px;
        font-size: clamp(1.25rem,6.5vw,4rem);
    }
    .recruit-feature-card .subtitle{
        padding: 0;
        margin-left: -10px;
        font-size: clamp(1rem,3vw,1.5rem);
    }
    .recruit-feature-card .image{
        margin-top: max(-7vw,-70px);
    }
}

/*------------------------------------------------------------------
  recruit-welfare
------------------------------------------------------------------*/

/*  recruit-welfare-box
------------------------------------------------------------------*/
.recruit-welfare-box{
    padding: 100px;
    background: #efefef;
}
@media screen and (max-width:1399px){
    .recruit-welfare-box{
        padding: 90px 60px 60px;
    }
}
@media print, screen and (max-width:991px){
    .recruit-welfare-box{
        padding: 80px 60px 60px;
    }
}
@media screen and (max-width:767px){
    .recruit-welfare-box{
        padding: 70px 30px 30px;
    }
}
@media screen and (max-width:575px){
    .recruit-welfare-box{
        padding: 50px 20px 20px;
    }
}
/*  recruit-welfare-list
------------------------------------------------------------------*/
.recruit-welfare-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}
@media print, screen and (max-width:1399px){
    .recruit-welfare-list{
        gap: 12px;
    }
}
@media screen and (max-width:1199px){
    .recruit-welfare-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .recruit-welfare-list{
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
/*  recruit-welfare-item
------------------------------------------------------------------*/
.recruit-welfare-item{
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 12px;
    background: #fff;
}
.recruit-welfare-item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
}
.recruit-welfare-item .icon img{
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.recruit-welfare-item .text{
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
}
@media print, screen and (max-width:1399px){
    .recruit-welfare-item .icon{
        width: 52px;
    }
    .recruit-welfare-item .text{
        font-size: 1.0625rem;
        font-weight: bold;
        line-height: 1.5;
    }
}
@media screen and (max-width:767px){
    .recruit-welfare-item .icon{
        width: 48px;
    }
    .recruit-welfare-item .text{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .recruit-welfare-item{
        padding: 8px;
        column-gap: 8px;
    }
    .recruit-welfare-item .icon{
        width: 40px;
    }
    .recruit-welfare-item .text{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  recruit-flow
------------------------------------------------------------------*/

/*  recruit-flow
------------------------------------------------------------------*/
.recruit-flow{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
    margin: 0 auto 60px;
}
@media screen and (max-width:1199px){
    .recruit-flow{
        column-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .recruit-flow{
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}

/*  recruit-flow-item
------------------------------------------------------------------*/
.recruit-flow-item{
    position: relative;
    padding: 50px 30px 40px;
    background: #1f1f1f;
}
.recruit-flow-item::after{
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    content: "";
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent transparent #1f1f1f;
}
.recruit-flow-item:last-of-type:after{
    display: none;
}
.recruit-flow-item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
}
.recruit-flow-item .title{
    margin-bottom: 20px;
    font-size: 1.75rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1;
}
.recruit-flow-item .text{
    color: #fff;
    text-align: center;
    line-height: 1.8;
}
@media screen and (max-width:1399px){
    .recruit-flow-item .text{
        text-align: left;
    }
}
@media screen and (max-width:1199px){
    .recruit-flow-item{
        padding: 40px 24px 30px;
    }
    .recruit-flow-item::after{
        border-width: 16px;
    }
    .recruit-flow-item .icon{
        width: 80px;
        margin-bottom: 16px;
        font-size: 24px;
    }
    .recruit-flow-item .title{
        margin-bottom: 16px;
        font-size: 1.375rem;
    }
    .recruit-flow-item .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .recruit-flow-item::after{
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-color: #1f1f1f transparent transparent transparent;
        border-width: 24px;
    }
}

/*------------------------------------------------------------------
  recruit-contact
------------------------------------------------------------------*/

/*  recruit-contact-list
------------------------------------------------------------------*/
.recruit-contact-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    --contact-box-height: 120px;
}
@media screen and (max-width:991px){
    .recruit-contact-list{
        --contact-box-height: 100px;
    }  
}
@media screen and (max-width:767px){
    .recruit-contact-list{
        grid-template-columns: 1fr;
        row-gap: 10px;
        --contact-box-height: 90px;
    }  
}
/*  recruit-contact-tel
------------------------------------------------------------------*/
.recruit-contact-tel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: var(--contact-box-height);
    padding: 0 16px;
    background: var(--primary-color);
    text-align: center;
    color: #fff;
    --letter-spacing:0;
}
.recruit-contact-tel .num{
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}
.recruit-contact-tel .time{
    font-size: .875rem;
    line-height: 1;
}
@media screen and (max-width:991px){
    .recruit-contact-tel .num{
        margin-bottom: 8px;
        font-size: 1.875rem;
    }
    .recruit-contact-tel .time{
        font-size: .7125rem;
    }    
}
/*  recruit-contact-mail
------------------------------------------------------------------*/
.recruit-contact-mail{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    height: var(--contact-box-height);
    padding: 0 12px;
    background: var(--primary-color);
    transition: .2s ease-out;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    --letter-spacing:0;
}
.recruit-contact-mail i{
    margin-right: 10px;
    font-size: 1.25em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .recruit-contact-mail:hover{
        background: var(--accent-color);
    }
}
@media screen and (max-width:991px){
    .recruit-contact-mail{
        font-size: 1.125rem;
    }
}

/*------------------------------------------------------------------
  partner
------------------------------------------------------------------*/

/*  partner-wrapper
------------------------------------------------------------------*/
.partner-wrapper{
    display: flex;
}
@media screen and (max-width:767px){
    .partner-wrapper{
        display: block;
    }
}
/*  partner-image
------------------------------------------------------------------*/
.partner-image{
    position: relative;
    width: 60vw;
    height: 600px;
    overflow: hidden;
    z-index: 1;
}
.partner-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .partner-image{
        width: 55vw;
        height: 540px;
    }
}
@media screen and (max-width:767px){
    .partner-image{
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}
/*  partner-detail
------------------------------------------------------------------*/
.partner-detail{
    position: relative;
    flex-shrink: 0;
    width: 51vw;
    padding: 80px;
    margin-top: 120px;
    margin-left: -6vw;
    background: #1f1f1f;
    z-index: 2;
}
@media screen and (max-width:1399px){
    .partner-detail{
        padding: 72px;
        margin-top: 100px;
    }
}
@media screen and (max-width:991px){
    .partner-detail{
        padding: 50px;
        margin-top: 80px;
    }
}
@media screen and (max-width:767px){
    .partner-detail{
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        padding: 50px 30px;
    }
}

/*/////////////////////////////////////////////////////////////////
  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;
    background: #efefef;
    text-align: center;
    font-size: .875rem;
    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: 1fr;
    margin-bottom: 40px;
}
/*  news-list-item
------------------------------------------------------------------*/
.news-list-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    --letter-spacing: 0;
    line-height: 1;
    transition: .2s ease-out;
}
.news-list-item .date{
    flex-shrink: 0;
    font-family: var(--en-font);
    color: #555;
}
.news-list-item .category{
    flex-shrink: 0;
    width: 11em;
    padding: .25em .5em;
    border: 1px solid var(--primary-color);
    font-size: .75rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
}
.news-list-item .title{
    display: -webkit-box;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    line-height: 1;
    transition: .2s ease-out;
}
.news-list-item .new{
    display: inline-block;
    margin-right: 1em;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0;
}
.news-list-item .arrow{
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    font-size: 10px;
    color: var(--primary-color);
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .news-list-item:hover::after{
        width: 100%;
    }
    .news-list-item:hover .title{
        color: var(--primary-color);
    }
    .news-list-item:hover .arrow{
        transform: scale(.8);
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:767px){
    .news-list-item{
        flex-wrap: wrap;
        column-gap: 10px;
        row-gap: 8px;
        padding: 16px 0;
        border-bottom: 1px dashed #b5a3a0;
    }
    .news-list-item .date{
        font-size: .75rem;
    }
    .news-list-item .category{
        width: auto;
    }
    .news-list-item .arrow{
        display: none;
    }
}
@media screen and (max-width:575px){
    .news-list-item .title{
        -webkit-line-clamp: 2;
        line-height: 1.4;
    }
}

/*  news-page-top
------------------------------------------------------------------*/
.news-page-top{
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 10px;
    z-index: 1;
}
.news-page-top img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .news-page-top{
        height: 180px;
    }
}
@media screen and (max-width:575px){
    .news-page-top{
        height: 120px;
    }
}
/*  news-detail
------------------------------------------------------------------*/
.news-detail{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.news-detail .date{
    font-family: var(--en-font);
    font-size: .875rem;
    color: #555;
    letter-spacing: 0;
}
.news-detail .category{
    display: inline-block;
    padding: .25em 1em;
    border: 1px solid var(--primary-color);
    font-size: .875rem;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 1;
}
/*  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: #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: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;
    }
}