@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-watermark
------------------------------------------------------------------*/
.home-watermark{
    position: absolute;
    font-family: var(--en-font);
    font-size: clamp(72px, 9.4vw, 180px);
    font-weight: bold;
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/*  home-hero-container
------------------------------------------------------------------*/
.home-hero-container{
    position: relative;
}

/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    width: 100%;
    z-index: 1;
}

/*  home-hero-image
------------------------------------------------------------------*/
.home-hero-image{
    position: relative;
    height: calc(100svh - 90px);
    max-height: 860px;
    min-height: 420px;
    overflow: hidden;
    z-index: 1;
}
.home-hero-image::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(27, 90, 69, .88) 0%,
        rgba(27, 90, 69, .55) 30%,
        rgba(27, 90, 69, .28) 55%,
        rgba(27, 90, 69, .08) 80%,
        rgba(27, 90, 69, 0) 95%);
    content: "";
    z-index: 1;
}
.home-hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide.swiper-slide-active .home-hero-image img,
.swiper-slide.swiper-slide-duplicate-active .home-hero-image img,
.swiper-slide.swiper-slide-prev .home-hero-image img{
    animation: homeHeroSlide 7s linear 0s normal both;
}
@keyframes homeHeroSlide {
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.1);
    }
}
@media screen and (max-width:767px){
    .home-hero-image{
        height: calc(100svh - 60px);
        min-height: 480px;
    }
    .home-hero-image::after{
        background: linear-gradient(180deg,
            rgba(27, 90, 69, 0) 0%,
            rgba(27, 90, 69, .45) 60%,
            rgba(27, 90, 69, .75) 100%);
    }
}

/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    top: 50%;
    left: 6vw;
    transform: translateY(-50%);
    padding-right: 6vw;
    color: #fff;
    z-index: 2;
}
@media screen and (max-width:767px){
    .home-hero-detail{
        top: initial;
        bottom: 50px;
        transform: initial;
    }
}

/*  home-hero-caption
------------------------------------------------------------------*/
.home-hero-caption{
    margin-bottom: 30px;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--accent-color);
    letter-spacing: .15em;
    line-height: 1;
}
@media screen and (max-width:991px){
    .home-hero-caption{
        margin-bottom: 20px;
    }
}
@media screen and (max-width:575px){
    .home-hero-caption{
        margin-bottom: 12px;
        font-size: .75rem;
    }
}

/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: 25px;
    font-size: 3.375rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.55;
}
.home-hero-title .accent{
    color: var(--accent-color);
}
@media screen and (max-width:1399px){
    .home-hero-title{
        font-size: 2.75rem;
    }
}
@media screen and (max-width:991px){
    .home-hero-title{
        font-size: 2rem;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        font-size: 7vw;
    }
}

/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    font-size: 1.125rem;
    color: #cccccc;
}
@media screen and (max-width:1399px){
    .home-hero-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-hero-text{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .home-hero-text{
        font-size: .75rem;
    }
}


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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    z-index: 1;
}
.home-about::before{
    position: absolute;
    top: 0;
    left: 0;
    width: min(842px, 44%);
    height: 100%;
    background: url(../images/home/about-bg.jpg) no-repeat center / cover;
    content: "";
    z-index: -2;
}
.home-about::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-color);
    clip-path: polygon(43.9% 0, 100% 0, 100% 100%, 38.5% 100%);
    content: "";
    z-index: -1;
}
.home-about .home-watermark{
    top: 60px;
    right: 0;
    color: #e5e6e2;
}
.home-about .container{
    position: relative;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-about{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-about{
        padding: 80px 0 40px;
    }
    .home-about::before{
        display: none;
    }
    .home-about::after{
        clip-path: initial;
    }
    .home-about .home-watermark{
        top: 30px;
        right: 50%;
        transform: translateX(50%);
    }
}

/*  home-about-inner
------------------------------------------------------------------*/
.home-about-inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 60px;    
}
@media screen and (max-width:1199px){
    .home-about-inner{
        column-gap: 30px;    
    }
}
@media screen and (max-width:991px){
    .home-about-inner{
        flex-direction: column-reverse;
        row-gap: 40px;
    }
}
/*  home-about-photos
------------------------------------------------------------------*/
.home-about-photos{
    position: relative;
    width: 711px;
    aspect-ratio: 711 / 516;
    z-index: 2;
}
.home-about-photos .photo01{
    position: absolute;
    top: 0;
    left: 0;
    width: 89.9%;
    overflow: hidden;
}
.home-about-photos .photo02{
    position: absolute;
    top: 59.5%;
    left: 55.8%;
    width: 44.2%;
    overflow: hidden;
}
.home-about-photos img{
    width: 100%;
    height: auto;
}
@media screen and (max-width:991px){
    .home-about-photos{
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }
}

/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    width: 44.7%;
}
@media screen and (max-width:1199px){
    .home-about-detail{
        width: 55%;
    }
}
@media screen and (max-width:991px){
    .home-about-detail{
        width: 100%;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 2em;
    text-align: justify;
}

/*------------------------------------------------------------------
  home-strength
------------------------------------------------------------------*/

/*  home-strength
------------------------------------------------------------------*/
.home-strength{
    position: relative;
    padding: 150px 0;
    background: var(--primary-dark-color);
    overflow: hidden;
    z-index: 1;
}
.home-strength .home-watermark{
    top: 90px;
    left: 0;
    color: rgba(255, 255, 255, .09);
}
.home-strength .container{
    position: relative;
    z-index: 1;
}
.home-strength .title-english .jp{
    color: #fff;
}
@media screen and (max-width:1199px){
    .home-strength{
        padding: 120px 0;
    }
    .home-strength .home-watermark{
        top: 70px;
    }
}
@media screen and (max-width:991px){
    .home-strength{
        padding: 100px 0 60px;
    }
    .home-strength .home-watermark{
        left: 50%;
        transform: translateX(-50%);
    }
}

/*  home-strength-list
------------------------------------------------------------------*/
.home-strength-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 55px;
}
@media screen and (max-width:1199px){
    .home-strength-list{
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
}

/*  home-strength-list-item
------------------------------------------------------------------*/
.home-strength-list-item{
    padding: 40px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid #82ac9f;
    border-radius: 6px;
}
.home-strength-list-item .head{
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 15px;
}
.home-strength-list-item .num{
    font-family: var(--en-font);
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
}
.home-strength-list-item .title{
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}
.home-strength-list-item .text{
    margin-left: 85px;
    color: #ccdfdb;
    line-height: 2;
    text-align: justify;
}
@media screen and (max-width:1399px){
    .home-strength-list-item{
        padding: 30px;
    }
    .home-strength-list-item .head{
        margin-bottom: 10px;
    }
    .home-strength-list-item .num{
        font-size: 2.75rem;
    }
    .home-strength-list-item .title{
        font-size: 1.375rem;
    }
    .home-strength-list-item .text{
        margin-left: 80px;
    }
}
@media screen and (max-width:575px){
    .home-strength-list-item{
        padding: 30px 20px;
    }
    .home-strength-list-item .head{
        column-gap: 10px;
    }
    .home-strength-list-item .num{
        font-size: 2rem;
    }
    .home-strength-list-item .title{
        font-size: 1.125rem;
    }
    .home-strength-list-item .text{
        margin-left: 0;
    }
}


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

/*  home-products
------------------------------------------------------------------*/
.home-products{
    position: relative;
    padding: 120px 0;
    background: var(--gray-color);
    overflow: hidden;
    z-index: 1;
}
.home-products .home-watermark{
    top: 50px;
    left: 0;
    color: #e5e6e2;
}
.home-products .container{
    position: relative;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-products{
        padding: 120px 0 80px;
    }
}
@media screen and (max-width:991px){
    .home-products{
        padding: 100px 0 60px;
    }
    .home-products .home-watermark{
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media screen and (max-width:767px){
}

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

/*  home-products-list
------------------------------------------------------------------*/
.home-products-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
@media screen and (max-width:1199px){
    .home-products-list{
        gap: 20px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:767px){
    .home-products-list{
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 40px;
        row-gap: 30px;
    }
}
/*  home-products-card
------------------------------------------------------------------*/
.home-products-card{
    display: block;
}
.home-products-card *{
    transition: .2s ease-out;
}
.home-products-card .image{
    margin-bottom: 20px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.home-products-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-products-card .title{
    text-align: center;
    line-height: 1.5;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-products-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
    .home-products-card:hover .title{
        color: var(--primary-color);
    }
}
@media screen and (max-width:767px){
    .home-products-card .image{
        margin-bottom: 12px;
    }
}


/*------------------------------------------------------------------
  home-facility
------------------------------------------------------------------*/

/*  home-facility
------------------------------------------------------------------*/
.home-facility{
    position: relative;
    padding: 100px 0 130px;
    overflow: hidden;
    z-index: 1;
}
.home-facility .home-watermark{
    bottom: 60px;
    left: 0;
    color: #eef0ec;
}
.home-facility .container{
    position: relative;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-facility{
        padding: 80px 0 100px;
    }
}
@media screen and (max-width:767px){
    .home-facility{
        padding: 100px 0 60px;
    }
    .home-facility .home-watermark{
        top: 70px;
        left: 50%;
        bottom: initial;
        transform: translateX(-50%);
    }
}

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

/*  home-facility-detail
------------------------------------------------------------------*/
.home-facility-detail{
    max-width: 615px;
    padding-top: 70px;
}
.home-facility-detail .text{
    margin-bottom: 3em;
    text-align: justify;
}
@media screen and (max-width:1199px){
    .home-facility-detail{
        padding-top: 20px;
    }
    .home-facility-detail .text{
        margin-bottom: 2em;
    }
}
@media screen and (max-width:767px){
    .home-facility-detail{
        max-width: initial;
        padding-top: 0;
    }
}

/*  home-facility-image
------------------------------------------------------------------*/
.home-facility-image{
    flex-shrink: 0;
    width: 47%;
    max-width: 696px;
    overflow: hidden;
}
.home-facility-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .home-facility-image{
        width: 100%;
        margin: 0 auto;
    }
}


/*/////////////////////////////////////////////////////////////////
  business.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  business-menu
------------------------------------------------------------------*/

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

/*  business-menu-list-item
------------------------------------------------------------------*/
.business-menu-list-item{
    height: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(20, 51, 44, .08);
    overflow: hidden;
}
.business-menu-list-item .image{
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.business-menu-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business-menu-list-item .body{
    padding: 25px 25px 30px;
}
.business-menu-list-item .head{
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: .75em;
}
.business-menu-list-item .num{
    font-family: var(--en-font);
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
}
.business-menu-list-item .title{
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--title-color);
    line-height: 1.4;
}
.business-menu-list-item .text{
    font-size: .9375rem;
    line-height: 1.9;
    text-align: justify;
}
@media screen and (max-width:575px){
    .business-menu-list-item .body{
        padding: 20px 20px 25px;
    }
}

/*------------------------------------------------------------------
  business-material
------------------------------------------------------------------*/

/*  business-material-list
------------------------------------------------------------------*/
.business-material-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 15px;
}
.business-material-list li{
    font-weight: bold;
}
@media screen and (max-width:991px){
    .business-material-list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:575px){
    .business-material-list{
        grid-template-columns: 1fr;
    }
}

/*------------------------------------------------------------------
  business-products
------------------------------------------------------------------*/

/*  business-products-list
------------------------------------------------------------------*/
.business-products-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.business-products-list .image{
    aspect-ratio: 3 / 2;
    margin-bottom: 12px;
    overflow: hidden;
}
.business-products-list .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business-products-list .title{
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}
@media screen and (max-width:1199px){
    .business-products-list{
        gap: 20px;
    }
}
@media screen and (max-width:767px){
    .business-products-list{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .business-products-list .title{
        font-size: .875rem;
    }
}

/*------------------------------------------------------------------
  business-flow
------------------------------------------------------------------*/

/*  business-flow-list
------------------------------------------------------------------*/
.business-flow-list{
    max-width: 900px;
    margin: 0 auto;
}
.business-flow-list > li{
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 30px;
    padding-bottom: 40px;
    z-index: 1;
}
.business-flow-list > li:last-child{
    padding-bottom: 0;
}
.business-flow-list > li::before{
    position: absolute;
    top: 64px;
    bottom: 0;
    left: 31px;
    width: 2px;
    background: var(--primary-color);
    opacity: .3;
    content: "";
    z-index: -1;
}
.business-flow-list > li:last-child::before{
    display: none;
}
.business-flow-list .num{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    font-family: var(--en-font);
    font-size: 1.375rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.business-flow-list .title{
    margin: .5em 0;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--title-color);
    line-height: 1.4;
}
.business-flow-list .text{
    text-align: justify;
}
@media screen and (max-width:767px){
    .business-flow-list > li{
        grid-template-columns: 48px 1fr;
        column-gap: 20px;
        padding-bottom: 30px;
    }
    .business-flow-list > li::before{
        top: 48px;
        left: 23px;
    }
    .business-flow-list .num{
        width: 48px;
        font-size: 1.125rem;
    }
    .business-flow-list .title{
        margin: .3em 0 .5em;
        font-size: 1.125rem;
    }
    .business-flow-list .text{
        font-size: .875rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  facilities.html
/////////////////////////////////////////////////////////////////*/


/*  facilities-slider
------------------------------------------------------------------*/
.facilities-slider{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.facilities-slider .swiper-slide{
    width: 100% !important;
}
.facilities-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.facilities-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.facilities-slider .caption{
    padding: .5em;
    background: #000;
    font-size: .75rem;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}
/*  facilities-thumb-slider
------------------------------------------------------------------*/
.facilities-thumb-slider{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.facilities-thumb-slider .swiper-wrapper{
    display: grid;
    grid-template-columns: repeat(8,1fr);
    gap: 4px;
}
.facilities-thumb-slider .swiper-slide{
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.facilities-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.facilities-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:575px){
    .facilities-thumb-slider .swiper-slide{
        width: 48px;
    }
}
/*  facilities-slider-button
------------------------------------------------------------------*/
.facilities-slider-button-prev,
.facilities-slider-button-next{
    position: absolute;
    top: 50%;
    width: 24px;
    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;
}
.facilities-slider-button-prev.swiper-button-disabled,
.facilities-slider-button-next.swiper-button-disabled{
    background: #ccc;
    color: #777;
    pointer-events: none;
}
.facilities-slider-button-prev{
    left: 4px;
}
.facilities-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
}
.facilities-slider-button-next{
    right: 4px;
}
.facilities-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .facilities-slider-button-prev:hover,
    .facilities-slider-button-next:hover,
    .facilities-slider-button-prev:active,
    .facilities-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .facilities-slider-button-prev:active,
    .facilities-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .facilities-slider-button-prev:active,
    .facilities-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


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

/*------------------------------------------------------------------
  company-greeting
------------------------------------------------------------------*/

/*  company-greeting-name
------------------------------------------------------------------*/
.company-greeting-name{
    color: var(--title-color);
    text-align: center;
    line-height: 1.4;
}
.company-greeting-name span{
    margin-left: 1em;
    font-size: 1.5em;
    font-weight: bold;
}
@media screen and (max-width:767px){
    .company-greeting-name{
        font-size: 1.125rem;
    }
}

/*------------------------------------------------------------------
  company-history
------------------------------------------------------------------*/

/*  company-history-list
------------------------------------------------------------------*/
.company-history-list{
    max-width: 800px;
    margin: 0 auto;
}
.company-history-list > li{
    position: relative;
    display: grid;
    grid-template-columns: 110px 1fr;
    column-gap: 40px;
    padding: 0 0 35px 34px;
    z-index: 1;
}
.company-history-list > li:last-child{
    padding-bottom: 0;
}
.company-history-list > li::before{
    position: absolute;
    top: .5em;
    left: 0;
    width: 14px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    z-index: 1;
}
.company-history-list > li::after{
    position: absolute;
    top: .5em;
    bottom: -.5em;
    left: 6px;
    width: 2px;
    background: var(--primary-color);
    opacity: .3;
    content: "";
    z-index: -1;
}
.company-history-list > li:last-child::after{
    display: none;
}
.company-history-list .year{
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.6;
}
.company-history-list .text{
    line-height: 1.6;
}
@media screen and (max-width:575px){
    .company-history-list > li{
        grid-template-columns: 1fr;
        row-gap: 4px;
        padding: 0 0 25px 28px;
    }
}

/*------------------------------------------------------------------
  company-access
------------------------------------------------------------------*/

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

