/* Company */

#company_philosophy_image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
#company_philosophy_image::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 1;
}
#company_philosophy_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    line-height: 1.2em;
    text-align: center;
    text-shadow: 0 0x 10px rgba(255, 255, 255, 0.2);
    z-index: 2;
}
#company_philosophy h4 {
    margin-bottom: 1.5em;
    font-size: 2.2em;
    font-weight: 500;
    letter-spacing: 0.15em;
}
#company_philosophy li {
    font-size: 1.4em;
    line-height: 1.2em;
    letter-spacing: 0.1em;
}
#company_philosophy li:not(:last-of-type) {
    margin-bottom: 1.3em;
}
#company_philosophy_image::before {
    opacity: 0;
    transition: all 400ms 300ms ease-in-out;
}
#company_philosophy_image.reveal::before {
    opacity: 0.5;
}
#company_philosophy h4 {
    opacity: 0;
    transform: translateX(-5px);
}
#company_philosophy_image.reveal h4 {
    animation: company_philosophy_slidein 500ms 800ms ease-in-out forwards;
}
#company_philosophy_image li {
    opacity: 0;
    transform: translateX(-5px);
}
#company_philosophy_image.reveal li:first-of-type {
    animation: company_philosophy_slidein 500ms 1300ms ease-in-out forwards;
}
#company_philosophy_image.reveal li:nth-of-type(2n) {
    animation: company_philosophy_slidein 500ms 1400ms ease-in-out forwards;
}
#company_philosophy_image.reveal li:last-of-type {
    animation: company_philosophy_slidein 500ms 1500ms ease-in-out forwards;
}
@keyframes company_philosophy_slidein {
    0% {
        opacity: 0;
        transform: translateX(-5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#_company_data dl {
    float: left;
    margin-bottom: 1.5em;
    width: 65%;
}
#company_data dt {
    float: left;
    padding-top: 1em;
    padding-left: 1em;
    width: 12em;
    font-weight: 500;
}
#company_data dd {
    position: relative;
    padding-left: 1em;
    padding-top: 1em;
    padding-left: 16em;
}
#company_data dd:not(:last-of-type):before {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: '';
    width: 12em;
    height: 1px;
    background: #009ea1;
    z-index: 1;
}
#company_data dd:not(:last-of-type) {
    padding-bottom: 1em;
    border-bottom: 1px solid #e0e0e0;
}
#company_data dd h5 {
    margin-top: 1em;
    margin-bottom: 0.3em;
    font-weight: 500;
}
#company_data dd h5:first-of-type {
    margin-top: 0;
}
#_company_data dd ul {
    font-size: 0.9em;
}
#company_data dd ul li {
    float: left;
    line-height: 1.5em;
}
#company_data dd ul li .label {
    font-size: 1.1em;
    font-weight: 500;
    margin-right: 0.3em;
}
#company_data dd ol li {
    line-height: 1.5em;
}
#company_data dd li:not(:last-of-type):after {
    margin: 0 0.5em;
    content: '/';
    color: #bbb;
}