@font-face {
    font-family: 'abc';
    src: url('./fonts/ABCDiatype-Medium-Trial.woff');
}

@font-face {
    font-family: 'abc';
    src: url('./fonts/ABCDiatype-Medium-Trial.woff2');
}

* {
    box-sizing: border-box;
}

html {
    font-size: 1px;
    font-family: 'abc';
}

body {
    font-size: 22rem;
    line-height: 1.2667;
    /*background-image: url('img/Home-01.png');*/
    background-size: 100% auto;
}

#root {
    opacity: 1;
}

.pure-inner {
    position: relative;
}

header {
    height: 80rem;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
}

#header-logo {
    display: inline-block;
    top: 24rem;
}

#header-logo::after {
    transition: all 0.5s;
    bottom: -12rem;
}

#header-logo img {
    width: 227rem;
    height: auto;
    vertical-align: bottom;
}

header nav {
    right: 24rem;
    position: absolute;
}

footer {
    height: 48rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
}

footer ul {
    list-style: none;
    padding: 0;
    position: absolute;
    left: 0;
    /* text-transform: uppercase; */
    margin: 0;
    top: 10rem;
}

footer ul li {
    display: inline-block;
}

footer ul:first-of-type li {
    margin-right: 80rem;
}

footer ul:last-of-type {
    left: auto;
    right: 0;
    text-align: right;
}

footer ul:last-of-type li {
    margin-left: 80rem;
}

nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline-block;
}

a {
    text-decoration: none;
    color: #000;
}

header a {
    position: relative;
}

header nav a {
    display: block;
    margin-left: 40rem;
}

header a::after {
    display: block;
    content: '';
    width: 0;
    bottom: -6rem;
    left: 0;
    position: absolute;
    height: 4rem;
    background-color: #E65857;
    transition: all 0.25s;
}

header a:hover::after {
    width: 100%;
}

.sg-30 {
    font-size: 30rem;
}

.sg-22 {
    font-size: 22rem;
}

.sg-18 {
    font-size: 18rem;
}

figure {
    margin: 0;
    width: 100%;
    height: 100%;
}

figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

.home-banner {
    padding-top: 80rem;
    padding-bottom: 48rem;
    height: 100dvh;
}

.home-banner .sg-30 {
    position: absolute;
    font-weight: normal;
    width: 440rem;
    margin-top: 50rem;
}

.pure-g {
    width: 1920rem;
    max-width: 100%;
    padding: 0 20rem;
    margin: auto;
}

[class*="pure-u"] {
    position: relative;
    padding: 0 20rem;
}

/* COMING SOON */

#video-wrap {
    padding: 57.01% 0 0 0;
    position: relative;
}

#video-desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#video-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

@media screen and (max-width: 480px) {

    #video-wrap {
        padding: 0;
        position: relative;
        height: 220dvw;
        width: 100%;
    }

    #video-desktop {
        display: none;
    }

    #video-mobile {
        display: block;
    }

    footer ul li {
        font-size: 12rem;
        display: block;
        padding-bottom: 10rem;
    }

    footer {
        height: 60rem;
    }

}