* {
    padding: 0;
    margin: 0;
    border: 0;
    font-family: "Noto Sans JP", sans-serif, Arial;
}

header .small-colorstripe {
    height: 4px;
    width: 100%;
    position: fixed;
    z-index: 59999;
    background: #055aff;
    background: linear-gradient(-90deg,#cc385b 15%,#a62195 40%,#06bde0 60%,#2282e7 85%);
}

header #main-header {
    background-color: black;
    height: 82px;
}

header #main-header #inner-header {
    max-width: 1800px;
    margin: auto;
    padding-left: 25px;
    display: flex;
    justify-content: space-between;
}

header #main-header #inner-header > .header-cell {
    width: 50%;
}

header #main-header #inner-header > .header-cell .dd-logo {
    padding-top: 20px;
}

header #main-header #inner-header > .header-cell .dd-logo img {
    max-width: 80px;
    height: auto;
}

main {
    max-width: 1920px;
    margin: auto;
    display: flex; 
}

main > .content-container {
    width: 50%;
    display: flex;
    align-items: center;
}

main > .content-container .content-left {
    padding: 25px;
}

main > .content-container .content-right {
    width: 100%
}

h1 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-weight: 100;
    font-size: 52px;
    max-width: 1020px;
    margin: -5px auto 35px auto;
}

.content-left p {
    line-height: 1.6rem;
}

#store-buttons {
    display: flex;
    justify-content: center;
}

#store-buttons .store-button {
    margin-left: 15px;
    margin-right: 15px;
}

#store-buttons .store-button img {
    width: 200px;
    aspect-ratio: 4/3;
    object-fit: contain;
}

@media (max-width: 1000px) {
    main {
        flex-wrap: wrap;
    }
    
    main .content-container {
        width: 100%;
        flex-grow: 1;
        flex-basis: 100%;
        flex-wrap: nowrap;
    }
}

@media (max-width: 490px) {
    #store-buttons {
        flex-wrap: wrap;
        margin-top: 50px;
        margin-bottom: 25px;
    }

    #store-buttons .store-button {
        margin-bottom: 25px;
    }

    #store-buttons .store-button img {
        max-width: 250px;
        aspect-ratio: unset;
    }

    h2 {
        font-size: 42px;
    }
}