.pc-only {
    display: block;
}

html {
    scroll-behavior: smooth;
}

* {
    font-family: "Balsamiq Sans", sans-serif;
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
}

body {
    font-size: 14px;
}

header.pmapp {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    background: url(./../images/top.jpg) center bottom;
    height: 100px;
    justify-content: space-between;
    align-items: center;
}

.webp header.pmapp {
    background: url(./../images/top.webp) center bottom;
}

header.pmapp .logo {
    flex: 1;
    display: block;
    width: 130px;
    height: 80%;
    font-size: 0;
    background: url(./../images/logo.png) center no-repeat;
    background-size: contain;
}

header.pmapp .logo {
    flex: 1;
    display: block;
    width: 130px;
    height: 80%;
    font-size: 0;
    background: url(./../images/logo.png) center no-repeat;
    background-size: contain;
}

.webp header.pmapp .logo {
    background: url(./../images/logo.webp) center no-repeat;
    background-size: contain;
}

#view_download .contents,
#view_news,
#view_news .fb-iframe,
#swiper_feature .swiper-slide,
#swiper_pokemon .swiper-slide,
#swiper_trainer .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

#view_download,
#view_feature,
#view_pokemon,
#view_trainer,
footer.pmapp {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

#navigator_menu {
    display: flex;
    flex-direction: row;
    font-size: 1.8em;
    flex: 3;
    justify-content: space-evenly;
}

#navigator_menu a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0px 3px 0px #0e0878, 0px 3px 3px #0e0878;
    transition: color 200ms;
}

#navigator_menu a:hover {
    color: #ffdb5d;
}

#social_menu {
    display: flex;
    flex-direction: row;
    font-size: 0em;
    flex: 1;
    justify-content: space-between;
    transform: translateX(-10%);
}

#social_menu a,
footer.pmapp ul a {
    font-size: 0;
    display: block;
    background: url(./../images/social_icon.png);
    transform: scale(0.9, 0.9);
    transition: transform 300ms, filter 250ms;
}

#social_menu a {
    width: 45px;
    height: 45px;
}

#social_menu a:hover,
footer.pmapp ul a:hover {
    filter: contrast(1.2) saturate(1.5);
    transform: scale(1, 1);
}

#social_menu a.fb-link {
    background-position: 0px -80px;
}

#social_menu a.fb-group-link {
    background-position: -45px -80px;
}

#social_menu a.dc-link {
    background-position: -180px -80px;
}

#social_menu a.yt-link {
    background-position: -90px -80px;
}

#social_menu a.ig-link {
    background-position: -135px -80px;
}

#view_download {
    height: 1083px;
    background: url(./../images/landing_01.jpg) center no-repeat;
    justify-content: space-between;
    overflow: hidden;
}

.webp #view_download {
    background: url(./../images/landing_01.webp) center no-repeat;
}

#view_download .background {
    position: relative;
}

#view_download .background-character {
    position: absolute;
}

#view_download .background-character-1 {
    z-index: 99;
    background: url(./../images/bg_character_1.png) center no-repeat;
    width: 594px;
    height: 602px;
    transform: translate(-275px, 350px);
}

.webp #view_download .background-character-1 {
    background: url(./../images/bg_character_1.webp) center no-repeat;
}

#view_download .background-character-2 {
    z-index: 98;
    background: url(./../images/bg_character_2.png) center no-repeat;
    width: 909px;
    height: 442px;
    transform: translate(-420px, 450px);
    animation: character-2 3s reverse infinite;
}

.webp #view_download .background-character-1 {
    background: url(./../images/bg_character_1.webp) center no-repeat;
}

.webp #view_download .background-character-3 {
    background: url(./../images/bg_character_3.webp) center no-repeat;
}

#view_download .background-character-3 {
    z-index: 97;
    background: url(./../images/bg_character_3.png) center no-repeat;
    width: 1100px;
    max-width: 100vw;
    height: 715px;
    transform: translate(-50%, 50px);
    animation: character-3 5s reverse infinite;
}

#view_download .contents {
    flex-direction: column;
    position: relative;
    z-index: 100;
}

#view_download .logo {
    background: url(./../images/logo.png) center no-repeat;
    width: 489px;
    height: 295px;
    font-size: 0;
}

.webp #view_download .logo {
    background: url(./../images/logo.webp) center no-repeat;
}

#view_download .download-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 15px 0px;
}

#view_download .download-link li a {
    display: block;
    border: none;
    font-size: 0;
    background: url(./../images/download_icon.png) center no-repeat;
    height: 80px;
    width: 240px;
    transition: transform 700ms;
}

#view_download .download-link li a:hover {
    transform: translateY(-10px);
}

#view_download .download-link li:nth-child(1) a {
    background-position: 0px 0px;
}

#view_download .download-link li:nth-child(2) a {
    background-position: -240px 0px;
}

#view_download .download-link li:nth-child(3) a {
    background-position: -480px 0px;
}

#view_download .download-link li:nth-child(4) a {
    background-position: -720px 0px;
}

@keyframes character-2 {
    0% {
        transform: translate(-420px, 450px);
    }
    50% {
        transform: translate(-420px, 500px);
    }
    100% {
        transform: translate(-420px, 450px);
    }
}

@keyframes character-3 {
    0% {
        transform: translate(-50%, 50px);
    }
    50% {
        transform: translate(-50%, 120px);
    }
    100% {
        transform: translate(-50%, 50px);
    }
}

#view_news {
    height: 650px;
    background: url(./../images/landing_02.jpg) center no-repeat;
}

.webp #view_news {
    background: url(./../images/landing_02.webp) center no-repeat;
}

#view_news .fb-iframe {
    background: url(./../images/news.png) center no-repeat;
    width: 100%;
    height: 700px;
    background-size: contain;
}

.webp #view_news .fb-iframe {
    background: url(./../images/news.png) center no-repeat;
    background-size: contain;
}

#view_news .fb-iframe iframe {
    transform: translateX(40%);
    border-radius: 5%;
}