@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: 4 / 3;
    }
}
/*  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-about
------------------------------------------------------------------*/

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 120px 0;
    }
}
@media print, 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;
    column-gap: 30px;
}
@media screen and (max-width:1199px){
    .home-about-wrapper{
        column-gap: 20px;
    }
}
@media screen and (max-width:991px){
    .home-about-wrapper{
        flex-wrap: wrap;
        row-gap: 40px;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}
@media screen and (max-width:991px){
    .home-about-detail{
        width: 100%;
        padding: 0;
        order: 1;
    }
}
/*  home-about-title
------------------------------------------------------------------*/
.home-about-title{
    margin-bottom: 1em;
    font-size: 3.75rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
}
@media screen and (max-width:1399px){
    .home-about-title{
        font-size: 3.25rem;
    }
}
@media screen and (max-width:1199px){
    .home-about-title{
        font-size: 2.75rem;
    }
}
@media screen and (max-width:575px){
    .home-about-title{
        font-size: 2.25rem;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    font-size: 1.125rem;
    line-height: 2.5;
    text-align: center;
}
@media screen and (max-width:1399px){
    .home-about-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:1199px){
    .home-about-text{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .home-about-text{
        line-height: 2;
        text-align: left;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image1,
.home-about-image2{
    overflow: hidden;
}
.home-about-image1 img,
.home-about-image2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .home-about-image1,
    .home-about-image2{
        flex: 1;
    }
    .home-about-image1{
        order: 2;
    }
    .home-about-image2{
        order: 3;
    }
}

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

/*  home-feature
------------------------------------------------------------------*/
.home-feature{
    position: relative;
    padding: 150px 0;
    background: url(../images/home-feature-bg.jpg) no-repeat center / cover;
    z-index: 1;
}
@media print, screen and (max-width:991px){
    .home-feature{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-feature{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-feature{
        padding: 60px 0;
    }
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
}
@media screen and (max-width:1399px){
    .home-feature-list{
        column-gap: 16px;
    }
}
@media screen and (max-width:991px){
    .home-feature-list{
        column-gap: 10px;
        margin: 0 -4vw;
    }
}
@media screen and (max-width:767px){
    .home-feature-list{
        grid-template-columns: 1fr;
        row-gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
}
/*  home-feature-card
------------------------------------------------------------------*/
.home-feature-card{
    padding: 30px;
    background: #fff;
    border-radius: 20px;
}
.home-feature-card .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 24px;
    background: #fff;
    border-radius: 50%;
}
.home-feature-card .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-feature-card .title{
    margin-bottom: .5em;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
.home-feature-card .caption{
    margin-bottom: 1em;
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.5;
}
.home-feature-card .text{
    line-height: 1.7;
}
@media screen and (max-width:1199px){
    .home-feature-card{
        padding: 30px 24px;
    }
    .home-feature-card .title{
        font-size: 1.375rem;
    }
    .home-feature-card .caption{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-feature-card{
        padding: 24px 20px;
    }
    .home-feature-card .title{
        font-size: 1.25rem;
    }
    .home-feature-card .caption{
        font-size: 1rem;
    }
}

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

/*  home-service
------------------------------------------------------------------*/
.home-service{
    position: relative;
    padding: 150px 0;
    background: #f0f0f0;
    z-index: 1;
}
@media print, 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:767px){
    .home-service{
        padding: 60px 0;
    }
}
/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 52px;
}
@media screen and (max-width:1399px){
    .home-service-list{
        column-gap: 20px;
        row-gap: 40px;
    }
}
@media print, screen and (max-width:1199px){
    .home-service-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .home-service-list{
        column-gap: 12px;
        row-gap: 32px;
    }
}
@media screen and (max-width:575px){
    .home-service-list{
        grid-template-columns: repeat(2,1fr);
        column-gap: 8px;
        row-gap: 24px;
    }
}
/*  home-service-list-item
------------------------------------------------------------------*/
.home-service-list-item{
    display: block;
}
.home-service-list-item .image{
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
}
.home-service-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.home-service-list-item .caption{
    margin-bottom: 4px;
    font-family: var(--en-font);
    font-size: .875rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
}
.home-service-list-item .title{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}
.home-service-list-item .title small{
    display: block;
    font-size: .666em;
}
@media (hover:hover) {
    .home-service-list-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
}
@media print, screen and (max-width:1399px){
    .home-service-list-item .image{
        border-radius: 10px;
    }
    .home-service-list-item .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:991px){
    .home-service-list-item .caption{
        margin-bottom: 0;
        font-size: .75rem;
    }
    .home-service-list-item .title{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:575px){
    .home-service-list-item .image{
        margin-bottom: 12px;
        border-radius: 8px;
    }
    .home-service-list-item .title{
        font-size: 1rem;
    }
}

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

/*  home-news
------------------------------------------------------------------*/
.home-news{
    position: relative;
    padding: 100px 0;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-news{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-news{
        padding: 60px 0;
    }
}
/*  home-news-head
------------------------------------------------------------------*/
.home-news-head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
@media screen and (max-width:767px){
    .home-news-head{
        justify-content: center;
        margin-bottom: 30px;
        text-align: center;
    }
}
/* news-list
------------------------------------------------------------------*/
.home-news-list{
    border-top: 1px solid #ccc;
}
@media screen and (max-width:767px){
    .home-news-list{
        margin-bottom: 40px;
    }
}
/* news-list-item
------------------------------------------------------------------*/
.home-news-list-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 1.5em 3em 1.5em 0;
    border-bottom: 1px solid #ccc;
    line-height: 1.5;
    transition: .2s ease-out;
}
.home-news-list-item .date{
    flex-shrink: 0;
    color: #555;
}
.home-news-list-item .category{
    flex-shrink: 0;
    width: 12em;
    padding: .3em 1em;
    border: 1px solid var(--primary-color);
    font-size: .75rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
}
.home-news-list-item .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: .2s ease-out;
}
.home-news-list-item .new{
    display: inline-block;
    font-size: .875rem;
    color: var(--accent-color);
    margin-right: 1em;
}
.home-news-list-item .arrow{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    transition: .2s ease-out;
}
.home-news-list-item .arrow i{
    font-size: 10px;
    color: var(--primary-color);
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.home-news-list-item:hover{
        padding: 1.5em 3em 1.5em 1em;
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    a.home-news-list-item:hover .title{
        color: var(--primary-color);
    }
    a.home-news-list-item:hover .arrow{
        transform: translateY(-50%) scale(.8);
        background: var(--primary-color);
    }
    a.home-news-list-item:hover .arrow i{
        color: #fff;
    }
}
@media (hover:none) {
    a.home-news-list-item:active{
        padding: 1.5em 0;
        background: var(--primary-light-color);
        border-color: var(--primary-color);
    }
    a.home-news-list-item:active .title{
        color: var(--primary-color);
    }
    a.home-news-list-item:active .arrow{
        transform: translateY(-50%) scale(.8);
        background: var(--primary-color);
    }
    a.home-news-list-item:active .arrow i{
        color: #fff;
    }
}
@media screen and (max-width:767px){
    .home-news-list-item{
        flex-wrap: wrap;
        column-gap: 12px;
        row-gap: 12px;
        padding: 1.5em 0;
    }
    .home-news-list-item .date{
        font-size: .75rem;
    }
    .home-news-list-item .category{
        width: auto;
    }
    .home-news-list-item .title{
        width: 100%;
    }
    .home-news-list-item .arrow{
        display: none;
    }
}

/*------------------------------------------------------------------
  home-access
------------------------------------------------------------------*/

/*  home-access
------------------------------------------------------------------*/
.home-access{
    position: relative;
    margin-bottom: 100px;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-access{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-access{
        margin-bottom: 60px;
    }
}
/*  home-access-map
------------------------------------------------------------------*/
.home-access-map{
    height: 400px;
    margin-bottom: 80px;
}
.home-access-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:991px){
    .home-access-map{
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .home-access-map{
        height: auto;
        aspect-ratio: 4 / 3;
        margin-bottom: 40px;
    }
}
/*  home-access-body
------------------------------------------------------------------*/
.home-access-body{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 30px;
}
@media screen and (max-width:767px){
    .home-access-body{
        flex-direction: column;
        text-align: center;
    }
}
/*  home-access-list
------------------------------------------------------------------*/
.home-access-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: .5em;
}
.home-access-list > li{
    font-size: 1.25rem;
    line-height: 1.5;
}
.home-access-list > li > i{
    display: inline-block;
    margin-right: .5em;
    color: var(--primary-color);
}
@media screen and (max-width:1399px){
    .home-access-list > li{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:991px){
    .home-access-list > li{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .home-access-list > li{
        font-size: .875rem;
    }
}


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

/* news-category-list
------------------------------------------------------------------*/
.news-category-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 80px;
}
@media screen and (max-width:991px){
    .news-category-list{
        grid-template-columns: repeat(3,1fr);
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .news-category-list{
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 40px;
    }
}
/* news-category-btn
------------------------------------------------------------------*/
.news-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    padding: 0 1em;
    background: #ccc;
    color: #555;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.news-category-btn.active{
    background: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .news-category-btn:hover{
        background: var(--accent-color);
        color: #fff;
    }
}
@media (hover:none) {
    .news-category-btn:active{
        background: var(--accent-color);
        color: #fff;
    }
}
/* news-contents
------------------------------------------------------------------*/
.news-contents{
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
}
/* news-contents-detail
------------------------------------------------------------------*/
.news-contents-detail{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 8px;
}
.news-contents-detail .date{
    font-size: .875rem;
    line-height: 1;
}
.news-contents-detail .new{
    font-size: .875rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
}
.news-contents-detail .category{
    padding: .25em 1em;
    border: 1px solid var(--primary-color);
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:767px){
    .news-contents-detail .date{
        font-size: .75rem;
    }
    .news-contents-detail .new{
        font-size: .75rem;
    }
    .news-contents-detail .category{
        padding: .25em .75em;
    }
}

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

/* company-map ----------------------------------------*/
.company-map{
    aspect-ratio: 1006 / 714;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}