@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

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



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

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

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider .swiper-slide{
    height: calc(100vh - 80px);
    min-height: 700px;
    background: #fff;
    overflow: hidden;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-hero-slider .swiper-slide{
        min-height: 600px;
    }
}
@media screen and (max-width:991px){
    .home-hero-slider .swiper-slide{
        height: auto;
        min-height: initial;
        aspect-ratio: 3 / 2;
    }
}
@media screen and (max-width:767px){
    .home-hero-slider .swiper-slide{
        height: calc(100vh - 52px);
        height: calc(100svh - 52px);
        min-height: 500px;
    }
}
/*  home-hero-slider-image
------------------------------------------------------------------*/
.home-hero-slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    animation: homeHeroSlide 1s ease-out forwards;
}
@keyframes homeHeroSlide {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: 4vw;
    bottom: 10vh;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-hero-detail{
        left: 50px;
        bottom: 50px;
    }
}
@media screen and (max-width:767px){
    .home-hero-detail{
        left: 5vw;
        bottom: 7%;
    }
}
/*  home-hero-title-en
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: 50px;
}
@media screen and (max-width:991px){
    .home-hero-title{
        margin-bottom: 5vw;
        width: 65vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        width: 85vw;
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .home-hero-text{
        font-size: 3vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-text{
        font-size: max(4vw,.875rem);
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 200px 0 150px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 150px 0 100px;
    }
}
@media screen and (max-width:991px){
    .home-about{
        padding: 100px 0 80px;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 80px 0 60px;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    font-size: 1.25rem;
    line-height: 2.5;
}
@media screen and (max-width:1399px){
    .home-about-text{
        font-size: 1.125rem;
        line-height: 2.25;
    }
}
@media screen and (max-width:991px){
    .home-about-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .home-about-text{
        font-size: .875rem;
        line-height: 2;
    }
}
/*  home-about-bg
------------------------------------------------------------------*/
.home-about-bg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -50%);
    width: 1000px;
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-about-bg{
        width: 800px;
    }
}
@media screen and (max-width:991px){
    .home-about-bg{
        width: 640px;
    }
}
@media screen and (max-width:767px){
    .home-about-bg{
        width: 70%;
        max-width: 400px;
        top: 20px;
        left: initial;
        right: -40px;
        transform: initial;
    }
}

/*------------------------------------------------------------------
  home-feature
------------------------------------------------------------------*/

/*  home-feature
------------------------------------------------------------------*/
.home-feature{
    position: relative;
    padding-bottom: 100px;
    overflow: hidden;
    z-index: 1;
}
.home-feature::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: calc(100% - 150px);
    background: var(--light-color);
    border-bottom-right-radius: 100px;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    .home-feature::after{
        width: 95%;
        height: calc(100% - 100px);
        padding-bottom: 80px;
        border-bottom-right-radius: 60px;
    }
}
@media screen and (max-width:991px){
    .home-feature::after{
        height: calc(100% - 60px);
        padding-bottom: 60px;
        border-bottom-right-radius: 40px;
    }
}
@media screen and (max-width:767px){
    .home-feature{
        padding: 60px 0;
        background: var(--light-color);
    }
    .home-feature::after{
        display: none;
    }
}
/*  home-feature-wrapper
------------------------------------------------------------------*/
.home-feature-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 100px;
    max-width: 1780px;
    padding-left: 60px;
    margin-left: auto;
}
@media screen and (max-width:1399px){
    .home-feature-wrapper{
        column-gap: 60px;
    }
}
@media screen and (max-width:991px){
    .home-feature-wrapper{
        column-gap: 30px;
        padding-left: 40px;
    }
}
@media screen and (max-width:767px){
    .home-feature-wrapper{
        flex-direction: column;
        row-gap: 30px;
        padding: 0 6vw;
    }
}
/*  home-feature-detail
------------------------------------------------------------------*/
.home-feature-detail{
    flex-shrink: 0;
    width: 540px;
    padding-top: 50px;
}
@media screen and (max-width:1399px){
    .home-feature-detail{
        width: 470px;
        padding-top: 30px;
    }
}
@media screen and (max-width:991px){
    .home-feature-detail{
        width: 370px;
        padding-top: 10px;
    }
}
@media screen and (max-width:767px){
    .home-feature-detail{
        width: 100%;
        padding-top: 0;
    }
}
/*  home-feature-title
------------------------------------------------------------------*/
.home-feature-title{
    margin-bottom: 50px;
}
@media screen and (max-width:1399px){
    .home-feature-title{
        width: 360px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:991px){
    .home-feature-title{
        width: 280px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width:767px){
    .home-feature-title{
        width: 200px;
        margin: 0 auto 20px;
    }
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-bottom: 60px;
}
@media screen and (max-width:1399px){
    .home-feature-list{
        row-gap: 24px;
        margin-bottom: 50px;
    }
}
@media screen and (max-width:991px){
    .home-feature-list{
        row-gap: 16px;
        margin-bottom: 30px;
    }
}
/*  home-feature-item
------------------------------------------------------------------*/
.home-feature-list-item .title{
    margin-bottom: .5em;
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.5;
}
.home-feature-list-item .title .num{
    position: relative;
    top: .05em;
    font-family: var(--en-font);
    font-size: 2.15em;
    color: var(--primary-color);
    vertical-align: baseline;
    line-height: 1;
}
.home-feature-list-item .text{
    font-size: 1.125rem;
    line-height: 1.8;
}
@media screen and (max-width:1399px){
    .home-feature-list-item .title{
        font-size: 1.5rem;
    }
    .home-feature-list-item .text{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-feature-list-item .title{
        font-size: 1.25rem;
    }
    .home-feature-list-item .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .home-feature-list-item .title{
        font-size: 1.125rem;
    }
}
/*  home-feature-image
------------------------------------------------------------------*/
.home-feature-image{
    overflow: hidden;
    border-top-left-radius: 100px;
}
.home-feature-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .home-feature-image{
        border-top-left-radius: 60px;
    }
}
@media screen and (max-width:767px){
    .home-feature-image{
        aspect-ratio: 3 / 2;
        border-radius: 20px;
    }
}

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

/*  home-service
------------------------------------------------------------------*/
.home-service{
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}
.home-service::before{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 5px;
    background: var(--primary-color);
    content: "";
    z-index: 1;
}
.home-service::after{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 5px;
    background: var(--accent-color);
    content: "";
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-service{
        padding: 80px 0;
    }
}
@media screen and (max-width:991px){
    .home-service{
        padding: 60px 0;
    }
}
/*  home-service-card
------------------------------------------------------------------*/
.home-service-card{
    display: block;
}
.home-service-card .image{
    aspect-ratio: 3 / 2;
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
}
.home-service-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-service-card .title{
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-service-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-service-card:hover .title{
        color: var(--primary-color);
    }
}
@media (hover:none) {
    .home-service-card:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-service-card:active .title{
        color: var(--primary-color);
    }
}
@media screen and (max-width:1399px){
    .home-service-card .image{
        margin-bottom: 12px;
    }
    .home-service-card .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-service-card .image{
        margin-bottom: 8px;
    }
    .home-service-card .title{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .home-service-card .image{
        border-radius: 10px;
    }
}

/*------------------------------------------------------------------
  home-works
------------------------------------------------------------------*/

/*  home-works-card
------------------------------------------------------------------*/
.home-works-card{
    display: block;
}
.home-works-card{
    content-visibility: auto;
    contain-intrinsic-size: auto 350px;
}
.home-works-card .image{
    aspect-ratio: 3 / 2;
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
}
.home-works-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-works-card .body{
    display: flex;
    flex-direction: column;
}
.home-works-card .category{
    margin-bottom: .25em;
    font-size: .875rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.2;
}
.home-works-card .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 1.25em;
    overflow: hidden;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
    transition: .2s ease-out;
}
.home-works-card .price{
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1em;
    padding-bottom: .625em;
    margin-top: auto;
    border-bottom: 1px solid #aaaaaa;
    color: #4b423d;
    line-height: 1;
    --letter-spacing: 0;
    transition: .2s ease-out;
}
.home-works-card .price dt{
    font-weight: normal;
}
.home-works-card .price dd{
    text-align: right;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-works-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-works-card:hover .title{
        color: var(--primary-color);
    }
    .home-works-card:hover .price{
        color: var(--primary-color);
        border-color: var(--primary-color);
    }
}
@media (hover:none) {
    .home-works-card:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-works-card:active .title{
        color: var(--primary-color);
    }
}
@media screen and (max-width:1399px){
    .home-works-card .category{
        font-size: .8125rem;
    }
    .home-works-card .title{
        font-size: 1rem;
    }
    .home-works-card .price{
        font-size: .875rem;
    }
}
@media screen and (max-width:1199px){
    .home-works-card .category{
        font-size: .75rem;
    }
    .home-works-card .title{
        font-size: .875rem;
    }
    .home-works-card .price{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .home-works-card .image{
        border-radius: 10px;
    }
}

/*------------------------------------------------------------------
  home-company
------------------------------------------------------------------*/

/*  home-company-btn
------------------------------------------------------------------*/
.home-company-btn{
    position: relative;
    top: 0;
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    transition: .2s ease-out;
}
.home-company-btn .detail{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 80px;
    flex-shrink: 0;
}
.home-company-btn .image{
    overflow: hidden;
}
.home-company-btn .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-company-btn:hover{
        top: -5px;
        box-shadow: 0 0 30px rgba(168, 90, 0, 0.5);
    }
    .home-company-btn:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
}
@media (hover:none) {
    .home-company-btn:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
}
@media screen and (max-width:767px){
    .home-company-btn .detail{
        padding: 20px 60px;
    }
}
@media screen and (max-width:575px){
    .home-company-btn{
        height: 120px;
        border-radius: 10px;
    }
    .home-company-btn .detail{
        padding: 20px 30px;
    }
}

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

/* about-feature-section
------------------------------------------------------------------*/
.about-feature-section{
    display: flex;
    align-items: flex-start;
    column-gap: 30px;
    margin-bottom: 60px;
}
.about-feature-section:last-of-type{
    margin-bottom: 0;
}
@media screen and (max-width:991px){
    .about-feature-section{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .about-feature-section{
       column-gap: 16px;
    }
}
@media screen and (max-width:575px){
    .about-feature-section{
        flex-direction: column;
        align-items: initial;
        row-gap: 20px;
    }
}
/* about-feature-section-image
------------------------------------------------------------------*/
.about-feature-section-image{
    flex-shrink: 0;
    width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}
.about-feature-section-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .about-feature-section-image{
        width: 160px;
    }
}
@media screen and (max-width:767px){
    .about-feature-section-image{
        width: 120px;
    }
}
@media screen and (max-width:575px){
    .about-feature-section-image{
        width: 180px;
        margin: 0 auto;
    }
}
/* about-map
------------------------------------------------------------------*/
.about-map{
    height: 360px;
    margin-bottom: 30px;
}
.about-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .about-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}


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

/*  service-item
------------------------------------------------------------------*/
.service-item{
    margin-top: 40px;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}
.service-item + .service-item{
    margin-top: 20px;
}
@media screen and (max-width:991px){
    .service-item + .service-item{
        margin-top: 16px;
    }
}
@media screen and (max-width:767px){
    .service-item{
    }
    .service-item + .service-item{
        margin-top: 12px;
    }
}
/*  service-item-title
------------------------------------------------------------------*/
.service-item-title{
    position: relative;
    padding-bottom: .5em;
    margin-bottom: 1em;
    border-bottom: 1px solid #ccc;
    font-size: 1.375rem;
    font-weight: bold;
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .service-item-title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:767px){
    .service-item-title{
        font-size: 1rem;
    }
}
/*  service-item-detail-head
------------------------------------------------------------------*/
.service-item-detail-head{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 30px;
}
.service-item-detail-head .image{
    width: 33%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.service-item-detail-head .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-item-detail-head .detail{
    flex: 1;
}
@media screen and (max-width:991px){
    .service-item-detail-head{
        column-gap: 20px;
    }
    .service-item-detail-head .image{
        width: 40%;
    }
}
@media screen and (max-width:767px){
    .service-item-detail-head{
        flex-direction: column;
        row-gap: 20px;
    }
    .service-item-detail-head .image{
        width: 100%;
    }
}
/*  service-item-detail-section
------------------------------------------------------------------*/
.service-item-detail-section{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
* + .service-item-detail-section{
    margin-top: 50px;
}
@media screen and (max-width:991px){
    * + .service-item-detail-section{
        margin-top: 40px;
    }
}
@media screen and (max-width:767px){
    * + .service-item-detail-section{
        margin-top: 30px;
    }
}
/*  service-item-detail-title
------------------------------------------------------------------*/
.service-item-detail-title{
    padding: .5em 1em;
    background: var(--primary-color);
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .service-item-detail-title{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .service-item-detail-title{
        font-size: .875rem;
    }
}
/*  service-item-detail-images
------------------------------------------------------------------*/
.service-item-detail-images{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 20px;
    row-gap: 30px;
}
.service-item-detail-images .image{
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.service-item-detail-images .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-item-detail-images .text{
    margin-top: 10px;
    font-size: .875rem;
    text-align: center;
    line-height: 1.4;
}
@media screen and (max-width:991px){
    .service-item-detail-images{
        column-gap: 10px;
        row-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .service-item-detail-images{
        grid-template-columns: repeat(2,1fr);
        column-gap: 8px;
    }
    .service-item-detail-images .text{
        font-size: .75rem;
    }
}
/*  service-item-detail-ba
------------------------------------------------------------------*/
.service-item-detail-ba{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
}
.service-item-detail-ba .image{
    aspect-ratio: 3 / 2;
}
.service-item-detail-ba .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-item-detail-ba .text{
    margin-top: 10px;
    font-family: var(--en-font);
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    letter-spacing: 0;
}
.service-item-detail-ba .after .text{
    color: var(--red-color);
}
@media screen and (max-width:991px){
    .service-item-detail-ba{
        column-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .service-item-detail-ba{
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
    .service-item-detail-ba .text{
        margin-top: 8px;
    }
}

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

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

}
/*  works-slider-button
------------------------------------------------------------------*/
.works-slider-button-prev,
.works-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;
}
.works-slider-button-prev.swiper-button-disabled,
.works-slider-button-next.swiper-button-disabled{
    border-color: #ccc;
    color: #ccc;
    pointer-events: none;
}
.works-slider-button-prev{
    left: -18px;
}
.works-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;
}
.works-slider-button-next{
    right: -18px;
}
.works-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) {
    .works-slider-button-prev:hover,
    .works-slider-button-next:hover,
    .works-slider-button-prev:active,
    .works-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
    .works-slider-button-prev:active,
    .works-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .works-slider-button-prev:active,
    .works-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 20px;
    background: #efefef;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 12px;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
}
.contact-tel-box .num span{
    font-size: 2em;
    letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:767px){
    .contact-tel-box{
        padding: 24px 16px;
    }
    .contact-tel-box .title{
        margin-bottom: 8px;
        font-size: 1.25rem;
    }
    .contact-tel-box .num{
        font-size: 1rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num{
        margin-bottom: 12px;
        font-size: .875rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-box .num{
        font-size: .875rem;
    }
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
}
/*  contact-line
------------------------------------------------------------------*/
.contact-line{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1.5em 2em;
    border-radius: 10px;
    background: #00b900;
    font-size: 1.75rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
    transition: .2s ease-out;
}
.contact-line::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
.contact-line span{
    color: var(--accent-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .contact-line:hover{
        filter: brightness(1.2);
    }
    .contact-line:hover::after{
        right: .5em;
    }
}
@media (hover:none) {
    .contact-line:active{
        filter: brightness(1.2);
    }
    .contact-line:active::after{
        right: .5em;
    }
}
@media screen and (max-width:991px){
    .contact-line{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:767px){
    .contact-line{
        font-size: 1.25rem;
    }
}

.form-error{
    position: relative;
    padding-left: 1.25em;
    margin-top: 5px;
    color: var(--red-color);
}
.form-error::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}