* {
    padding: 0;
    margin: 0;
}

:root {
    --commen-vw: 2vw;
}

img {
    vertical-align: middle;
    user-select: none;
}

body {
    width: 100vw;
    height: 100vh;
    background: url(/images/background_pc.png) no-repeat center;
    background-size: 100% 100%;
    background-color: black;
    position: relative;
}

header {
    position: fixed;
    z-index: 9;
    top: var(--commen-vw);
    left: var(--commen-vw);
    display: flex;
    justify-content: space-between;
}

header .logo {
    padding-right: 3vw;
}

header .logo img {
    height: 5.5vw;
}

header .setup {
    display: none;
}

header .contact .pc {
    position: relative;
}

header .contact .pc .top {
    width: 100%;
}

header .contact .pc .right {
    position: absolute;
    right: 0;
}

section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

section .pc,
section .mobile {
    width: 100%;
    height: 100%;
    position: relative;
}

section .pc .arrow {
    position: absolute;
    top: var(--commen-vw);
    right: var(--commen-vw);
    width: 70vw;
    object-fit: contain;
}

section .pc .left {
    position: absolute;
    left: var(--commen-vw);
    bottom: var(--commen-vw);
    width: 3vw;
    object-fit: contain;
}

section .pc .bottom {
    position: absolute;
    left: var(--commen-vw);
    right: var(--commen-vw);
    bottom: var(--commen-vw);
    object-fit: contain;
    width: 100%;
    height: 3vw;
}

section .pc .contact img {
    height: 2.4vw;
}

section .pc .contact {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 5vw;
    top: 6vw;
    row-gap: 20px;
}

section .mobile .left {
    position: absolute;
    left: 0;
}

section .mobile .right {
    position: absolute;
    right: 0;
}

main {
    position: fixed;
    top: 8vw;
    left: 10vw;
    z-index: 8;
}

main .banner img {
    width: 33vw;
}

main .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

main .content .title {
    width: 48vw;
}

main .content .information-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 3vw;
    margin-left: 3vw;
}

main .content .information-content .qrcode-container .qrcode img {
    width: 10vw;
}

main .content .information-content .text {
    display: flex;
    align-items: flex-end;
    width: 32vw;
    box-sizing: border-box;
    margin-left: 1.5vw;
}

main .content .information-content .text .setup {
    color: #fdf234;
    font-size: 1.3vw;
    font-weight: 400;
}

main .content .information-content .text .line {
    width: 100%;
    height: 1px;
    margin: 1vw auto;
    background-color: #fdf234;
}


main .content .information-content .text .warning {
    color: #c6c6c6;
    font-size: 0.8vw;
}

main .content .information-content .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main .content .information-content .contact a {
    display: block;
    margin: 1vw auto;
}

main .content .information-content .contact img {
    height: 3vw;
}

main .content .information-content .download-container img {
    width: 17.5vw;
}

main .content .information-content .download-container {
    display: flex;
    width: 33vw;
    padding-left: 2vw;
}

main .content .information-content .download-container > div a:not(:first-child) {
    display: block;
    margin-top: 0.5vw;
}

main .display-container {
    display: flex;
}

footer {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.8) 0px -70px 36px 10px inset;
}

footer .download-container {
    width: 100%;
    text-align: center;
    margin-bottom: 6vw;
}

footer .download-container > div {
    margin-top: 2vw;
}

footer .download-container a img {
    width: 30%;
}

footer .contact {
    display: flex;
    align-items: center;
    padding-bottom: 6vw;
}

footer .contact a {
    width: 100%;
    display: block;
    text-align: center;
}

footer .contact a:first-child {
    text-align: left;
    padding-left: 6vw;
}

footer .contact a:last-child {
    text-align: right;
    padding-right: 6vw;  
}


footer .contact a img {
    width: 23.73vw;
}

.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 9px solid;
    border-color: rgba(0, 0, 0, 0.5);
    border-right-color: #fdf233;
    -webkit-animation: spinner-zp9dbg 1s infinite linear;
    animation: spinner-zp9dbg 1s infinite linear;
}

.swiper {
    width: 100%;
    height: 100vh;
}

@-webkit-keyframes spinner-zp9dbg {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes spinner-zp9dbg {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}


@media screen and (max-width: 767px) {
    header {
        width: 100vw;
        position: relative;
        padding: 3vw 2vw 5vw;
        box-sizing: border-box;
        top: unset;
        left: unset;
    }

    header .logo img {
        height: 11vw;
    }

    header .setup {
        display: block;
    }

    header .setup img {
        height: 9.5vw;
    }

    section .pc {
        display: none;
    }

    section .mobile .left {
        width: 9vw;
    }

    section .mobile .right {
        width: 30vw;
    }

    main {
        width: 100%;
        flex-direction: column;
        top: unset;
        position: relative;
        left: unset;
        bottom: unset;
        align-items: center;
        margin-top: -100vh;
    }

    main .display-container {
        display: flex;
        flex-direction: column;
    }

    main .banner img {
        width: 86vw;
        height: 60vh;
        padding-left: 7vw;
    }

    main .banner.banner-first img {
        width: 90vw;
        padding-left: 6.5vw;
    }

    main .content .title {
        width: 88vw;
        margin-top: -4vw;
    }

    main .content .information-content {
        display: none;
    }

    footer {
        display: flex;
        flex-direction: column;
    }
}