@charset "UTF-8";


/* ===================================
共通項目
 =================================== */

.company__section-contents {
    margin-top: 40px;
}

/* ===================================
会社概要 Overview
 =================================== */

.companyOverview {
    padding-bottom: 130px;
}
.companyOverview__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.companyOverview__list li {
    padding: 15px 30px;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);

    display: flex;
    gap: 19px;
}
.companyOverview__list li .left {
    width: 130px;
}
.companyOverview__list li .right {
    flex: 1;
}

/* ===================================
業務内容 Business information
=================================== */

.companyBusiness {
    /* padding-top: 50px; */
    padding-bottom: 130px;
    /* position: relative; */
}
/* .companyBusiness__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 300;
}
.companyBusiness__bg::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 101%;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}
.companyBusiness__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: -2;
} */

.companyBusiness__items {
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.companyBusiness__item {

}
.companyBusiness__item .title {
    font-size: 24px;
}
.companyBusiness__item .list {
    margin-top: 32px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.companyBusiness__item .list__item {
    display: inline-block;
    border: 1px solid #707070;
    border-radius: 10px;
    padding: 11px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
    background: #fff;
}

/* ===================================
アクセス Access
=================================== */
.companyAccess {
    padding: 100px 0 155px;
    background: #F6F6F6;
}
.companyAccess__map {

}
.companyAccess__map .google-map {

}
.companyAccess__map iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 1130 / 662;
}
.companyAccess__map .address {
    margin-top: 30px;
}
.companyAccess__route {
    background: #fff;
    padding: 20px 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}
.companyAccess__route.--train {
    margin-top: 30px;
}
.companyAccess__route.--car {
    margin-top: 15px;
}
.companyAccess__route .left {
    width: 180px;
    flex-shrink: 0;
}
.companyAccess__route .left__image {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.companyAccess__route .left__text {
    margin-top: 7px;
    text-align: center;
}
.companyAccess__route .right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.companyAccess__route .right__item {
    display: grid;
    grid-template-columns: 180px minmax(150px,auto) 120px;
    gap: 10px;

    padding-top: 15px;
    padding-bottom: 15px;
}
.companyAccess__route .right__item:first-of-type {
    padding-top: 0;
}
.companyAccess__route .right__item:last-of-type {
    padding-bottom: 0;
}
.companyAccess__route .right__item:nth-of-type(n + 2) {
    border-top: 1px solid #D9D9D9;
}
.companyAccess__route .right__item-title {
    background: #333333;
    color: #fff;
    text-align: center;
    padding: 3px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.companyAccess__route .right__item-description {

}
.companyAccess__route .right__item-button a {
    display: block;
    background: #EF7F27;
    border-radius: 999px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 5px 16px 5px 31px;
    position: relative;
}
.companyAccess__route .right__item-button a:after {
    content: "";
    position: absolute;
    top: 8px;
    left: 11px;
    width: 11px;
    height: 15px;
    background: url(../../img/map-icon.svg) no-repeat center center / contain;
}

