.environment__box{
    display: flex;
    gap: 100px;
}

.environment__left{
    aspect-ratio: 282 / 961;
    max-width: 282px;
    width: 100%;
    position: relative;
}

.environment__left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;

}

.environment__right{
    background: #F2F2F6;
    padding: 100px;
    padding-bottom: 50px;
    border-radius: 10px;
    max-width: 1118px;
    width: 100%;
}

.environment__items{
    margin-top: 50px;
}

.environment__item{
    display: flex;
    align-items: center;
}

.environment__item:nth-of-type(n + 2){
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #DADAE0;
}

.environment__item:nth-last-of-type(1){
    border-bottom: 1px solid #DADAE0;
    padding-bottom: 30px;
}


.environment__head{
    display: flex;
    flex-direction: column;
}

.environment__img{
    aspect-ratio: 240 / 150;
    max-width: 240px;
    width: 100%;
    position: relative;
    margin-right: 30px;
}

.environment__img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.environment__content{
    display: flex;
    width: calc(100% - 240px);
    justify-content: space-between;
    gap: 10px;
}

.environment__head{
    width: 100%;
}

.environment__number{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0.03em;
    color: #030049;
    
}

.environment__heading{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0.05em;
    color: #040315;
    margin-top: 10px;
}

.environment__text{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0.05em;
    color: #4F4F5C;
    margin-top: 16px;
}

.environment__body{
    max-width: 36px;
    width: 100%;
}

.environment__icon{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    max-width: 36px;
    width: 100%;
}

.environment__icon::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #DADAE0;
    left: 0;
    top: 0;
}

.environment__icon img{
    display: block;
}

@media (max-width: 1600px) {
    .environment__box{
        gap: calc((100 / 1600) * 100vw);
    }
    .environment__left{
        max-width: calc(282 / 1600 * 100vw);
    }

    .environment__right{
        background: #F2F2F6;
        padding: calc((100 / 1600) * 100vw);
        padding-bottom: calc((50 / 1600) * 100vw);
        max-width: calc((1118 / 1600) * 100vw);
    }
    
    .environment__items{
        margin-top: calc((50 / 1600) * 100vw);
    }
    
    .environment__item:nth-of-type(n + 2){
        padding-top: calc((30 / 1600) * 100vw);
        margin-top: calc((30 / 1600) * 100vw);
    }
    
    .environment__item:nth-last-of-type(1){
        padding-bottom: calc((30 / 1600) * 100vw);
    }
    
    .environment__img{
        max-width: calc((240 / 1600) * 100vw);
        margin-right: calc((30 / 1600) * 100vw);
    }
    
    .environment__content{
        width: calc(100% - (240 / 1600) * 100vw);
        gap: calc((10 / 1600) * 100vw);
    }
    

    .environment__number{
        font-size: calc((10 / 1600) * 100vw);    
    }
    
    .environment__heading{
        font-size: calc((28 / 1600) * 100vw);
        margin-top: calc((10 / 1600) * 100vw);
    }
    
    .environment__text{
        font-size: calc((14 / 1600) * 100vw);
        margin-top: calc((16 / 1600) * 100vw);
    }
    
    .environment__body{
        max-width: calc((36 / 1600) * 100vw);
        width: 100%;
    }
    
    .environment__icon{
        gap: calc((20 / 1600) * 100vw);
        max-width: calc((36 / 1600) * 100vw);
    }

    .environment__icon img{
        width: calc((16 / 1600) * 100vw);
    }

    /* btn */
    .btn{
        gap: calc((22 / 1600) * 100vw);
        padding-bottom: calc((20 / 1600) * 100vw);
    }
    
    .btn__text{
        font-size: calc((16 / 1600) * 100vw);
    }
    
    .btn__icon{
        width: calc((40 / 1600) * 100vw);
        height: calc((19 / 1600) * 100vw);
        border-radius: calc((5 / 1600) * 100vw);
    }

    .btn__icon img{
        width: calc((16 / 1600) * 100vw);
    }

    /* タイトル */
.title{
    gap: calc((10 / 1600) * 100vw);
}

.title__en{
    font-size: calc((10 / 1600) * 100vw);
}

.title__jp{
    font-size: calc((40 / 1600) * 100vw);
}

}

@media (max-width: 768px) {
   .environment__left{
    display: none;
   }

   .environment__right{
    width: calc(100% - 40px);
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    padding-bottom: 20px;
   }

   .environment__items{
    margin-top: 50px;
   }

.environment__item{
    flex-direction: column;
    gap: 20px;
}

.environment__item:nth-of-type(n + 2){
    padding-top: 40px;
    margin-top: 40px;
}

.environment__item:nth-last-of-type(1){
    padding-bottom: 40px;
}

.environment__img{
    aspect-ratio: 310 / 150;
    max-width: 100%;
    margin-right: 0;
}

.environment__content{
    width: 100%;
    gap: 20px;
}

.environment__number{
    font-size: 10px;
}

.environment__heading{
    font-size: 18px;
    margin-top: 10px;
}

.environment__text{
    margin-top: 20px;
    font-size: 14px;
}

.environment__body{
    max-width: 36px;
    width: 100%;
}

.environment__icon{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    max-width: 36px;
    width: 100%;
}

.environment__icon::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #DADAE0;
    left: 0;
    top: 0;
}

.environment__icon img{
    display: block;
    width: 16px;
}

/* タイトル */
.title{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #030049;
}

.title__en{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0.03em;
}

.title__jp{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0.05em;
}



.btn{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-bottom: 1px solid #030049;
    padding-bottom: 20px;
}

.btn__text{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.1em;
    color: #030049;
}

.btn__icon{
display: flex;
background: #030049;
width: 40px;
height: 19px;
justify-content: center;
align-items: center;
border-radius: 5px;
transition: all 0.3s ease;
}

.btn__icon img{
    display: block;
    width: 16px;
}

.btn:hover .btn__icon{
    transform: translateX(10px);
}

.title__jp{
    font-size: 28px;
}

.btnarea{
    text-align: center;
    margin-top: 50px;
} 

}

.environment__bottom-box{
    display: none;
}

section#environment{
    padding-bottom: 100px;
    transform: translateY(50px);
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    background: #fff;
    position: relative;
    z-index: 9;
}

@media (max-width: 768px) {
    section#environment{
        padding-bottom: 50px;
    }
}