$red: #E80C48;
$blue: #1B6AD7;

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Lato', 'sans-serif';
    font-weight: 700;
}

#click-area {
    display: block;
    position: relative;
    height: auto;
    width: 728px;
    max-width: 100%;
    max-height: 90px;
    overflow: hidden;
    color: white;
    background: $red;
    img {
        max-width: 100%;
        height: auto;
    }
    video {
        display: block;
    }
    #bg {
        max-width: 100%;
        height: auto;
    }
    .slide {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }
    .slide_01 {
        #slide_01_logo {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            width: 28vw;
            margin: auto;
            opacity: 0;
            @media (min-width: 728px) {
                width: 200px;
            }
        }
    }
    .slide_02 {
        .content {
            display: flex;
            align-items: center;
            padding: 0 0 0 5%;
            height: 100%;
        }
        #slide_02_headline {
            text-transform: uppercase;
            line-height: 1;
            text-align: center;
            font-size: 3vw;
            @media (min-width: 728px) {
                font-size: 24px;
            }
        }
        #slide_02_arrow {
            width: 2vw;
            transform: rotate(-90deg);
            padding: 0 3%;
            @media (min-width: 728px) {
                width: 16px;
            }
        }
        #slide_02_subline {
            text-transform: uppercase;
            line-height: 1.1;
            text-align: center;
            font-size: 3vw;
            font-weight: 400;
            @media (min-width: 728px) {
                font-size: 24px;
            }
        }
        #slide_02_logo {
            position: absolute;
            right: 5%;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 12%;
        }
    }
    .slide_03 {
        display: flex;
        align-items: center;
        padding: 0 0 0 5%;
        #slide_03_headline {
            text-transform: uppercase;
            line-height: 1;
            text-align: center;
            font-size: 3vw;            
            @media (min-width: 728px) {
                font-size: 24px;
            }
        }
        #slide_03_arrow {
            width: 2vw;
            padding: 0 3%;
            transform: rotate(-90deg);
            @media (min-width: 728px) {
                width: 16px;
            }
        }
        #slide_03_subline {
            text-transform: uppercase;
            line-height: 1.1;
            text-align: center;
            font-size: 3vw;
            font-weight: 400;
            @media (min-width: 728px) {
                font-size: 24px;
            }
        }
    }
    .slide_04 {
        display: flex;
        align-items: center;
        padding-left: 5%;
        #slide_04_headline {
            white-space: nowrap;
            font-size: 3vw;
            @media (min-width: 728px) {
                font-size: 24px;
            }
        }
        #slide_04_button {
            position: absolute;
            background: $blue;
            border-radius: 20px;
            text-align: center;
            width: 33%;
            height: 33%;
            margin: auto;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            line-height: 1;
            font-size: 2vw;
            display: flex;
            align-items: center;
            justify-content: center;
            @media (min-width: 728px) {
                font-size: 15px;
            }
            img {                
                width: 1.5vw;
                position: relative;
                display: inline-block;
                margin: 0 0 0 1vw;
                transform: rotate(-90deg);
                @media (min-width: 728px) {
                    width: 10px;
                    margin: 0 0 0 10px;
                }
            }
        }
    }
}