@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-top: 140px;
    background: url(../images/home/hero-bg.jpg) no-repeat bottom center / cover;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-hero{
        padding-top: max(20vw,120px);
        margin-bottom: 3vw;
    }
}
/*  home-hero-container
------------------------------------------------------------------*/
.home-hero-container{
    position: relative;
    padding: 0 80px;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-hero-container{
        padding: 0 6vw;
    }
}
/*  home-hero-inner
------------------------------------------------------------------*/
.home-hero-inner{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1680px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .home-hero-inner{
        flex-direction: column;
        align-items: initial;
        row-gap: 7vw;
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    padding-bottom: min(4.8vw,90px);
}
@media screen and (max-width:991px){
    .home-hero-detail{
        padding-bottom: 0;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: 1.5em;
    font-size: min(3.2vw,3.75rem);
    font-weight: bold;
    font-feature-settings: "palt";
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .home-hero-title{
        margin-bottom: .5em;
        font-size: 7vw;
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .home-hero-title{
        font-size: 9vw;
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    font-family: var(--en-font);
    font-size: .875rem;
    color: #666;
}
@media screen and (max-width:1399px){
    .home-hero-text{
        font-size: .75rem;
    }
}
@media screen and (max-width:991px){
    .home-hero-text{
        font-size: 2.5vw;
        text-align: center;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    width: 50%;
    max-width: 870px;
    z-index: 1;
}
.home-hero-slider .swiper-slide{
    background: #fff;
    overflow: hidden;
}
.home-hero-slider .swiper-slide img{
    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);
    }
}
@media screen and (max-width:991px){
    .home-hero-slider{
        width: 100%;
        margin-bottom: 10px;
    }
}
/*  home-hero-slider-pagination
------------------------------------------------------------------*/
.home-hero-slider-pagination,
.home-hero-slider-pagination.swiper-pagination-bullets{
    position: absolute;
    top: 0;
    bottom: initial;
    left: initial;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 8px;
    width: auto;
    height: 100%;
    z-index: 1;
}
.home-hero-slider-pagination > .swiper-pagination-bullet,
.home-hero-slider-pagination.swiper-pagination-bullets > .swiper-pagination-bullet{
    transition: .2s ease-out;    
}
.home-hero-slider-pagination > .swiper-pagination-bullet-active,
.home-hero-slider-pagination.swiper-pagination-bullets > .swiper-pagination-bullet-active{
    width: 12px;
    height: 12px;
    background: var(--black-color);
}
@media screen and (max-width:991px){
    .home-hero-slider-pagination,
    .home-hero-slider-pagination.swiper-pagination-bullets{
        position: relative;
        right: initial;
        flex-direction: row;
    }
}
/*  home-hero-scroll
------------------------------------------------------------------*/
.home-hero-scroll{
    position: absolute;
    bottom: 0;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    height: 100%;
    line-height: 1;
}
.home-hero-scroll .text{
    display: block;
    font-family: var(--en-font);
    font-size: 12px;
    color: #666;
    transform: rotate(90.5deg);
}
.home-hero-scroll .track{
    position: relative;
    display: block;
    width: 1px;
    height: 100%;
    background: #ccc;
    overflow: hidden;
}
.home-hero-scroll .thumb{
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 20%;
    transform: translateY(-100%);
    background: #111;
    animation: headerScroll 2s forwards ease-out infinite;
}
@keyframes headerScroll {
    from{
        top: 0;
        transform: translateY(-100%);
    }
    to{
        top: 100%;
        transform: translateY(0);
    }
}
@media screen and (max-width:991px){
    .home-hero-scroll{
        display: none;
    }
}
/*  home-hero-treat
------------------------------------------------------------------*/
.home-hero-treat{
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}
.home-hero-treat > div{
    margin-right: .25em;
    font-family: var(--en-font);
    font-size: 8.3vw;
    font-weight: bold;
    color: #eff5f9;
    white-space: nowrap;
    line-height: 1;
    animation: homeHeroTreat 30s infinite linear;
}
@keyframes homeHeroTreat {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
@media screen and (max-width:991px){
    .home-hero-treat > div{
        font-size: 13vw;
        animation-duration: 20s;
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 150px 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-inner
------------------------------------------------------------------*/
.home-about-inner{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-about-inner{
        flex-direction: column;
    }
}
@media screen and (max-width:767px){
    .home-about-inner{
        display: block;
    }
}
/*  home-about-left
------------------------------------------------------------------*/
.home-about-left{
    flex-shrink: 0;
}
/*  home-about-caption
------------------------------------------------------------------*/
.home-about-caption{
    margin-bottom: 40px;
    font-family: var(--en-font);
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:1399px){
    .home-about-caption{
        margin-bottom: 30px;
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-about-caption{
        margin-bottom: 16px;
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .home-about-caption{
        font-size: .875rem;
    }
}
/*  home-about-title
------------------------------------------------------------------*/
.home-about-title{
    margin-bottom: 2em;
    font-size: 3rem;
    font-weight: bold;
    font-feature-settings: "palt";
    line-height: 1.5;
}
@media screen and (max-width:1199px){
    .home-about-title{
        font-size: 3.5vw;
    }
}
@media screen and (max-width:991px){
    .home-about-title{
        margin-bottom: 32px;
        font-size: min(6vw, 2.5rem);
        text-align: center;
    }
}
/*  home-about-list
------------------------------------------------------------------*/
.home-about-list{
    position: relative;
    display: flex;
    column-gap: 40px;
    width: fit-content;
    z-index: 1;
}
.home-about-list::after{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
    content: "";
    z-index: -1;
}
.home-about-list > li{
    padding: 0 5px;
    background: #fff;
    font-family: var(--en-font);
    font-size: .75rem;
    font-weight: bold;
    color: #666;
    line-height: 1;
}
@media screen and (max-width:991px){
    .home-about-list{
        margin: 0 auto 40px;
    }
}
@media screen and (max-width:575px){
    .home-about-list{
        column-gap: 20px;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 50px;
    text-align: justify;
}
@media screen and (max-width:1199px){
    .home-about-text{
        margin-bottom: 30px;
        font-size: .9125rem;
    }
}
@media screen and (max-width:991px){
    .home-about-text{
        font-size: .875rem;
    }
}
/*  home-about-right
------------------------------------------------------------------*/
.home-about-right{
    width: 452px;
    padding-top: 120px;
}
@media screen and (max-width:1199px){
    .home-about-right{
        padding-top: 90px;
    }
}
@media screen and (max-width:991px){
    .home-about-right{
        width: 100%;
        padding-top: 0;
    }
}

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

/*  home-feature
------------------------------------------------------------------*/
.home-feature{
    position: relative;
    padding: 180px 0;
    background: var(--primary-light-color);
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-feature{
        padding: 150px 0;
    }
}
@media screen and (max-width:991px){
    .home-feature{
        padding: 100px 0;
    }
}
@media screen and (max-width:575px){
    .home-feature{
        padding: 60px 0;
    }
}
/*  home-feature-inner
------------------------------------------------------------------*/
.home-feature-inner{
    display: flex;
    justify-content: space-between;
    column-gap: 80px;
}
@media screen and (max-width:991px){
    .home-feature-inner{
        column-gap: 60px;
    }
}
@media screen and (max-width:575px){
    .home-feature-inner{
        flex-direction: column;
    }
}
/*  home-feature-title
------------------------------------------------------------------*/
.home-feature-title{
    writing-mode: vertical-lr;
    flex-shrink: 0;
}
.home-feature-title .en{
    font-family: var(--en-font);
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary-color);
}
.home-feature-title .jp{
    margin-top: -.2em;
    font-size: 3rem;
    font-weight: bold;
}
@media screen and (max-width:991px){
    .home-feature-title .en{
        font-size: 1rem;
    }
    .home-feature-title .jp{
        font-size: 2.5rem;
    }
}
@media screen and (max-width:575px){
    .home-feature-title{
        margin-bottom: 40px;
        writing-mode: horizontal-tb;
        text-align: center;
    }
    .home-feature-title .en{
        margin-bottom: 12px;
        font-size: .875rem;
    }
    .home-feature-title .jp{
        font-size: 1.75rem;
        line-height: 1.5;
    }
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 70px;
    width: 900px;
}
@media screen and (max-width:991px){
    .home-feature-list{
        row-gap: 50px;
    }
}
@media screen and (max-width:575px){
    .home-feature-list{
        width: 100%;
        row-gap: 40px;
    }
}
/*  home-feature-list-item
------------------------------------------------------------------*/
.home-feature-list-item .num{
    display: flex;
    align-items: center;
    column-gap: 4px;
    margin-bottom: 30px;
    font-family: var(--en-font);
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
.home-feature-list-item .num::after{
    flex: 1;
    display: block;
    width: 100%;
    height: 1px;
    background: #ccc;
    content: "";
}
@media screen and (max-width:575px){
    .home-feature-list-item .num{
        margin-bottom: 16px;
    }
}

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

/*  home-service
------------------------------------------------------------------*/
.home-service{
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-service{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-service{
        padding: 80px 0;
    }
}
@media screen and (max-width:575px){
    .home-service{
        padding: 60px 0;
    }
}
/*  home-service-head
------------------------------------------------------------------*/
.home-service-head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 30px;
    margin-bottom: 60px;
}
@media screen and (max-width:991px){
    .home-service-head{
        justify-content: center;
        text-align: center;
    }
}
@media screen and (max-width:767px){
    .home-service-head{
        margin-bottom: 40px;
    }
}
/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
    row-gap: 80px;
}
@media screen and (max-width:991px){
    .home-service-list{
        grid-template-columns: repeat(2,1fr);
        row-gap: 60px;
    }
}
@media screen and (max-width:767px){
    .home-service-list{
        column-gap: 20px;
        row-gap: 40px;
    }
}
@media screen and (max-width:575px){
    .home-service-list{
        column-gap: 12px;
    }
}
/*  home-service-list-item
------------------------------------------------------------------*/
.home-service-list-item{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
    transition: .2s ease-out;
}
.home-service-list-item .image{
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
    overflow: hidden;
}
.home-service-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-service-list-item .num{
    margin-bottom: 16px;
    font-family: var(--en-font);
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
.home-service-list-item .title{
    margin-bottom: 28px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.3;
    transition: .2s ease-out;
}
.home-service-list-item .view{
    position: relative;
    margin-top: auto;
    padding-right: 1.5em;
    font-family: var(--en-font);
    font-size: .875rem;
    color: #666;
    line-height: 1;
    text-align: right;
    transition: .2s ease-out;
    z-index: 1;
}
.home-service-list-item .view::after{
    position: absolute;
    top: 50%;
    right: .5em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-service-list-item:hover{
        border-color: var(--primary-color);
    }
    .home-service-list-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .home-service-list-item:hover .title{
        color: var(--primary-color);
    }
    .home-service-list-item:hover .view{
        color: var(--primary-color);
    }
    .home-service-list-item:hover .view::after{
        right: 0;
    }
}
@media screen and (max-width:1399px){
    .home-service-list-item .num{
        margin-bottom: 12px;
        font-size: .75rem;
    }
    .home-service-list-item .title{
        margin-bottom: 24px;
        font-size: 1.125rem;
    }
    .home-service-list-item .view{
        font-size: .75rem;
    }
    .home-service-list-item .view::after{
        font-size: 10px;
    }
}
@media screen and (max-width:575px){
    .home-service-list-item{
        padding-bottom: 8px;
    }
    .home-service-list-item .image{
        margin-bottom: 12px;
    }
    .home-service-list-item .num{
        margin-bottom: 4px;
    }
    .home-service-list-item .title{
        margin-bottom: 10px;
        font-size: 1rem;
    }
    .home-service-list-item .view{
        font-size: .625rem;
    }
}

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

/*  home-works
------------------------------------------------------------------*/
.home-works{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
/*  home-works-head
------------------------------------------------------------------*/
.home-works-head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 30px;
    margin-bottom: 60px;
}
@media screen and (max-width:991px){
    .home-works-head{
        justify-content: center;
        text-align: center;
    }
}
@media screen and (max-width:767px){
    .home-works-head{
        margin-bottom: 40px;
    }
}
/*  home-works-slider
------------------------------------------------------------------*/
.home-works-slider{
    margin-bottom: 60px;
}
.home-works-slider .swiper-slide{
    width: 400px;
}
@media screen and (max-width:991px){
    .home-works-slider{
        margin-bottom: 40px;
    }
    .home-works-slider .swiper-slide{
        width: initial;
    }
}
@media screen and (max-width:575px){
    .home-works-slider{
        margin-bottom: 30px;
    }
}
/*  home-works-slider-options
------------------------------------------------------------------*/
.home-works-slider-options{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
}
/*  home-works-slider-buttons
------------------------------------------------------------------*/
.home-works-slider-buttons{
    display: flex;
    align-items: center;
    column-gap: 20px;
}
@media screen and (max-width:575px){
    .home-works-slider-buttons{
        column-gap: 12px;
    }
}
/*  home-works-slider-button-prev
------------------------------------------------------------------*/
.home-works-slider-button-prev,
.home-works-slider-button-next{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #666;
    cursor: pointer;
    transition: .2s ease-out;
}
.home-works-slider-button-prev::after,
.home-works-slider-button-next::after{
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    font-size: 12px;
}
.home-works-slider-button-prev::after{
    content: "\f104";
}
.home-works-slider-button-next::after{
    content: "\f105";
}
@media (hover:hover) {
    .home-works-slider-button-prev:hover,
    .home-works-slider-button-next:hover{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .home-works-slider-button-prev:active,
    .home-works-slider-button-next:active{
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:575px){
    .home-works-slider-button-prev,
    .home-works-slider-button-next{
        width: 32px;
        height: 32px;
    }
    .home-works-slider-button-prev::after,
    .home-works-slider-button-next::after{
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
        font-size: 10px;
    }
}
/*  home-works-slider-pagination
------------------------------------------------------------------*/
.home-works-slider-pagination{
    width: auto !important;
    line-height: 1;
}
.home-works-slider-pagination .swiper-pagination-bullet-active{
    background: #111;
}

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

/*  home-news
------------------------------------------------------------------*/
.home-news{
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-news{
        padding: 80px 0;
    }
}
@media screen and (max-width:575px){
    .home-news{
        padding: 60px 0;
    }
}
/*  home-news-inner
------------------------------------------------------------------*/
.home-news-inner{
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}
@media screen and (max-width:1399px){
    .home-news-inner{
        flex-direction: column;
    }
}
/*  home-news-contents
------------------------------------------------------------------*/
.home-news-contents{
    width: 960px;
}
@media screen and (max-width:1399px){
    .home-news-contents{
        width: 100%;
    }
}


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

/*  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: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    transition: .2s ease-out;
    z-index: 1;
}
.news-list-item .date{
    flex-shrink: 0;
    color: #666;
    line-height: 1.3;
    transition: .2s ease-out;
}
.news-list-item .category{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 12em;
    height: 2em;
    padding: 0 .25em;
    border: 1px solid var(--primary-color);
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
.news-list-item .title{
    flex: 1;
    padding-right: 60px;
    line-height: 1.5;
    transition: .2s ease-out;
}
.news-list-item .new{
    display: inline-block;
    margin-right: .25em;
    color: var(--red-color);
}
.news-list-item .arrow{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #515860;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    color: #666;
    transition: .2s ease-out;
}
.news-list-item .arrow::after{
    content: "\f105";
    font-family: "Font Awesome 6 Free";
}
/* ホバー時動作 */
@media (hover:hover) {
    a.news-list-item:hover{
        border-color: var(--primary-color);
    }
    a.news-list-item:hover .date{
        color: var(--primary-color);
    }
    a.news-list-item:hover .title{
        color: var(--primary-color);
    }
    a.news-list-item:hover .arrow{
        transform: translateY(-50%) scale(.9);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    a.news-list-item:active{
        border-color: var(--primary-color);
    }
    .news-list-item:active .date{
        color: var(--primary-color);
    }
    a.news-list-item:active .title{
        color: var(--primary-color);
    }
    a.news-list-item:active .arrow{
        transform: translateY(-50%) scale(.9);
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .news-list-item{
        flex-wrap: wrap;
        row-gap: 8px;
        column-gap: 10px;
        padding: 16px 0;
    }
    .news-list-item .category{
        width: auto;
        padding: 0 1em;
    }
    .news-list-item .title{
        flex: initial;
        width: 100%;
        padding-right: 0;
    }
    .news-list-item .arrow{
        display: none;
    }
}
/*  news-section
------------------------------------------------------------------*/
.news-section{
    margin-top: 120px;
    padding: 60px 0;
    overflow: hidden;
}
@media screen and (max-width:991px){
    .news-section{
        margin-top: 52px;
    }
}
/*  news-container
------------------------------------------------------------------*/
.news-container{
    max-width: 1120px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .news-container{
        padding: 0 6vw;
    }
}
/*  news-category
------------------------------------------------------------------*/
.news-detail-head{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 8px;
}
.news-detail-head .new{
    font-size: .875rem;
    color: var(--red-color);
    line-height: 1;
}
.news-detail-head .date{
    font-size: .875rem;
    color: #666;
    line-height: 1;
}
.news-detail-head .category{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2em;
    padding: 0 1em;
    border: 1px solid var(--primary-color);
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:575px){
    .news-detail-head .new{
        font-size: .75rem;
    }
    .news-detail-head .date{
        font-size: .75rem;
    }
}
/*  news-detail-slider
------------------------------------------------------------------*/
.news-detail-slider{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.news-detail-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.news-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  news-detail-thumb-slider
------------------------------------------------------------------*/
.news-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.news-detail-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.news-detail-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.news-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.news-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  news-detail-slider-button
------------------------------------------------------------------*/
.news-detail-slider-button-prev,
.news-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.news-detail-slider-button-prev.swiper-button-disabled,
.news-detail-slider-button-next.swiper-button-disabled{
    background: #ccc;
    color: #777;
    pointer-events: none;
}
.news-detail-slider-button-prev{
    left: 4px;
}
.news-detail-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
.news-detail-slider-button-next{
    right: 4px;
}
.news-detail-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-detail-slider-button-prev:hover,
    .news-detail-slider-button-next:hover,
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}

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

/*  works-list
------------------------------------------------------------------*/
.works-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 60px;
    margin-bottom: 60px;
}
@media screen and (max-width:1399px){
    .works-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .works-list{
        column-gap: 12px;
        row-gap: 40px;
    }
}
@media screen and (max-width:767px){
    .works-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .works-list{
        column-gap: 8px;
        row-gap: 30px;
    }
}
/*  works-card
------------------------------------------------------------------*/
.works-card{
    display: block;
}
.works-card .image{
    margin-bottom: 16px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.works-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.works-card .title{
    margin-bottom: 8px;
    line-height: 1.5;
    transition: .2s ease-out;
}
.works-card .category{
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1.5;
}
/* ホバー時動作 */
@media (hover:hover) {
    .works-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .works-card:hover .title{
        color: var(--primary-color);
    }
}
@media screen and (max-width:991px){
    .works-card .image{
        margin-bottom: 8px;
    }
    .works-card .title{
        margin-bottom: 2px;
    }
}
/*  works-section
------------------------------------------------------------------*/
.works-section{
    margin-top: 120px;
    padding: 60px 0;
    overflow: hidden;
}
@media screen and (max-width:991px){
    .works-section{
        margin-top: 52px;
    }
}
/*  works-container
------------------------------------------------------------------*/
.works-container{
    max-width: 1120px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .works-container{
        padding: 0 6vw;
    }
}
/*  works-category
------------------------------------------------------------------*/
.works-category{
    margin-bottom: 8px;
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:575px){
    .works-category{
        font-size: .75rem;
    }
}
/*  works-ba
------------------------------------------------------------------*/
.works-ba{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 60px;
    margin-bottom: 20px;
    z-index: 1;
}
.works-ba::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,calc(-50% - 1.5rem));
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid var(--primary-color);
    content: "";
    z-index: 1;
}
.works-ba .before,
.works-ba .after{
    font-family: var(--en-font);
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.works-ba .after{
    color: var(--primary-color);
}
@media screen and (max-width:767px){
    .works-ba{
        column-gap: 20px;
    }
    .works-ba::after{
        transform: translate(-50%,calc(-50% - 1.125rem));
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 8px solid var(--primary-color);
    }
    .works-ba .before,
    .works-ba .after{
        font-size: 1.125rem;
    }
}
/*  works-detail-slider
------------------------------------------------------------------*/
.works-detail-slider{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.works-detail-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.works-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  works-detail-thumb-slider
------------------------------------------------------------------*/
.works-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.works-detail-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.works-detail-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.works-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.works-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  works-detail-slider-button
------------------------------------------------------------------*/
.works-detail-slider-button-prev,
.works-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.works-detail-slider-button-prev.swiper-button-disabled,
.works-detail-slider-button-next.swiper-button-disabled{
    background: #ccc;
    color: #777;
    pointer-events: none;
}
.works-detail-slider-button-prev{
    left: 4px;
}
.works-detail-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-detail-slider-button-next{
    right: 4px;
}
.works-detail-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-detail-slider-button-prev:hover,
    .works-detail-slider-button-next:hover,
    .works-detail-slider-button-prev:active,
    .works-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .works-detail-slider-button-prev:active,
    .works-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .works-detail-slider-button-prev:active,
    .works-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


/*/////////////////////////////////////////////////////////////////
  support.html
/////////////////////////////////////////////////////////////////*/

/*  support-flow
------------------------------------------------------------------*/
.support-flow{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 12px;
}
.support-flow > li{
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #80868c;
}
.support-flow li .icon{
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}
.support-flow li .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.support-flow li .num{
    margin-bottom: 4px;
    font-family: var(--en-font);
    font-size: .75rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.support-flow li .title{
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:575px){
    .support-flow li .icon{
        width: 40px;
        height: 40px;
    }
}
/*  support-history
------------------------------------------------------------------*/
.support-history{
    width: 100%;
}
.support-history th,
.support-history td{
    padding: 1em;
    border: 1px solid #ccc;
    line-height: 1.5;
}
.support-history th{
    background: #efefef;
    text-align: center;
    white-space: nowrap;
}
@media screen and (max-width:575px){
    .support-history th,
    .support-history td{
        font-size: .75rem;
    }
}


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

/*  company-map
------------------------------------------------------------------*/
.company-map{
    height: 360px;
    margin-bottom: 30px;
    overflow: hidden;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:575px){
    .company-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

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

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px 20px;
    background: var(--primary-light-color);
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}
.contact-tel-box .num{
    margin-bottom: 12px;
    font-family: var(--en-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1;
}
.contact-tel-box .time{
    font-size: .875rem;
    line-height: 1;
}
@media screen and (max-width:575px){
    .contact-tel-box{
        padding: 30px 16px;
    }
    .contact-tel-box .title{
        font-size: 1.25rem;
    }
    .contact-tel-box .num{
        font-size: 2rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}