html, body {
    height: 100%;
    font-family: "Roboto Mono", "Meiryo UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", "MS PGothic", sans-serif;
}

.fontBlue {
    color: #315cd5;
}

.fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}

.fade.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.container {
    width: 1240px;
    margin: auto;
}

.horizonBox {
    display: flex;
    flex-direction: row;
    padding-bottom: 40px;
}

.horizonBox.reverse {
    display: flex;
    flex-direction: row-reverse;
}

header {
    z-index: 99;
    position: absolute;
    top: 0;
    width: 100%;
    height: 108px;
}

header .info {
    color: #fff;
    font-size: 0.9rem;
    background-color: #ffffff4d;
    padding: 8px 0;
}

header .info a {
    color: #fff;
    text-decoration: none;
}

header .info .infoBox {
    display: flex;
    flex-direction: row;
}

header .info .location {
    display: flex;
    margin-right: 32px;
}

header .info .location::before {
    content: '';
    padding-right: 8px;
    width: 12px;
    height: 14px;
    background-image: url("../assets/svg/b96bcc4d-01aa-f5dc-11b5-a10f9eb8d483.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

header .info .phone {
    display: flex;
}

header .info .phone::before {
    content: '';
    padding-right: 8px;
    width: 14px;
    height: 14px;
    background-image: url("../assets/svg/e6df0495-437c-66c8-14d9-b23ce044334e.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

header .titleBox {
    animation-duration: 0.5s;
    background-color: #fff3;
    background-image: none;
    padding: 20px 15px;
}

header .companyName {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

footer {
    color: #46707f;
    text-align: center;
    line-height: 117px;
}

@media screen and (max-width: 1300px) {
    .container {
        width: 1024px;
    }
}

@media screen and (max-width: 1024px) {
    img {
        width: 100%;
        height: 100%;
    }

    .container {
        width: 80%;
    }

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

    .horizonBox.reverse {
        display: flex;
        flex-direction: column;
    }

    article h2 {
        font-size: 2rem;
    }

    article h3 {
        font-size: 1.3rem;
    }

    header .companyName {
        font-size: 1.1rem;
    }

    header .info .infoBox {
        flex-direction: column;
        font-size: 0.8rem;
    }

    footer {
        line-height: 50px;
    }
}
