:root {
    interpolate-size: allow-keywords;

    --font-family: 'Haffer', sans-serif;

    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-black: 900;

    --color-white: #FFFFFF;
    --color-off-white: #FAFAFA;
    --color-grey: #E6E6E6;
    --color-black: #000000;
    --color-yellow: #F9F650;
    --color-orange: #FF572D;
    --color-pink: #F699FF;
    --color-lime: #79FF82;
    --color-cian: #8CF8F1;
    --color-blue: #2D6CFF;

    --gravity-gray-background: #F0F0F0;
    --color-light-gray-transparent: #2E2E2E;


    --duration-short: 512ms;
    --duration: 768ms;
    --duration-long: 1256ms;
    --ease: cubic-bezier(0.625, 0.05, 0, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* normalize html */
html {
    box-sizing: border-box;
    font-size: 6.944vw;
    background-color: var(--color-black);

    @media screen and (max-width: 768px) and (orientation: portrait) {
        font-size: 26.667vw;
    }
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1;
    font-smooth: antialiased;
    font-family: var(--font-family);
    font-weight: var(--font-regular);
    font-size: 0.22rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;

    @media screen and (max-width: 768px) and (orientation: portrait) {
        font-size: 0.18rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
}

main {
    overflow: hidden;
}

.intro {
    position: relative;
    width: 100%;
    height: 8.3rem;
    max-height: calc(100dvh - 1.1rem);
    overflow: hidden;
    background-color: var(--color-off-white);

    @media screen and (max-width: 768px) and (orientation: portrait) {
        height: calc(100dvh - 0.65rem);
        max-height: unset;
    }
}

.intro .intro-logo {
    position: absolute;
    top: 50%;
    left: 0.4rem;
    transform: translateY(-50%);
    width: 2.9rem;
    z-index: 1;

    @media screen and (max-width: 768px) and (orientation: portrait) {
        top: 0.1rem;
        left: 0.15rem;
        transform: translateY(0rem);
        width: 1.65rem;
    }
}

.intro .intro-logo img {
    display: inline-block;
    width: 100%;
    max-width: unset;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
}

.intro .intro-image {
    position: absolute;
    width: 11.16rem;
    height: calc(100% + 0.5rem);
    left: 50%;
    bottom: -0.5rem;
    transform: translateX(-50%);

    @media screen and (max-width: 768px) and (orientation: portrait) {
        width: 7rem;
    }
}

.intro .intro-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.intro .intro-text {
    position: absolute;
    top: 50%;
    right: 0.4rem;
    transform: translateY(-50%);
    width: 1.5rem;
    text-align: right;
    z-index: 1;

    @media screen and (max-width: 768px) and (orientation: portrait) {
        top: 0.15rem;
        right: 0.15rem;
        transform: translateY(0rem);
    }
}

.intro .intro-text p {
    font-family: var(--font-family);
    font-weight: var(--font-medium);
    font-size: 0.2rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: uppercase;

    @media screen and (max-width: 768px) and (orientation: portrait) {
        font-size: 0.18rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
}

.footer {
    position: relative;
    width: 100%;
    padding-top: 0.4rem;
    padding-bottom: 0.2rem;
    background-color: var(--color-black);
    color: var(--color-white);

    @media screen and (max-width: 768px) and (orientation: portrait) {
        padding-top: 0.2rem;
    }
}

.footer .footer-bottom-row {
    position: relative;
    width: 100%;
    max-width: 13.90rem;
    margin: 0 auto;
    padding: 0rem 0.15rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    @media screen and (max-width: 768px) and (orientation: portrait) {
        max-width: unset;
        padding: 0 0.15rem;
        display: none;
    }
}

.footer .footer-bottom-row .logo-column {
    width: 6.75rem;

    @media screen and (max-width: 768px) and (orientation: portrait) {
        display: none;
    }
}

.footer .footer-bottom-row .logo-column img {
    display: inline-block;
    width: 100%;
    max-width: unset;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
}

.footer .footer-bottom-row .copyright-column span {
    display: inline-block;
    font-family: var(--font-family);
    font-weight: var(--font-medium);
    font-size: 0.14rem;
    line-height: 1.2;
    letter-spacing: 0em;

    @media screen and (max-width: 768px) and (orientation: portrait) {
        font-size: 0.14rem;
        line-height: 1.2;
        letter-spacing: 0em;
    }
}

.marquee-css {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    padding-bottom: 1.5rem;

    @media screen and (max-width: 768px) and (orientation: portrait) {
        padding-bottom: 0rem;
    }
}

.marquee-css__list {
    position: relative;
    display: flex;
    align-items: center;
    flex: none;
}

.marquee-css__item {
    display: flex;
    align-items: center;
    flex: 0;
    grid-column-gap: 0.06rem;
    grid-row-gap: 0.06rem;
    padding-right: 0.06rem;
}

.marquee-css__item-p {
    white-space: nowrap;
    margin-bottom: 0;
    font-family: var(--font-family);
    font-weight: var(--font-regular);
    font-size: 0.22rem;
    line-height: 1.2;
    letter-spacing: -0.01em;

    @media screen and (max-width: 768px) and (orientation: portrait) {
        font-size: 0.18rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }
}

/* CSS Keyframe Animation */
@keyframes translateX {
    to {
        transform: translateX(-100%);
    }
}

[data-css-marquee-list] {
    animation: translateX 15s linear;
    animation-iteration-count: infinite;
}