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

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するための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;
    margin-top: 40px;
    padding-bottom: 20px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:767px){
    .home-hero{
        margin-top: 20px;
    }
}
/*  home-hero-container
------------------------------------------------------------------*/
.home-hero-container{
    position: relative;
    padding: 0 30px;
}
@media screen and (max-width:767px){
    .home-hero-container{
        position: relative;
        padding: 0 15px;
    }
}

/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 1;
}
.home-hero-slider .swiper-slide{
    transform: scale(1);
}
.home-hero-slider .swiper-slide,
.home-hero-slider .swiper-slide img{
    transition: 0s ease-out;
}
.home-hero-slider.is-load .swiper-slide,
.home-hero-slider.is-load .swiper-slide img{
    transition: .8s ease-out;
}
.home-hero-slider .swiper-slide.swiper-slide-prev,
.home-hero-slider .swiper-slide.swiper-slide-next{
    transform: scale(0.9);
}
.home-hero-slider .swiper-slide.swiper-slide-prev img,
.home-hero-slider .swiper-slide.swiper-slide-next img{
    filter: blur(10px);
}

/*  home-hero-image
------------------------------------------------------------------*/
.home-hero-image{
    height: 730px;
    border-radius: 20px;
    overflow: hidden;
}
.home-hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-hero-image{
        height: 600px;
    } 
}
@media screen and (max-width:767px){
    .home-hero-image{
        height: calc(100vh - 80px);
        height: calc(100svh - 80px);
        min-height: 500px;
    }
}

/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 2;
}
@media screen and (max-width:767px){
    .home-hero-detail{
        left: 6vw;
        bottom: 6vw;
    }
}

/*  home-hero-illust
------------------------------------------------------------------*/
.home-hero-illust{
    position: absolute;
    right: -30px;
    bottom: -10px;
    z-index: 2;
}
@media screen and (max-width:767px){
    .home-hero-illust{
        right: -10px;
        width: 30%;
    }
}

/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin-bottom: 30px;
    font-size: 3.75rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.home-hero-title span{
    display: block;
    width: fit-content;
    padding: 6px;
    background: #fff;
}
@media screen and (max-width:1399px){
    .home-hero-title{
        font-size: 3rem;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        font-size: 8vw;
    }
}

/*  home-hero-caption
------------------------------------------------------------------*/
.home-hero-caption{
    width: fit-content;
    padding: 6px;
    background: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width:1399px){
    .home-hero-caption{
        font-size: 1rem;
    }
}
@media screen and (max-width:1399px){
    .home-hero-caption{
        font-size: 2.75vw;
    }
}


/*------------------------------------------------------------------
  home-introduction
------------------------------------------------------------------*/

/*  home-introduction
------------------------------------------------------------------*/
.home-introduction{
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-introduction{ padding: 120px 0; }
}
@media screen and (max-width:1199px){
    .home-introduction{ padding: 80px 0; }
}
@media screen and (max-width:767px){
    .home-introduction{ padding: 60px 0; }
}

/*  home-introduction-inner
------------------------------------------------------------------*/
.home-introduction-inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 60px;
    max-width: 1700px;
    padding: 0 60px;
}
@media screen and (max-width:991px){
    .home-introduction-inner{
        flex-direction: column-reverse;
        row-gap: 40px;
        padding: 0 6vw;
    }
}

/*  home-introduction-photos
------------------------------------------------------------------*/
.home-introduction-photos{
    position: relative;
    width: 809px;
    aspect-ratio: 809 / 591;
    z-index: 1;
}
.home-introduction-photos .photo-area01{
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
}
.home-introduction-photos .photo-area01 .photo{
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}
.home-introduction-photos .photo-area02{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    z-index: 1;
}
.home-introduction-photos .photo-area02 .photo{
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}
.home-introduction-photos .illust01{
    position: absolute;
    left: -4%;
    top: calc(100% - 10%);
    width: 40%;
    z-index: 2;
}
.home-introduction-photos .illust02{
    position: absolute;
    right: -6%;
    bottom: calc(100% - 8%);
    width: 31%;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-introduction-photos{
        width: 100%;
    }
}

/*  home-introduction-detail
------------------------------------------------------------------*/
.home-introduction-detail{
    position: relative;
    flex-shrink: 0;
    width: 570px;
    padding-top: 30px;
    z-index: 1;
}
.home-introduction-detail::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 155%;
    aspect-ratio: 889 / 678;
    background: url(../images/home/introduction-bg.png) no-repeat center / contain;
    white-space: nowrap;
    content: "";
    z-index: -1;
}
.home-introduction-detail .text{
    text-align: justify;
}
@media screen and (max-width:1399px){
    .home-introduction-detail{
        width: 460px;
        padding-top: 10px;
    }
}
@media screen and (max-width:991px){
    .home-introduction-detail{
        width: 100%;
        padding-top: 0;
    }
    .home-introduction-detail::after{
        top: -60px;
        transform: translateX(-50%);
        width: 110%;
    }
}

/*  home-introduction-title
------------------------------------------------------------------*/
.home-introduction-title{
    margin-bottom: 1.25em;
    font-size: 2.5rem;
    font-weight: bold;
}
.home-introduction-title .en{
    margin-bottom: 1em;
    font-family: var(--en-font);
    font-size: .5em;
    color: var(--primary-color);
    line-height: 1;
}
.home-introduction-title .jp{
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-introduction-title{
        font-size: 2rem;
    }
}
@media screen and (max-width:575px){
    .home-introduction-title{
        font-size: 1.5rem;
        text-align: center;
    }
}

/*------------------------------------------------------------------
  home-merit
------------------------------------------------------------------*/

/*  home-merit
------------------------------------------------------------------*/
.home-merit{
    position: relative;
    padding: 120px 0;
    background: var(--primary-light-color);
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-merit{ padding: 80px 0; }
}
@media screen and (max-width:767px){
    .home-merit{ padding: 60px 0; }
}

/*  home-merit-list
------------------------------------------------------------------*/
.home-merit-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 90px;
    margin-top: 90px;
}
@media screen and (max-width:1399px){
    .home-merit-list{
        column-gap: 20px;
    }
}
@media screen and (max-width:1199px){
    .home-merit-list{
        grid-template-columns: repeat(2, 1fr);
        row-gap: 60px;
        margin-top: 75px;
    }
}
@media screen and (max-width:767px){
    .home-merit-list{
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

/*  home-merit-list-item
------------------------------------------------------------------*/
.home-merit-list-item{
    position: relative;
    padding: 50px 40px;
    background: #fff;
    border-radius: 10px;
    z-index: 1;
}
.home-merit-list-item .num{
    position: absolute;
    top: -.5em;
    left: 15px;
    font-family: var(--en-font);
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    z-index: 1;
}
.home-merit-list-item .en{
    position: absolute;
    bottom: calc(100% + 4px);
    right: 5px;
    font-family: var(--en-font);
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    z-index: 1;
}
.home-merit-list-item .image{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 30px;
}
.home-merit-list-item .image img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.home-merit-list-item .title{
    margin-bottom: 1em;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
.home-merit-list-item .text{
    color: #4d4a5c;
    line-height: 1.8;
    text-align: justify;
}
@media screen and (max-width:1399px){
    .home-merit-list-item{
        padding: 40px 30px;
    }
    .home-merit-list-item .title{
        font-size: 1.375rem;
    }
}


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

/*  home-service
------------------------------------------------------------------*/
.home-service{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-service{ padding: 80px 0; }
}
@media screen and (max-width:767px){
    .home-service{ padding: 80px 0 60px; }
}
/*  home-service-treat
------------------------------------------------------------------*/
.home-service-treat{
    position: absolute;
    top: 0;
    left: -100px;
    display: flex;
    flex-wrap: nowrap;
    z-index: -1;
}
.home-service-treat > div{
    padding-right: .25em;
    margin-top: -.075em;
    font-family: var(--en-font);
    font-size: 200px;
    font-weight: bold;
    color: #efeef5;
    white-space: nowrap;
    line-height: .8;
    animation: LoopSlideLeft 30s linear infinite;
}
@media screen and (max-width:1399px){
    .home-service-treat > div{
        font-size: 140px;
    }
}
@media screen and (max-width:991px){
    .home-service-treat > div{
        font-size: 100px;
    }
}

/*  home-service-inner
------------------------------------------------------------------*/
.home-service-inner{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .home-service-inner{
        column-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-service-inner{
        flex-direction: column;
        row-gap: 40px;
    }
}

/*  home-service-detail
------------------------------------------------------------------*/
.home-service-detail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 0;
    width: 570px;
    padding: 30px 0;
}
@media screen and (max-width:1399px){
    .home-service-detail{
        width: 450px;
    }
}
@media screen and (max-width:991px){
    .home-service-detail{
        width: 320px;
    }
}
@media screen and (max-width:767px){
    .home-service-detail{
        display: block;
        width: 100%;
        padding: 0;
    }
}

/*  home-service-image
------------------------------------------------------------------*/
.home-service-image{
    position: relative;
    width: 762px;
    z-index: 1;
}
.home-service-image .photo{
    border-radius: 20px;
    overflow: hidden;
}
.home-service-image .photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-service-image .illust{
    position: absolute;
    right: -30px;
    bottom: -10px;
    width: 249px;
    height: auto;
    z-index: 2;
}
.home-service-image .illust img{
    width: 100%;
    height: auto;
}
@media screen and (max-width:767px){
    .home-service-image{
        width: 100%;
    }
    .home-service-image .illust{
        right: -10px;
        width: 40%;
    }
}


/*------------------------------------------------------------------
  home-environment
------------------------------------------------------------------*/

/*  home-environment
------------------------------------------------------------------*/
.home-environment{
    position: relative;
    padding: 120px 0;
    background: var(--primary-light-color);
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-environment{ padding: 80px 0; }
}
@media screen and (max-width:767px){
    .home-environment{ padding: 60px 0; }
}

/*  home-environment-list
------------------------------------------------------------------*/
.home-environment-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    padding-top: 30px;
}
@media screen and (max-width:1399px){
    .home-environment-list{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .home-environment-list{
        grid-template-columns: 1fr;
        row-gap: 60px;
        padding-top: 20px;
    }
}

/*  home-environment-list-item
------------------------------------------------------------------*/
.home-environment-list-item{
    position: relative;
    padding: 60px 40px 40px;
    background: #fff;
    border-radius: 16px;
    z-index: 1;
}
.home-environment-list-item .en{
    position: absolute;
    top: -.5em;
    left: 40px;
    font-family: var(--en-font);
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    z-index: 2;
}
.home-environment-list-item .image img{
    width: 100%;
    height: auto;
    aspect-ratio: 55 / 31;
    object-fit: cover;
    border-radius: 8px;
}
.home-environment-list-item .illust{
    position: absolute;
    top: -40px;
    right: 20px;
    height: 145px;
    z-index: 1;
}
.home-environment-list-item .illust img{
    width: auto;
    height: 100%;
}
@media screen and (max-width:1399px){
    .home-environment-list-item{
        padding: 50px 30px 30px;
    }
    .home-environment-list-item .en{
        left: 30px;
        font-size: 2.5rem;
    }
    .home-environment-list-item .illust{
        top: -25px;
        right: 15px;
        height: 100px;
    }
}
@media screen and (max-width:767px){
    .home-environment-list-item{
        padding: 40px 12px 25px;
    }
    .home-environment-list-item .en{
        left: 12px;
        font-size: 2rem;
    }
    .home-environment-list-item .illust{
        top: -20px;
        right: 10px;
        height: 70px;
    }
}
/*  home-environment-list-item head
------------------------------------------------------------------*/
.home-environment-list-item .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    margin: 30px 0 10px;
}
.home-environment-list-item .head .title{
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.4;
}
@media screen and (max-width:1399px){
    .home-environment-list-item .head .title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:767px){
    .home-environment-list-item .head{
        flex-wrap: wrap;
        row-gap: 15px;
        margin: 20px 0 10px;
    }
    .home-environment-list-item .head .title{
        font-size: 1.25rem;
    }
}

/*  home-environment-btn
------------------------------------------------------------------*/
.home-environment-btn{
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    height: 3em;
    padding: 0 3em;
    background: var(--primary-color);
    border-radius: 2em;
    font-size: .875rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.home-environment-btn::after{
    position: absolute;
    top: 50%;
    right: 1em;
    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-environment-btn:hover{
        background: var(--accent-color);
    }
    .home-environment-btn:hover::after{
        right: .5em;
    }
}
@media (hover:none) {
    .home-environment-btn:active{
        background: var(--accent-color);
    }
    .home-environment-btn:active::after{
        right: .5em;
    }
}
@media screen and (max-width:767px){
    .home-environment-btn{
        font-size: .75rem;
    }
}

/*  home-environment-sublist
------------------------------------------------------------------*/
.home-environment-sublist li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    padding: 15px 0;
    border-bottom: 1px dashed #999;
}
.home-environment-sublist li .title{
    flex: 1;
    min-width: 0;
    font-weight: bold;
    line-height: 1.4;
}
.home-environment-sublist li .title::before{
    display: inline-block;
    margin-right: .75em;
    content: "－";
    color: var(--primary-color);
}
@media screen and (max-width:767px){
    .home-environment-sublist li{
        column-gap: 10px;
        padding: 12px 0;
        font-size: .875rem;
    }
}

/*  home-environment-sublist-btn
------------------------------------------------------------------*/
.home-environment-sublist-btn{
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    height: 3em;
    padding: 0 2em;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    font-size: .75rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.home-environment-sublist-btn::after{
    position: absolute;
    top: 50%;
    right: .75em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-environment-sublist-btn:hover{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .home-environment-sublist-btn:hover::after{
        right: .25em;
    }
}
@media (hover:none) {
    .home-environment-sublist-btn:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .home-environment-sublist-btn:active::after{
        right: .25em;
    }
}
@media screen and (max-width:767px){
    .home-environment-sublist-btn{
        font-size: .625rem;
    }
}


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

/*  home-news
------------------------------------------------------------------*/
.home-news{
    position: relative;
    padding: 120px 0;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-news{ padding: 80px 0; }
}
@media screen and (max-width:767px){
    .home-news{ padding: 60px 0; }
}

/*  home-news-head
------------------------------------------------------------------*/
.home-news-head{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 40px;
    margin-bottom: 30px;
}
@media screen and (max-width:767px){
    .home-news-head{
        flex-direction: column;
        justify-content: initial;
        align-items: initial;
        flex-wrap: initial;
        row-gap: 20px;
        margin-bottom: 20px;
    }
}

/*  home-news-category-list
------------------------------------------------------------------*/
.home-news-category-list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
@media screen and (max-width:575px){
    .home-news-category-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}

/*  home-news-category-btn
------------------------------------------------------------------*/
.home-news-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: .7em 1.5em;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    font-size: .875rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
@media screen and (max-width:767px){
    .home-news-category-btn{
        min-width: initial;
        padding: .6em 1.2em;
        font-size: .75rem;
    }
}
.home-news-category-btn.active{
    background: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-news-category-btn:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .home-news-category-btn:active{
        background: var(--primary-color);
        color: #fff;
    }
}

/*  home-news-list
------------------------------------------------------------------*/
.home-news-list{
    display: none;
    margin-bottom: 60px;
    border-top: 1px solid #ccc;
}
.home-news-list.is-show{
    display: block;
}
@media screen and (max-width:767px){
    .home-news-list{
        margin-bottom: 40px;
    }
}


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

/*  service-menu-list
------------------------------------------------------------------*/
.service-menu-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media screen and (max-width:1199px){
    .service-menu-list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:767px){
    .service-menu-list{
        grid-template-columns: 1fr;
    }
}

/*  service-menu-list-item
------------------------------------------------------------------*/
.service-menu-list-item{
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(5, 1, 30, .08);
    overflow: hidden;
}
.service-menu-list-item .image{
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.service-menu-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-menu-list-item .body{
    padding: 20px 25px 25px;
}
.service-menu-list-item .head{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: .5em;
}
.service-menu-list-item .head .en{
    font-family: var(--en-font);
    font-size: .8125rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.service-menu-list-item .head .num{
    font-family: var(--en-font);
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.service-menu-list-item .title{
    margin-bottom: .5em;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.4;
}
.service-menu-list-item .text{
    line-height: 1.8;
}

/*/////////////////////////////////////////////////////////////////
  environment.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  environment-merit
------------------------------------------------------------------*/
/*  environment-merit-list
------------------------------------------------------------------*/
.environment-merit-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 60px;
    margin-top: 90px;
}
@media screen and (max-width:1399px){
    .environment-merit-list{
        column-gap: 20px;
    }
}
@media screen and (max-width:1199px){
    .environment-merit-list{
        grid-template-columns: repeat(2, 1fr);
        margin-top: 75px;
    }
}
@media screen and (max-width:767px){
    .environment-merit-list{
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}

/*  environment-merit-list-item
------------------------------------------------------------------*/
.environment-merit-list-item{
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(5, 1, 30, .08);
    z-index: 1;
}
.environment-merit-list-item .num{
    position: absolute;
    top: -.5em;
    left: 15px;
    font-family: var(--en-font);
    font-size: 4.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow:
        -1px -1px 0 #fff,
        0px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px  0px 0 #fff,
        1px  0px 0 #fff,
        -1px  1px 0 #fff,
        0px  1px 0 #fff,
        1px  1px 0 #fff;
    line-height: 1;
    z-index: 1;
}
.environment-merit-list-item .en{
    position: absolute;
    bottom: calc(100% + 4px);
    right: 5px;
    font-family: var(--en-font);
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    z-index: 1;
}
.environment-merit-list-item .image{
    aspect-ratio: 16 / 9;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}
.environment-merit-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.environment-merit-list-item .body{
    padding: 40px;
}
.environment-merit-list-item .title{
    margin-bottom: .5em;
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}
.environment-merit-list-item .catch{
    margin-bottom: .75em;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.4;
}
.environment-merit-list-item .text{
    color: #4d4a5c;
    line-height: 1.8;
    text-align: justify;
}
@media screen and (max-width:1199px){
    .environment-merit-list-item .num{
        font-size: 3.5rem;
    }
    .environment-merit-list-item .title{
        font-size: 1.5rem;
    }
    .environment-merit-list-item .catch{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:991px){
    .environment-merit-list-item .body{
        padding: 30px 20px;
    }
    .environment-merit-list-item .title{
        font-size: 1.25rem;
    }
    .environment-merit-list-item .catch{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .environment-merit-list-item .title{
        font-size: 1.125rem;
    }
}
/*------------------------------------------------------------------
  environment-interview
------------------------------------------------------------------*/

/*  environment-interview-card
------------------------------------------------------------------*/
.environment-interview-card{
    height: 100%;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
}
.environment-interview-card .head{
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 20px;
}
.environment-interview-card .year{
    margin-bottom: 8px;
    font-size: .875rem;
    color: #666;
    line-height: 1;
}
.environment-interview-card .title{
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.2;
}
.environment-interview-card .text{
    font-size: .9125rem;
    color: #4d4a5c;
    line-height: 1.8;
}
@media screen and (max-width:991px){
    .environment-interview-card{
        padding: 30px;
    }
}
@media screen and (max-width:575px){
    .environment-interview-card{
        padding: 30px 20px;
    }
}

/*------------------------------------------------------------------
  environment-oneday
------------------------------------------------------------------*/
/*  environment-oneday-box
------------------------------------------------------------------*/
.environment-oneday-box{
    position: relative;
    padding: 60px;
    background: var(--primary-light-color);
    border: 1px solid #a6a1c2;
    border-radius: 10px;
    z-index: 1;
}
.environment-oneday-box::after{
    position: absolute;
    top: 0;
    right: 10px;
    transform: translateY(-30%);
    width: 150px;
    aspect-ratio: 374 / 240;
    background: url(../images/environment/oneday.png) no-repeat center / contain;
    content: "";
    z-index: 1;
}
@media screen and (max-width:991px){
    .environment-oneday-box{
        padding: 36px 30px;
    }
    .environment-oneday-box::after{
        width: 100px;
    }
}
@media screen and (max-width:575px){
    .environment-oneday-box{
        padding: 36px 20px;
    }
    .environment-oneday-box::after{
        width: 80px;
    }
}

/*  environment-oneday-list
------------------------------------------------------------------*/
.environment-oneday-list{
    position: relative;
    padding-left: 60px;
}
.environment-oneday-list::before{
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 9px;
    width: 2px;
    background: #a6a1c2;
    content: "";
}
@media screen and (max-width:575px){
    .environment-oneday-list{
        padding-left: 30px;
    }
}

/*  environment-oneday-list-item
------------------------------------------------------------------*/
.environment-oneday-list-item{
    position: relative;
    padding-bottom: 30px;
}
.environment-oneday-list-item:last-child{
    padding-bottom: 0;
}
.environment-oneday-list-item::before{
    position: absolute;
    top: 0;
    left: -60px;
    width: 20px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    z-index: 1;
}
.environment-oneday-list-item .time{
    margin-bottom: .3em;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.environment-oneday-list-item .title{
    margin-bottom: .5em;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
}
.environment-oneday-list-item .text{
    color: #4d4a5c;
    line-height: 1.8;
}
@media screen and (max-width:575px){
    .environment-oneday-list-item::before{
        left: -30px;
    }
    .environment-oneday-list-item .title{
        font-size: 1.125rem;
    }
}



/*/////////////////////////////////////////////////////////////////
  recruit.html
/////////////////////////////////////////////////////////////////*/

/*  recruit-benefits-list
------------------------------------------------------------------*/
.recruit-benefits-list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 15px;
}
@media screen and (max-width:1199px){
    .recruit-benefits-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:991px){
    .recruit-benefits-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .recruit-benefits-list{
        gap: 8px;
    }
}
/*  recruit-benefits-item
------------------------------------------------------------------*/
.recruit-benefits-item{
    height: 100%;
    padding: 30px 15px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
}
.recruit-benefits-item .image{
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}
.recruit-benefits-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.recruit-benefits-item .caption{
    margin-bottom: .5em;
    font-family: var(--en-font);
    font-size: .875rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.recruit-benefits-item .text{
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:575px){
    .recruit-benefits-item{
        padding: 20px 15px;
    }
    .recruit-benefits-item .image{
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }
    .recruit-benefits-item .caption{
        font-size: .75rem;
    }
    .recruit-benefits-item .text{
        font-size: 1rem;
    }
}

/*------------------------------------------------------------------
  recruit-flow
------------------------------------------------------------------*/

/*  recruit-flow
------------------------------------------------------------------*/
.recruit-flow{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
    margin: 0 auto 60px;
}
@media screen and (max-width:1199px){
    .recruit-flow{
        column-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .recruit-flow{
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}

/*  recruit-flow-item
------------------------------------------------------------------*/
.recruit-flow-item{
    position: relative;
    padding: 50px 30px 40px;
    background: var(--primary-light-color);
    border-radius: 20px;
}
.recruit-flow-item::after{
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    content: "";
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary-light-color);
}
.recruit-flow-item:last-of-type:after{
    display: none;
}
.recruit-flow-item .icon{
    width: 200px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 30px;
}
.recruit-flow-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.recruit-flow-item .title{
    margin-bottom: 20px;
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.recruit-flow-item .text{
    text-align: center;
    line-height: 1.8;
}
@media screen and (max-width:1399px){
    .recruit-flow-item .text{
        text-align: left;
    }
}
@media screen and (max-width:1199px){
    .recruit-flow-item{
        padding: 40px 24px 30px;
    }
    .recruit-flow-item::after{
        border-width: 16px;
    }
    .recruit-flow-item .icon{
        width: 150px;
        margin-bottom: 20px;
    }
    .recruit-flow-item .title{
        margin-bottom: 16px;
        font-size: 1.375rem;
    }
    .recruit-flow-item .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .recruit-flow-item::after{
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-color: var(--primary-light-color) transparent transparent transparent;
        border-width: 24px;
    }
}

/*/////////////////////////////////////////////////////////////////
  news-detail.html
/////////////////////////////////////////////////////////////////*/


/*  news-list
------------------------------------------------------------------*/
.news-list{
    margin-bottom: 60px;
    border-top: 1px solid #ccc;
}

/*  news-list-item
------------------------------------------------------------------*/
.news-list-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 25px;
    padding: 30px 10px;
    border-bottom: 1px solid #ccc;
    color: var(--black-color);
    z-index: 1;
}
.news-list-item::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-light-color);
    opacity: 0;
    transition: .4s ease-out;
    content: "";
    z-index: -1;
}
.news-list-item .detail{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    column-gap: 25px;
}
.news-list-item .date{
    color: #666;
    line-height: 1;
}
.news-list-item .category{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    min-height: 2.5em;
    padding: .25em .5em;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    font-size: .75rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
}
.news-list-item .title{
    flex: 1;
    line-height: 1.5;
}
.news-list-item .title .new{
    display: inline-block;
    margin-right: 1em;
    font-weight: bold;
    color: var(--red-color);
}
.news-list-item .arrow{
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: .2s ease-out;
    z-index: 1;
}
.news-list-item .arrow::after{
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: .75rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.news-list-item:hover::after{
        width: 100%;
        opacity: 1;
    }
    a.news-list-item:hover .arrow{
        background: var(--primary-color);
        transform: scale(.9);
    }
    a.news-list-item:hover .arrow::after{
        color: #fff;
    }
}
@media (hover:none) {
    a.news-list-item:active::after{
        width: 100%;
        opacity: 1;
    }
    a.news-list-item:active .arrow{
        background: var(--primary-color);
        transform: scale(.9);
    }
    a.news-list-item:active .arrow::after{
        color: #fff;
    }
}
@media screen and (max-width:767px){
    .news-list-item{
        flex-wrap: wrap;
        row-gap: 12px;
        padding: 20px 5px;
    }
    .news-list-item .detail{
        order: -1;
        width: 100%;
        column-gap: 15px;
    }
    .news-list-item .category{
        width: auto;
        padding: 0 .8em;
    }
    .news-list-item .title{
        font-size: .875rem;
    }
    .news-list-item .arrow{
        width: 30px;
    }
}
/*  news-section
------------------------------------------------------------------*/
.news-section{
    padding: 60px 0;
    overflow: hidden;
}
@media screen and (max-width:991px){
    .news-section{
        padding: 40px 0;
    }
}
/*  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;
    min-height: 2em;
    padding: .25em 2em;
    border-radius: 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%);
    }
}


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

/*  company-map
------------------------------------------------------------------*/
.company-map{
    height: 400px;
    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;
    }
}


/*/////////////////////////////////////////////////////////////////
  entry.html
/////////////////////////////////////////////////////////////////*/

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 16px;
    background: #fff;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
}
.contact-tel-box .num{
    display: grid;
    grid-template-columns: repeat(2,auto);
    align-items: baseline;
    justify-content: center;
    column-gap: 10px;
    row-gap: 4px;
    margin-bottom: 16px;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.contact-tel-box .num dt{
    font-size: 1.25rem;
}
.contact-tel-box .num dd{
    font-size: 1.75rem;
}
.contact-tel-box .time{
    font-size: .875rem;
    line-height: 1;
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num dd{
        font-size: 1.5rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}