@charset "utf-8";

body{
  font-family: "Hiragino Kaku Gothic ProN W3", "Osaka", "Meiryo", "Yu Gothic", "Noto Sans CJK JP", "Helvetica Neue", Arial, sans-serif;
}

.content {
    width: 100%;
    height: 710px;
    padding-top: 60px;
    text-align: center;
    color: #f8f8f8;
    background-size: cover;
}

.video-container {
  position: relative;
  width: 100%;
  /*height: 100%;*/
  height: 0;
  padding-bottom: 56.25%;
}

.video-container iframe {
  position: absolute;
  /*top: 50%;
  left: 50%;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*transform: translate(-50%, -50%);*/
}

.navbar-nav {
  align-items: flex-end;
}

nav.navbar {
   justify-content: flex-end;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    background-color: rgba(85, 85, 85, .5);
}

.navbar-custom .navbar-brand {
    font-weight: 700;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}

.navbar-custom .navbar-brand .navbar-toggle:focus, .navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: rgba(255, 255, 255, .9);
}

.navbar-custom .navbar-nav li.active {
    outline: nonte;
    background-color: rgba(255, 255, 255, .3);
}

.navbar-custom .navbar-nav li a {
    transition: background .3s ease-in-out;
}

.navbar-custom .navbar-nav li a:hover, .navbar-custom .navbar-nav li a:focus, .navbar-custom .navbar-nav li a.active {
    outline: 0;
    background-color: rgba(155, 155, 155, .35);
}

@media(min-width:767px) {
    .navbar {
        padding: 10px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        transition: background .5s ease-in-out, padding .5s ease-in-out;
    }
    .top-nav-collapse {
        padding: 0;
        background-color: rgba(0, 0, 0, .5);
    }
    .navbar-custom.top-nav-collapse {
        border-bottom: 1px solid rgba(255, 255, 255, .5);
    }
}

.container-tbl {
    padding-top: 70px;
}

#data_wrapper {
    padding-bottom: 70px;
}

.top-btn {
    display: inline-block;
    margin: 20px;
    background-color: #b686da;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
.top-btn::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f062";
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}
.top-btn:hover {
    cursor: pointer;
    background-color: #333;
}
.top-btn:active {
    background-color: #555;
}
.top-btn.show {
    opacity: .7;
    visibility: visible;
}

.pokemon-water .water {
    height: 50px;
    background: url("images/water.png") repeat-x bottom;
    z-index: 105;
    position: fixed;
    bottom: -1px;
    width: 100%;
    opacity: .8;
    left: 0;
    animation: waves-r2l 10s linear infinite
}

.pokemon-water .poke {
    cursor: pointer;
    position: fixed;
    top: 999px;
    left: -20px;
    display: none;
    z-index: 99
}

.pokemon-water .poke.floating {
    transition: left 1s linear, top 1s linear, transform 1.5s ease !important
}

.pokemon-water .poke.dragging {
    transition: none !important;
    animation: poke-swing .8s linear infinite
}

.pokemon-water .poke.dropping {
    transition: top .8s cubic-bezier(.795, .21, .535, 1.235) !important
}

.pokemon-water .poke img {
    opacity: 1 !important;
    outline: none;
    pointer-events: none;
    user-select: none
}

@keyframes waves-r2l {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: -552px 0
    }
}

@keyframes waves-l2r {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: 552px 0
    }
}

@keyframes poke-swing {
    0% {
        transform: rotate(1deg)
    }
    50% {
        transform: rotate(-2deg)
    }
    100% {
        transform: rotate(1deg)
    }
}