* {
    box-sizing: border-box;
    background: none;
    outline: none;
    resize: none;
    border: none;
    padding: 0;
    margin: 0;
}
body, html {
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Arial';
    background: #F1F1F1;
    line-height: 1.37;
    color: #333333;
}
b, strong {
    @include OpenSans-Bold;
}
table {
    border-collapse: collapse;
}
button {
    transition: all 250ms;
    cursor: pointer;
}
h1, h2, h3, h4, b, strong {
    font-weight: normal;
}
a {
    text-decoration: none;
}
img {
    image-rendering: -webkit-optimize-contrast;
}


*::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}
*::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #CCCCCC;
}

*::-webkit-scrollbar-track:hover {
    background-color: #CCCCCC;
}

*::-webkit-scrollbar-track:active {
    background-color: #CCCCCC;
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #999999;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #999999;
}

*::-webkit-scrollbar-thumb:active {
    background-color: #999999;
}

.wrap {
    background-color: #FFFFFF;
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    height: 100vh;
    width: 100vw;
    padding: 6vw;
    left: 0;
    top: 0;
    .block-logo {
        .logo {
            display: block;
            width: 100%;
        }
    }
    .block-links {
        align-items: flex-start;
        flex-direction: column;
        padding-left: 31%;
        display: flex;
        .link-item {
            justify-content: flex-start;
            transition: all 300ms;
            align-items: center;
            white-space: nowrap;
            margin-top: 1.5vw;
            color: #333333;
            font-size: 1vw;
            display: flex;
            gap: 1vw;
            .item-icon {
                max-height: 2vw;
                max-width: 2vw;
            }
            .item-text {

            }
            &:hover {
                color: #D41200  ;
            }
        }
    }
    .align {
        position: relative;
        margin-top: -15vh;
        z-index: 2;
        width: 50%;
    }
    .bg-img {
        position: absolute;
        &.bg-img-01 {
            width: 94%;
            bottom: 0;
            left: 5%;
        }
        &.bg-img-02 {
            width: 24%;
            bottom: 2%;
            right: 3%;
        }
    }
    @media screen and (max-width: 640px) {
        align-items: flex-start;
        .align {
            margin-top: 0;
            width: 100%;
        }
        .block-links {
            margin-top: 10vw;
            padding-left: 15%;
            .link-item {
                margin-top: 7.5vw;
                gap: 3vw;
                .item-icon {
                    max-height: 8vw;
                    max-width: 8vw;
                }
                .item-text {
                    font-size: 4vw;
                }
            }
        }
        .bg-img {
            position: absolute;
            &.bg-img-01 {
                width: 130%;
                bottom: 0;
                left: 5%;
            }
            &.bg-img-02 {
                max-height: 40vh;
                width: 90%;
                bottom: 5%;
                right: 5%;
            }
        }
    }
}