<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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: 100vh;
    min-height: 800px;
    background: #fff;
    overflow: hidden;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3;
    content: "";
    z-index: 1;
}
.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: 700px;
    }
}
@media screen and (max-width:1199px){
    .home-hero-slider .swiper-slide{
        min-height: 900px;
    }
}
@media screen and (max-width:575px){
    .home-hero-slider .swiper-slide{
        height: 100vh;
        height: 100svh;
        min-height: 600px;
    }
}
@media print{
    .home-hero-slider .swiper-slide{
        height: 600px;
        min-height: initial;
    }
}
/*  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: 5vw;
    bottom: 10vh;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-hero-detail{
        position: absolute;
        bottom: 50%;
        left: 0;
        transform: translateY(50%);
        width: 100%;
        text-align: center;
    }
}
@media print{
    .home-hero-detail{
        bottom: 30px;
        left: 30px;
    }
}
/*  home-hero-caption
------------------------------------------------------------------*/
.home-hero-caption{
    display: block;
    margin-bottom: 1.2em;
    font-size: 24px;
    color: #fff;
    line-height: 1.4;
}
@media screen and (max-width:1399px){
    .home-hero-caption{
        font-size: 20px;
    }
}
@media screen and (max-width:1199px){
    .home-hero-caption{
        font-size: 24px;
        text-align: center;
    }
}
@media screen and (max-width:767px){
    .home-hero-caption{
        font-size: max(3.25vw, .875rem);
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    display: block;
    font-size: 90px;
    font-weight: bold;
    font-feature-settings: initial;
    color: #fff;
    line-height: 1.3;
}
@media screen and (max-width:1399px){
    .home-hero-title{
        font-size: 72px;
    }
}
@media screen and (max-width:1199px){
    .home-hero-title{
        font-size: 90px;
        text-align: center;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        font-size: 12vw;
    }
}
/*  home-hero-scroll
------------------------------------------------------------------*/
.home-hero-scroll{
    position: absolute;
    bottom: 0;
    right: 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    line-height: 1;
    z-index: 1;
}
.home-hero-scroll .text{
    font-family: var(--en-font);
    font-size: 14px;
    color: #fff;
    writing-mode: vertical-lr;
}
.home-hero-scroll .line{
    position: relative;
    width: 1px;
    height: 200px;
    background: #ccc;
    z-index: 1;
}
.home-hero-scroll .line .point{
    position: absolute;
    top: 0;
    left: -2px;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    animation: scrollPoint 4s 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:1199px){
    .home-hero-scroll{
        right: 50%;
        transform: translateX(50%);
    }
    .home-hero-scroll .text{
        font-size: 12px;
        writing-mode: horizontal-tb;
    }
    .home-hero-scroll .line{
        height: 150px;
    }
}
@media screen and (max-width:767px){
    .home-hero-scroll .line{
        height: 130px;
    }
}
@media screen and (max-width:575px){
    .home-hero-scroll .line{
        height: 100px;
    }
}
@media print {
    .home-hero-scroll{
        bottom: 30px;
        right: 30px;
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    padding: 120px 0;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .home-about{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 60px 0;
    }
}
/*  home-about-wrapper
------------------------------------------------------------------*/
.home-about-wrapper{
    display: flex;
    justify-content: space-between;

}
@media screen and (max-width:991px){
    .home-about-wrapper{
        flex-direction: column;
        row-gap: 30px;
        padding: 0 6vw;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    flex-shrink: 0;
    margin: 0 auto;
    padding: 120px 60px 0;
}
@media screen and (max-width:1399px){
    .home-about-detail{
        padding: 100px 60px 0;
    }
}
@media screen and (max-width:1199px){
    .home-about-detail{
        padding: 80px 60px 0;
    }
}
@media screen and (max-width:991px){
    .home-about-detail{
        padding: 0;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 3em;
    font-size: 1.125rem;
    line-height: 2.5;
}
.home-about-text:last-of-type{
    margin-bottom: 0;
}
@media print, screen and (max-width:1399px){
    .home-about-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:1199px){
    .home-about-text{
        font-size: .9125rem;
    }
}
@media screen and (max-width:991px){
    .home-about-text{
        margin-bottom: 2em;
        font-size: .875rem;
        line-height: 2;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    position: relative;
    max-width: 1000px;
    height: 800px;
}
.home-about-image .inner{
    height: 100%;
    overflow: hidden;
}
.home-about-image .inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}
.home-about-image figcaption{
    position: absolute;
    width: 104%;
    right: 0;
    bottom: 0;
    transform: translateY(30%);
    z-index: 1;
}
@media print, screen and (max-width:1399px){
    .home-about-image{
        height: 650px;
    }
}
@media screen and (max-width:1199px){
    .home-about-image{
        height: 600px;
    }
}
@media screen and (max-width:991px){
    .home-about-image{
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

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

/*  home-feature-english
------------------------------------------------------------------*/
.home-feature-english{
    width: 78vw;
    max-width: 552px;
    margin: 0 auto;
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
    max-width: 1080px;
    margin: 0 auto 80px;
}
@media screen and (max-width:1199px){
    .home-feature-list{
        max-width: 720px;
    }
}
@media screen and (max-width:767px){
    .home-feature-list{
        grid-template-columns: 1fr;
        row-gap: 20px;
        width: fit-content;
        margin-bottom: 40px;
    }
}
/*  home-feature-item
------------------------------------------------------------------*/
.home-feature-item{
    text-align: center;
}
.home-feature-item .head{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 30px;
    background: #fff;
    border-radius: 50%;
}
.home-feature-item .head .num{
    position: absolute;
    top: -.5em;
    left: calc(50% - .5em);
    font-family: var(--en-font);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 1;
    z-index: 1;
}
.home-feature-item .head .icon{
    width: 60px;
    aspect-ratio: 1 / 1;
}
.home-feature-item .head .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-feature-item .title{
    margin-bottom: .8em;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
}
.home-feature-item .text{
    font-size: 1rem;
    line-height: 1.7;
}
@media screen and (max-width:991px){
    .home-feature-item .title{
        font-size: 1.375rem;
    }
    .home-feature-item .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-feature-item{
        display: flex;
        align-items: center;
        column-gap: 16px;
        padding-bottom: 20px;
        border-bottom: 1px dashed #aaa;
        text-align: left;
    }
    .home-feature-item .head{
        flex-shrink: 0;
        width: 80px;
        margin: 0;
    }
    .home-feature-item .head .num{
        font-size: 1rem;
    }
    .home-feature-item .head .icon{
        width: 40px;
    }
    .home-feature-item .body{
        flex: 1;
    }
    .home-feature-item .title{
        margin-bottom: .5em;
        font-size: 1.25rem;
    }
    .home-feature-item .text{
        line-height: 1.5;
    }
}
@media screen and (max-width:575px){
    .home-feature-item{
        column-gap: 8px;
    }
    .home-feature-item .head{
        width: 52px;
    }
    .home-feature-item .head .num{
        font-size: .75rem;
    }
    .home-feature-item .head .icon{
        width: 28px;
    }
    .home-feature-item .title{
        font-size: 1.125rem;
    }
    .home-feature-item .text{
        font-size: .8125rem;
    }
}

/*------------------------------------------------------------------
  home-reform
------------------------------------------------------------------*/

/*  home-reform
------------------------------------------------------------------*/
.home-reform{
    overflow: hidden;
}
/*  home-reform-image
------------------------------------------------------------------*/
.home-reform-image{
    position: relative;
    height: 600px;
    z-index: 1;
}
.home-reform-image .inner{
    height: 100%;
    overflow: hidden;
}
.home-reform-image .inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-reform-image figcaption{
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
    width: 100%;
    text-align: center;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-reform-image{
        height: 500px;
    }
}
@media screen and (max-width:991px){
    .home-reform-image{
        height: 400px;
    }
}
@media screen and (max-width:767px){
    .home-reform-image{
        height: 300px;
    }
}
@media screen and (max-width:575px){
    .home-reform-image{
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .home-reform-image figcaption{
        transform: translateY(30%);
    }
}

/*  home-reform-body
------------------------------------------------------------------*/
.home-reform-body{
    padding: 180px 0 120px;
}
@media screen and (max-width:1399px){
    .home-reform-body{
        padding: 140px 0 80px;
    }
}
@media screen and (max-width:991px){
    .home-reform-body{
        padding: 100px 0 60px;
    }
}
@media screen and (max-width:767px){
    .home-reform-body{
        padding: 80px 0 60px;
    }
}

/*  home-reform-wrapper
------------------------------------------------------------------*/
.home-reform-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-reform-wrapper{
        column-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-reform-wrapper{
        flex-direction: column;
        row-gap: 50px;
    }
}
/*  home-reform-detail
------------------------------------------------------------------*/
.home-reform-detail{
    flex-shrink: 0;
}
/*  home-reform-text
------------------------------------------------------------------*/
.home-reform-text{
    margin-bottom: 3em;
    font-size: 1.125rem;
    line-height: 2.5;
}
@media print, screen and (max-width:1399px){
    .home-reform-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:1199px){
    .home-reform-text{
        font-size: .9125rem;
    }
}
@media screen and (max-width:991px){
    .home-reform-text{
        font-size: .875rem;
        line-height: 2;
    }
}
/*  home-reform-diagram
------------------------------------------------------------------*/
@media print, screen and (max-width:1399px){
    .home-reform-diagram{
        max-width: 460px;
    }
}
@media print, screen and (max-width:767px){
    .home-reform-diagram{
        padding: 0 6vw;
        margin: 0 auto;
    }
}

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

/*  home-service-wrapper
------------------------------------------------------------------*/
.home-service-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-service-wrapper{
        flex-direction: column;
        justify-content: initial;
    }
}
/*  home-service-titlearea
------------------------------------------------------------------*/
.home-service-titlearea{
    flex-shrink: 0;
}
/*  home-service-detail
------------------------------------------------------------------*/
.home-service-detail{
    width: 100%;
    max-width: 900px;
}
@media screen and (max-width:1399px){
    .home-service-detail{
        max-width: 800px;
    }
}
/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
}
/*  home-service-link
------------------------------------------------------------------*/
.home-service-link{
    display: flex;
    align-items: center;
    column-gap: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ad938a;
    transition: .2s ease-out;
}
.home-service-link .image{
    flex-shrink: 0;
    width: 150px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.home-service-link .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-service-link .title{
    display: block;
    width: 100%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    transition: .2s ease-out;
}
.home-service-link .arrow{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 60px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--black-color);
    border-radius: 50%;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-service-link:hover{
        border-color: var(--primary-color);
    }
    .home-service-link:hover .title{
        color: var(--primary-color);
    }
    .home-service-link:hover .image img{
        transform: scale(1.2);
        filter: brightness(.5);
    }
    .home-service-link:hover .arrow{
        transform: scale(.8);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:1399px){
    .home-service-link{
        column-gap: 20px;
    }
    .home-service-link .image{
        width: 120px;
    }
    .home-service-link .title{
        font-size: 1.25rem;
    }
    .home-service-link .arrow{
        width: 48px;
        font-size: 12px;
    }
}
@media screen and (max-width:767px){
    .home-service-link{
        column-gap: 12px;
    }
    .home-service-link .image{
        width: 90px;
    }
    .home-service-link .title{
        font-size: 1.125rem;
    }
    .home-service-link .arrow{
        width: 40px;
        font-size: 10px;
    }
}
@media screen and (max-width:575px){
    .home-service-link{
        column-gap: 8px;
    }
    .home-service-link .image{
        width: 52px;
        aspect-ratio: 1 / 1;
    }
    .home-service-link .title{
        font-size: 1rem;
    }
    .home-service-link .arrow{
        width: 32px;
    }
}


/*/////////////////////////////////////////////////////////////////
  feature.html
/////////////////////////////////////////////////////////////////*/

/*  feature-contents
------------------------------------------------------------------*/
.feature-contents{
    display: flex;
    column-gap: 30px;
}
@media screen and (max-width:991px){
    .feature-contents{
        flex-direction: column-reverse;
        row-gap: 40px;
    }
}
/*  feature-contents-detail
------------------------------------------------------------------*/
.feature-contents-detail{
    width: 58%;
    padding: 30px 0;
}
@media screen and (max-width:991px){
    .feature-contents-detail{
        width: 100%;
        padding: 0;
    }
}
@media screen and (max-width:767px){
    
}
@media screen and (max-width:575px){
    
}
/*  feature-contents-image
------------------------------------------------------------------*/
.feature-contents-image{
    width: 42%;
}
.feature-contents-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .feature-contents-image{
        width: 100%;
    }
}


/*/////////////////////////////////////////////////////////////////
  reform.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  reform-jutaku
------------------------------------------------------------------*/

/*  reform-jutaku-list
------------------------------------------------------------------*/
.reform-jutaku-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 40px;
}
@media screen and (max-width:1399px){
    .reform-jutaku-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .reform-jutaku-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .reform-jutaku-list{
        column-gap: 10px;
        row-gap: 30px;
    }
}
@media screen and (max-width:575px){
    .reform-jutaku-list{
        grid-template-columns: 1fr;
    }
}
/*  reform-jutaku-item
------------------------------------------------------------------*/
.reform-jutaku-item{
    background: #fff;
}
.reform-jutaku-item .body{
    padding: 20px;
}
.reform-jutaku-item .title{
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
.reform-jutaku-item .text{
    font-size: .9125rem;
    line-height: 1.8;
}
@media screen and (max-width:991px){
    .reform-jutaku-item .title{
        font-size: 1.125rem;
    }
    .reform-jutaku-item .text{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  reform-other
------------------------------------------------------------------*/

/*  reform-other-list
------------------------------------------------------------------*/
.reform-other-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
    row-gap: 40px;
}
@media screen and (max-width:1399px){
    .reform-other-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:991px){
    .reform-other-list{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width:767px){
    .reform-other-list{
        row-gap: 30px;
    }
}
/*  reform-other-item
------------------------------------------------------------------*/
.reform-other-item{
    background: #fff;
}
.reform-other-item .body{
    padding: 20px;
}
.reform-other-item .title{
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
.reform-other-item .text{
    font-size: .9125rem;
    line-height: 1.8;
}
@media screen and (max-width:991px){
    .reform-other-item .title{
        font-size: 1.125rem;
    }
    .reform-other-item .text{
        font-size: .875rem;
    }
}


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

/*  works-list
------------------------------------------------------------------*/
.works-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 40px;
}
@media screen and (max-width:1199px){
    .works-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .works-list{
        column-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .works-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .works-list{
        column-gap: 10px;
        row-gap: 40px;
    }
}
/*  works-card
------------------------------------------------------------------*/
.works-card{
    display: block;
}
.works-card .image{
    aspect-ratio: 3 / 2;
    margin-bottom: 12px;
    overflow: hidden;
}
.works-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.works-card .category{
    margin-bottom: .5em;
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
.works-card .title{
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
}
/* ホバー時動作 */
@media (hover:hover) {
    .works-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
}
@media screen and (max-width:991px){
    .works-card .category{
        font-size: .75rem;
    }
    .works-card .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .works-card .title{
        font-size: .875rem;
    }
}

/*  works-container
------------------------------------------------------------------*/
.works-container{
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 60px;
}
@media screen and (max-width:991px){
    .works-container{
        padding: 0 6vw;
    }
}
/*  works-detail
------------------------------------------------------------------*/
.works-detail{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
    margin-bottom: 40px;
}
.works-detail .item{
    line-height: 1;
}
.works-detail .title{
    color: var(--green-light-color);
}
/*  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: var(--light-color);
}
.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 var(--black-color);
    border-radius: 50%;
    transform: translateY(-50%);
    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: translateY(-50%) scale(0.8);
    }
}


/*/////////////////////////////////////////////////////////////////
  item.html
/////////////////////////////////////////////////////////////////*/

/*  item-tokkyo
------------------------------------------------------------------*/
.item-tokkyo{
    position: relative;
    width: fit-content;
    padding: .4em .5em;
    margin-bottom: 8px;
    background: #db2828;
    color: #fff;
    line-height: 1;
    z-index: 1;
}


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

/*  company-map
------------------------------------------------------------------*/
.company-map{
    height: 300px;
    margin-bottom: 20px;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
/*  company-access-box
------------------------------------------------------------------*/
.company-access-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 30px;
    padding: 30px;
    background: var(--light-color);
}
@media screen and (max-width:575px) {
    .company-access-box{
        justify-content: center;
    }
}

/*  company-access-list
------------------------------------------------------------------*/
.company-access-list{
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    line-height: 1.5;
}
.company-access-list i{
    margin-right: .5em;
    color: var(--primary-color);
}

/*  company-history-table
------------------------------------------------------------------*/
.company-history-table{
    width: 100%;
}
.company-history-table th,
.company-history-table td{
    padding: 1em;
    border-bottom: 1px solid #ccc;
    vertical-align: top;
    line-height: 1.7;
}
.company-history-table th{
    white-space: nowrap;
    background: var(--black-color);
    color: #fff;
}
.company-history-table td{
    background: #fff;
}
@media screen and (max-width:767px) {
    .company-history-table th,
    .company-history-table td{
        display: block;
    }
    .company-history-table th{
        padding: .5em 1em;
    }
}

/*  company-history-photos
------------------------------------------------------------------*/
.company-history-photos{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}
.company-history-photos figure{
    overflow: hidden;
}
.company-history-photos figure a{
    display: block;
    width: 80px;
    height: 80px;
}
.company-history-photos figure a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*/////////////////////////////////////////////////////////////////
  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;
    }
}</pre></body></html>