@charset "UTF-8";

.page-container.about {
    max-width: 1200px;
    width: 100%;
    margin: 50px auto 80px auto;
}

.page-container.about .about-inner {
    margin-bottom: 50px;
}

.page-container.about .about-inner h3 {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    background: #32463D;
    color: #E8E5E0;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-container.about .about-inner .text-area {
    font-size: 16px;
    color: #222222;
    margin: 20px 0;
}

.page-container.about .about-inner .text-area p {
    margin-bottom: 20px;
}

.page-container.about .about-inner .about-content {
    margin: 20px 0 30px 0;
    color: #222222;
}

.page-container.about .about-inner .about-content .about-content-item {
    display: flex;
    min-height: 100px;
    border-bottom: 1px solid #BEBEBE;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0px;
    box-sizing: border-box;
}

.page-container.about .about-inner .about-content .about-content-item .title {
    position: relative;
    font-size: 20px;
}

.page-container.about .about-inner.site .about-content .about-content-item .title {
    padding-left: 20px;
}

.page-container.about .about-inner.site .about-content .about-content-item .title::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    background: #222222;
    border-radius: 50%;
    margin: auto;
}

.page-container.about .about-inner .about-content .about-content-item .text {
    font-size: 16px;
}

.page-container.about .about-inner.site .about-content .about-content-item .text {
    padding-left: 20px;
    margin-top: 5px;
}

.page-container.about .about-inner.supervisor .about-content .about-content-item {
    flex-direction: unset;
    justify-content: flex-start;
    align-items: center;
}

.page-container.about .about-inner.supervisor .about-content .about-content-item .title {
    width: 180px;
}


@media screen and (max-width: 1190px) {
    .page-container.about {
        width: calc(100% - 40px);
    }
}