.companyGreeting {
    margin-top: calc(8px * 4);
}

.companyGreeting__head {
    text-align: center;
}

.companyGreeting__head--title {
    font-size: var(--fontSize28);
    font-weight: bold;
}

.companyGreeting__main {
    column-gap: calc(8px * 8);
    display: grid;
    grid-template-columns: 60% auto;
    margin-top: calc(8px * 8);
}

.companyGreeting__mainBox--text {
    font-size: var(--fontSize15);
    line-height: 2;
}

.companyGreeting__mainBox--text + .companyGreeting__mainBox--text {
    margin-top: calc(8px * 3);
}

.companyGreeting__mainThumbnail--word {
    font-size: var(--fontSize15);
    margin-top: calc(8px * 2);
    text-align: right;
}

.companyOverview {
    margin-top: calc(8px * 12);
}

.companyOverview__head--title {
    font-size: var(--fontSize28);
    font-weight: bold;
    margin-bottom: calc(8px * 8);
    text-align: center;
}

.companyOverview__item {
    border-top: 1px solid #dcdcdc;
    display: grid;
    margin: 0 auto;
    max-width: 900px;
    grid-template-columns: 30% auto;
    padding: calc(8px * 4) 0;
    width: 100%;
}

.companyOverview__item:last-child {
    border-bottom: 1px solid #dcdcdc;
}

.companyOverview__item--title {
    font-size: var(--fontSize16);
    padding-left: calc(8px * 2);
}

.companyOverview__item--word {
    font-size: var(--fontSize16);
}

.companyOverview__map {
    height: 0;
    margin-top: calc(8px * 8);
    padding-top: 36.25%;
    position: relative;
    width: 100%;
}

.companyOverview__map iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .companyGreeting {
        margin-top: calc(8px * 2);
    }
    
    .companyGreeting__main {
        grid-template-columns: 100%;
        margin-top: calc(8px * 4);
        row-gap: calc(8px * 4);
    }
    
    .companyGreeting__mainBox--text + .companyGreeting__mainBox--text {
        margin-top: calc(8px * 2);
    }
    
    .companyGreeting__mainThumbnail--word {
        text-align: center;
    }

    .companyOverview {
        margin-top: calc(8px * 8);
    }
    
    .companyOverview__head--title {
        margin-bottom: calc(8px * 3);
    }
    
    .companyOverview__item {
        grid-template-columns: 25% auto;
        padding: calc(8px * 3) 0;
    }
    
    .companyOverview__item--title {
        line-height: 1.7;
        padding-left: calc(8px * 1);
    }
    
    .companyOverview__item--word {
        line-height: 1.7;
    }
    
    .companyOverview__map {
        margin-top: calc(8px * 5);
        padding-top: 56.25%;
    }
}