@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;
    margin-bottom: 200px;
    z-index: 1;
}
@media screen and (max-width:1699px){
    .home-hero{
        margin-bottom: 12vw;
    }
}
@media screen and (max-width:991px){
    .home-hero{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-hero{
        margin-bottom: 16vw;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    z-index: 1;
}
.home-hero-slider .swiper-slide{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .05;
    content: "";
    z-index: 1;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:991px){
    .home-hero-slider .swiper-slide{
        aspect-ratio: 1 / 1;
    }
}
@media screen and (max-width:575px){
    .home-hero-slider .swiper-slide{
        height: 100vh;
        height: 100svh;
        min-height: 560px;
        aspect-ratio: initial;
    }
}
/*  home-hero-slider-image
------------------------------------------------------------------*/
.home-hero-slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide-active .home-hero-slider-image{
    animation: homeHeroSlide 1s ease-out forwards;
}
@keyframes homeHeroSlide {
    from{
        transform: scale(1.1);
    }
    to{
        transform: scale(1);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: 4vw;
    bottom: 5vw;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-hero-detail{
        bottom: 10vw;
        left: 0;
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .home-hero-detail{
        bottom: 8vw;
    }
}
/*  home-hero-caption
------------------------------------------------------------------*/
.home-hero-caption{
    margin-bottom: 30px;
    font-size: 4vw;
    font-weight: bold;
    font-feature-settings: "palt";
    color: #fff;
    line-height: 1.3;
}
.home-hero-caption.en{
    font-family: var(--en-font);
    font-size: 5vw;
}
.home-hero-caption .wrap{
    display: block;
    width: fit-content;
    overflow: hidden;
}
.home-hero-caption .inner{
    display: block;
    transform: translateY(100%);
}
.swiper-slide-active .home-hero-caption .inner{
    animation: homeHeroTitleEn .5s forwards .4s ease-out;
}
@keyframes homeHeroTitleEn {
    from{
        transform: translateY(100%);
    }
    to{
        transform: translateY(0);
    }
}
@media screen and (max-width:991px){
    .home-hero-caption{
        margin-bottom: .5em;
        font-size: min(6.5vw, 48px);
    }
    .home-hero-caption.en{
        font-family: var(--en-font);
        font-size: min(8vw, 64px);
    }
    .home-hero-caption .wrap{
        width: auto;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    opacity: 0;
    font-size: 1.125rem;
    color: #fff;
    line-height: 1;
}
.swiper-slide-active .home-hero-title{
    animation: homeHeroTitle .8s forwards .4s ease-out;
}
@keyframes homeHeroTitle {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media screen and (max-width:1699px){
    .home-hero-title{
        font-size: 1rem;
    }
}
@media screen and (max-width:1399px){
    .home-hero-title{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .home-hero-title{
        font-size: clamp(.875rem,3vw, 1.25rem);
        line-height: 1.5;
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    margin-bottom: 120px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        margin-bottom: 100px;
    }
}
@media print, screen and (max-width:991px){
    .home-about{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-about{
        margin-bottom: 60px;
    }
}
/*  home-about-top
------------------------------------------------------------------*/
.home-about-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 3vw;
    padding: 0 60px;
    margin-bottom: 180px;
}
@media screen and (max-width:1699px){
    .home-about-top{
        margin-bottom: 10vw;
    }
}
@media screen and (max-width:991px){
    .home-about-top{
        flex-direction: column;
        justify-content: initial;
        row-gap: 40px;
        padding: 0 6vw;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .home-about-top{
        margin-bottom: 40px;
    }
}
/*  home-about-top-detail
------------------------------------------------------------------*/
.home-about-top-detail{
    flex-shrink: 0;
}
/*  home-about-top-caption
------------------------------------------------------------------*/
.home-about-top-caption{
    margin-bottom: .75em;
    font-family: var(--en-font);
    font-size: 100px;
    font-weight: bold;
    line-height: 1.1;
}
.home-about-top-caption .wrap{
    display: block;
}
@media screen and (max-width:1699px){
    .home-about-top-caption{
        font-size: 6vw;
    }
}
@media screen and (max-width:991px){
    .home-about-top-caption{
        font-size: min(10.5vw,4.5rem);
        text-align: center;
    }
}
/*  home-about-top-title
------------------------------------------------------------------*/
.home-about-top-title{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:1699px){
    .home-about-top-title{
        font-size: 2vw;
    }
}
@media screen and (max-width:991px){
    .home-about-top-title{
        font-size: clamp(1.25rem,4vw,1.75rem);
        text-align: center;
    }
}
/*  home-about-top-image
------------------------------------------------------------------*/
.home-about-top-image{
    width: 680px;
    overflow: hidden;
}
.home-about-top-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1699px){
    .home-about-top-image{        
        width: auto;
    }
}
/*  home-about-bottom
------------------------------------------------------------------*/
.home-about-bottom{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding-left: 60px;
}
@media screen and (max-width:1199px){
    .home-about-bottom{
        flex-direction: column;
        row-gap: 50px;
        padding: 0 6vw;
    }
}
/*  home-about-bottom-detail
------------------------------------------------------------------*/
.home-about-bottom-detail{
    width: fit-content;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:1199px){
    .home-about-bottom-detail{
        width: 100%;
        padding: 0;
    }
}
/*  home-about-bottom-text
------------------------------------------------------------------*/
.home-about-bottom-text{
    font-size: 1.25rem;
    line-height: 2.5;
}
@media screen and (max-width:1699px){
    .home-about-bottom-text{
        font-size: max(1.2vw,1rem);
    }
}
@media screen and (max-width:991px){
    .home-about-bottom-text{
        text-align: center;
    }
}
@media screen and (max-width:767px){
    .home-about-bottom-text{
        font-size: .875rem;
        line-height: 2;
        text-align: left;
    }
}
/*  home-about-bottom-image
------------------------------------------------------------------*/
.home-about-bottom-image{
    position: relative;
    width: 820px;
    aspect-ratio: 105 / 80;
    z-index: 1;
}
.home-about-bottom-image .circle01{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    aspect-ratio: 1 / 1;
    border: 1px dashed #555;
    border-radius: 50%;
    transform: translate(-50%,-50%) rotate(0);
    z-index: 1;
    animation: homeAboutCircle01 60s linear infinite;
}
.home-about-bottom-image .circle02{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54%;
    aspect-ratio: 1 / 1;
    border: 1px dashed #555;
    border-radius: 50%;
    transform: translate(-50%,-50%) rotate(0);
    animation: homeAboutCircle02 60s linear infinite;
    z-index: 2;
}
.home-about-bottom-image .image01{
    position: absolute;
    top: 5%;
    right: 0;
    width: 58%;
    z-index: 3;
}
.home-about-bottom-image .image02{
    position: absolute;
    bottom: 1%;
    left: 0;
    width: 40%;
    z-index: 3;
}
.home-about-bottom-image .image03{
    position: absolute;
    top: 10%;
    left: 5%;
    width: 27%;
    z-index: 3;
}
.home-about-bottom-image .image04{
    position: absolute;
    bottom: 7%;
    right: 16%;
    width: 34%;
    z-index: 3;
}
@keyframes homeAboutCircle01 {
    from{
        transform: translate(-50%,-50%) rotate(0);
    }
    to{
        transform: translate(-50%,-50%) rotate(360deg);
    }
}
@keyframes homeAboutCircle02 {
    from{
        transform: translate(-50%,-50%) rotate(0);
    }
    to{
        transform: translate(-50%,-50%) rotate(-360deg);
    }
}
@media screen and (max-width:1699px){
    .home-about-bottom-image{        
        width: 50%;
    }
}
@media screen and (max-width:1199px){
    .home-about-bottom-image{
        max-width: 600px;     
        width: 100%;
    }
}

/*------------------------------------------------------------------
  home-example
------------------------------------------------------------------*/

/*  home-example
------------------------------------------------------------------*/
.home-example{
    position: relative;
    overflow: hidden;
    margin-bottom: 120px;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-example{
        margin-bottom: 100px;
    }
}
@media screen and (max-width:991px){
    .home-example{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-example{
        margin-bottom: 60px;
    }
}
/*  home-example-top
------------------------------------------------------------------*/
.home-example-top{
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
    line-height: 1;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-example-top{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:1199px){
    .home-example-top{
        margin-bottom: 60px;
    }
}
@media screen and (max-width:991px){
    .home-example-top{
        margin-bottom: 40px;
    }
}
/*  home-example-treat
------------------------------------------------------------------*/
.home-example-treat{
    display: flex;
    overflow: hidden;
}
.home-example-treat .one,
.home-example-treat .two{
    flex-shrink: 0;
    padding-left: 60px;
    line-height: 1;
}
.home-example-treat .one{
    animation: homeExampleLoop1 120s -60s linear infinite;
}
.home-example-treat .two{
    animation: homeExampleLoop2 120s linear infinite;
}
@keyframes homeExampleLoop1 {
    from{
        transform: translateX(100%);
    }
    to{
        transform: translateX(-100%);
    }
}
@keyframes homeExampleLoop2 {
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(-200%);
    }
}
@media screen and (max-width:1699px){
    .home-example-treat .one,
    .home-example-treat .two{
        width: 180vw;
    }
}
@media screen and (max-width:991px){
    .home-example-treat .one,
    .home-example-treat .two{
        width: 1800px;
    }
}
@media screen and (max-width:575px){
    .home-example-treat .one,
    .home-example-treat .two{
        animation-duration: 60s;
    }
    .home-example-treat .one{
        animation-delay: -30s;
    }
}
/*  home-example-title
------------------------------------------------------------------*/
.home-example-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.5;
    white-space: nowrap;
    text-align: center;
}
@media screen and (max-width:1699px){
    .home-example-title{
        font-size: max(3vw,1.5rem);
    }
}
/*  home-example-list
------------------------------------------------------------------*/
.home-example-list{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 12px;
}
.home-example-list > li{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.25em;
    padding: 0 .5em;
    border: 1px solid #aaa;
    font-size: 1.125rem;
    line-height: 1.2;
    text-align: center;
}
@media screen and (max-width:1699px){
    .home-example-list > li{
        font-size: 1rem;
    }
}
@media screen and (max-width:1399px){
    .home-example-list{
        grid-template-columns: repeat(4,1fr);
    }
}
@media screen and (max-width:991px){
    .home-example-list{
        grid-template-columns: repeat(3,1fr);
    }
    .home-example-list > li{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .home-example-list{
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}

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

/*  home-feature
------------------------------------------------------------------*/
.home-feature{
    position: relative;
    padding: 180px 0;
    margin-bottom: 120px;
    background: #222;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-feature{
        padding: 150px 0;
        margin-bottom: 100px;
    }
}
@media screen and (max-width:991px){
    .home-feature{
        padding: 120px 0 80px;
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-feature{
        padding: 100px 0 60px;
        margin-bottom: 60px;
    }
}
/*  home-feature-treat
------------------------------------------------------------------*/
.home-feature-treat{
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(22%,-32%);
    z-index: -1;
    animation: homeFeatureTreat 70s linear infinite;
}
@keyframes homeFeatureTreat {
    from{
        transform: translate(22%,-32%) rotate(0);
    }
    to{
        transform: translate(22%,-32%) rotate(360deg);
    }
}
@media screen and (max-width:991px){
    .home-feature-treat{
        width: 140vw;
        transform: translate(32%,-40%);
    }
    @keyframes homeFeatureTreat {
        from{
            transform: translate(32%,-40%) rotate(0);
        }
        to{
            transform: translate(32%,-40%) rotate(360deg);
        }
    }
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 60px;
}
@media screen and (max-width:991px){
    .home-feature-list{
        grid-template-columns: repeat(2,1fr);
        column-gap: 30px;
        row-gap: 40px;
    }
}
@media screen and (max-width:767px){
    .home-feature-list{
        grid-template-columns: 1fr;
    }
}
/*  home-feature-list-item
------------------------------------------------------------------*/
.home-feature-list-item{
    display: flex;
    align-items: center;
    column-gap: 60px;
}
.home-feature-list-item .image{
    flex-shrink: 0;
    width: 240px;
}
.home-feature-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-feature-list-item .body{
    flex: 1;
}
.home-feature-list-item .title{
    margin-bottom: .5em;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
.home-feature-list-item .title .num{
    display: inline-block;
    margin-right: .25em;
    font-family: var(--en-font);
    font-size: 1.875em;
    font-weight: normal;
    line-height: 1;
}
.home-feature-list-item .text{
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.8;
}
@media screen and (max-width:1699px){
    .home-feature-list-item .title{
        font-size: 1.875rem;
    }
    .home-feature-list-item .text{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:1399px){
    .home-feature-list-item{
        column-gap: 30px;
    }
    .home-feature-list-item .title{
        font-size: 1.75rem;
    }
    .home-feature-list-item .text{
        font-size: 1rem;
    }
}
@media screen and (max-width:1199px){
    .home-feature-list-item{
        column-gap: 20px;
    }
    .home-feature-list-item .image{
        width: 200px;
    }
    .home-feature-list-item .title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:991px){
    .home-feature-list-item{
        flex-direction: column;
        row-gap: 20px;
    }
    .home-feature-list-item .image{
        width: 100%;
    }
    .home-feature-list-item .title{
        font-size: 1.25rem;
    }
    .home-feature-list-item .title .num{
        font-size: 1.25em;
    }
    .home-feature-list-item .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .home-feature-list-item .title{
        font-size: 1.125rem;
    }
}

/*------------------------------------------------------------------
  home-products
------------------------------------------------------------------*/

/*  home-products
------------------------------------------------------------------*/
.home-products{
    margin-bottom: 120px;
}
@media screen and (max-width:1399px){
    .home-products{
        margin-bottom: 100px;
    }
}
@media screen and (max-width:991px){
    .home-products{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-products{
        margin-bottom: 60px;
    }
}
/*  home-products-list
------------------------------------------------------------------*/
.home-products-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 60px;
    margin-bottom: 80px;
}
@media screen and (max-width:1399px){
    .home-products-list{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .home-products-list{
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .home-products-list{
        grid-template-columns: 1fr;
        row-gap: 40px;
        margin-bottom: 40px;
    }
}
/*  home-products-box
------------------------------------------------------------------*/
.home-products-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-products-box .image{
    margin-bottom: 30px;
}
.home-products-box .title{
    margin-bottom: .75em;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
}
.home-products-box .text{
    margin-bottom: 30px;
    font-size: 1.125rem;
    line-height: 1.8;
}
.home-products-box .btnarea{
    margin-top: auto;
}
@media screen and (max-width:1399px){
    .home-products-box .title{
        font-size: 1.75rem;
    }
    .home-products-box .text{
        font-size: 1rem;
    }
}
@media screen and (max-width:1199px){
    .home-products-box .title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:991px){
    .home-products-box .title{
        font-size: 1.375rem;
    }
    .home-products-box .text{
        font-size: .875rem;
    }
}
/*  home-products-sublist
------------------------------------------------------------------*/
.home-products-sublist{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
@media screen and (max-width:1399px){
    .home-products-sublist{
        gap: 10px;
    }
}
@media screen and (max-width:991px){
    .home-products-sublist{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .home-products-sublist{
        grid-template-columns: 1fr;
    }
}
/*  home-products-subbox
------------------------------------------------------------------*/
.home-products-subbox{
    padding: 30px;
    background: #efefef;
}
.home-products-subbox .image{
    margin-bottom: 20px;
}
.home-products-subbox .head{
    margin-bottom: 20px;
}
.home-products-subbox .title{
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
.home-products-subbox .caption{
    font-size: .875rem;
    color: #555;
    text-align: center;
    line-height: 1.5;
}
.home-products-subbox .text{
    line-height: 1.8;
}
@media screen and (max-width:1399px){
    .home-products-subbox{
        padding: 24px 20px;
    }
    .home-products-subbox .head{
        margin-bottom: 12px;
    }
    .home-products-subbox .title{
        font-size: 1.375rem;
    }
    .home-products-subbox .caption{
        font-size: .8125rem;
    }
}
@media screen and (max-width:991px){
    .home-products-subbox .title{
        font-size: 1.25rem;
    }
    .home-products-subbox .caption{
        font-size: .75rem;
    }
}

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

/*  home-company
------------------------------------------------------------------*/
.home-company{
    padding: 160px 0 120px;
    margin-bottom: 120px;
    background: url(../images/home/company-bg.jpg) no-repeat center / cover;
}
@media screen and (max-width:1399px){
    .home-company{
        padding: 140px 0 100px;
        margin-bottom: 100px;
    }
}
@media screen and (max-width:991px){
    .home-company{
        padding: 110px 0 80px;
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-company{
        padding: 80px 0 60px;
        margin-bottom: 60px;
    }
}

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

/*  home-access
------------------------------------------------------------------*/
.home-access{
    margin-bottom: 120px;
}
@media screen and (max-width:1399px){
    .home-access{
        margin-bottom: 100px;
    }
}
@media screen and (max-width:991px){
    .home-access{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-access{
        margin-bottom: 60px;
    }
}
/*  home-access-head
------------------------------------------------------------------*/
.home-access-head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
    margin-bottom: 50px;
}
@media screen and (max-width:991px){
    .home-access-head{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .home-access-head{
        flex-direction: column;
        align-items: center;
        justify-content: initial;
        text-align: center;
    }
}
/*  home-access-detail
------------------------------------------------------------------*/
.home-access-detail{
    display: flex;
    flex-direction: column;
}
@media screen and (max-width:767px){
    .home-access-detail{
        align-items: center;
    }
}
/*  home-access-address
------------------------------------------------------------------*/
.home-access-address{
    margin-bottom: 1em;
    font-size: 1.125rem;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-access-address{
        font-size: 1rem;
    }
}
/*  home-access-list
------------------------------------------------------------------*/
.home-access-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: .5em;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-access-list{
        font-size: .875rem;
    }
}
/*  home-access-map
------------------------------------------------------------------*/
.home-access-map{
    height: 400px;
}
.home-access-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .home-access-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

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

/*  home-news
------------------------------------------------------------------*/
.home-news{
    position: relative;
    margin-bottom: 120px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-news{
        margin-bottom: 100px;
    }
}
@media screen and (max-width:991px){
    .home-news{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-news{
        margin-bottom: 60px;
    }
}
/*  home-news-wrapper
------------------------------------------------------------------*/
.home-news-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .home-news-wrapper{
        flex-direction: column;
        justify-content: initial;
        align-items: initial;
        margin-bottom: 40px;
    }
}
/*  home-news-titlearea
------------------------------------------------------------------*/
.home-news-titlearea{
    flex-shrink: 0;
}
/*  home-news-detail
------------------------------------------------------------------*/
.home-news-detail{
    width: 100%;
    max-width: 1110px;
}
/* home-news-list
------------------------------------------------------------------*/
.home-news-list{
    border-top: 1px solid #ccc;
}
/* home-news-list-item
------------------------------------------------------------------*/
.home-news-list-item{
    position: relative;
    display: block;
    padding: 1.5em 3em 1.5em 0;
    border-bottom: 1px solid #ccc;
    transition: .2s ease-out;
}
.home-news-list-item .detail{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 8px;
    margin-bottom: 8px;
}
.home-news-list-item .new{
    font-size: .875rem;
    color: var(--red-color);
    line-height: 1;
}
.home-news-list-item .date{
    font-size: .875rem;
    color: #555;
    line-height: 1;
}
.home-news-list-item .category{
    padding: .3em 1em;
    border: 1px solid var(--primary-color);
    background: #fff;
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
.home-news-list-item .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
    transition: .2s ease-out;
}
.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:991px){
    .home-news-list-item .detail{
        column-gap: 8px;
    }
    .home-news-list-item .new{
        font-size: .75rem;
    }
    .home-news-list-item .date{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .home-news-list-item{
        padding: 1.5em 0;
    }
    .home-news-list-item .arrow{
        display: none;
    }
}

/*/////////////////////////////////////////////////////////////////
  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;
    color: #555;
    line-height: 1;
}
.news-contents-detail .new{
    font-size: .875rem;
    font-weight: bold;
    color: var(--red-color);
    line-height: 1;
}
.news-contents-detail .category{
    padding: .25em 1em;
    background: var(--primary-color);
    font-size: .75rem;
    color: #fff;
    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{
    height: 360px;
    margin-bottom: 30px;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .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: 30px 20px;
    background: #efefef;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 16px;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: .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: 2rem;
    }
    .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: 1.75rem;
    }
}