/*--------------------------------------
base
--------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

ul {
    list-style: none;
}


/* PC */

@media screen and (min-width: 767px) {
    /* header */
    .header-wrapper {
        /* position: relative; */
        padding: 15px 0;
        height: 25px;
        width: 100%;
        background: #101010;
        display: flex;
        justify-content: space-between;
    }
    .header-wrapper.fixed {
        position: fixed;
        /*fixedを設定して固定*/
        z-index: 999;
        /*最前面へ*/
        top: 0;
        /*位置指定*/
        left: 0;
        /*位置指定*/
    }
    .header-inner {
        /* position: relative; */
        text-align: center;
    }
    h1 {
        /* position: absolute; */
        font-family: "Hiragino Kaku Gothic ProN";
        font-weight: normal;
        font-size: 25px;
        text-align: left;
        color: #fff;
        padding-left: 10px;
    }
    /* kv */
    .kv-content {
        padding: 5vh 0;
        position: relative;
    }
    .kv-content,
    .kv-bottun {
        text-align: center;
    }
    .kv-bottun,
    .kv-image {
        position: absolute;
    }
    .kv-bottun {
        top: 70%;
        left: 36%;
    }
    .kv-image {
        position: fixed;
        top: 83%;
        left: 80%;
        transition: .5s;
    }
    .kv-bottun img,
    .section-inner-bottun img {
        width: 350px;
        height: 70px;
    }
    .hide {
        transform: translateY(-200%);
    }
    @keyframes my-fade-out {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            display: none;
        }
    }
    .disable {
        animation: my-fade-out 1s linear 0s;
        animation-fill-mode: forwards;
    }
    /* セクション関連 */
    .secion-wrapper {
        margin-bottom: 60px;
        padding: 15px 0;
    }
    .section-top-contents {
        margin-bottom: 0;
    }
    .section-inner {
        margin: 0 auto;
        padding: 0 20px;
        height: 200px;
    }
    .secion-top-meesage .section-inner-text {
        text-align: center;
        font-size: 50px;
        /* margin: 60px 0; */
        height: 200px;
        line-height: 4;
        font-family: 'Noto Sans JP', sans-serif;
    }
    .section-inner-text {
        width: 90%;
        margin: auto;
        font-weight: normal;
        font-size: 30px;
        line-height: 2;
    }
    .section-title {
        font-size: 5.2rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 60px;
        margin-left: 5%;
    }
    .section-title-main,
    .section-title-sub {
        font-weight: bold;
        margin-left: 5%;
    }
    .section-title-main {
        font-size: 8.2rem;
        margin-bottom: 15px;
    }
    .section-title-sub {
        font-size: 4.3rem;
        margin-left: 10%;
        color: white;
    }
    .section-title-sub span {
        background: #868080;
        padding: 0 12px;
    }
    .section-title span {
        background: black;
        color: #fff;
        letter-spacing: 20px;
        text-align: center;
        /* font-weight: bold; */
        padding-left: 15px;
    }
    .section-inner-image {
        width: 50%;
    }
    .section-inner-left {
        position: absolute;
    }
    .section-inner-right {
        position: relative;
        margin-top: 40%;
    }
    .section-inner-left,
    .section-inner-right {
        display: flex;
        width: 90%;
        margin-left: 5%;
    }
    .section-inner-left .section-inner-text {
        width: 60%;
        padding-bottom: 20%;
        text-align: center;
    }
    .section-inner-bottun {
        width: 50%;
        text-align: center;
        margin: auto;
        padding-top: 10%;
    }
    .section-inner-bottun img {
        padding-right: 100px;
    }
    .section-mail-background {
        margin: 5% 0;
    }
    .section-mail-background .section-inner-right {
        margin-top: 0;
    }
    .section-mail-background .section-inner-right .section-inner-text {
        width: 30%;
        font-size: 20px;
        line-height: 1.5;
    }
    .section-mail-background .section-inner-right .section-inner-text span span {
        font-size: 50px;
    }
    .section-mail-background .section-inner-right .section-inner-image {
        width: 65%;
    }
    .seciton-slider {
        margin: 10% 0;
    }
    .section-inner-youtube {
        margin: 5%;
        text-align: center;
    }
    .section-youtube {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
    .section-youtube iframe {
        width: 100%;
    }
    /*====================================================================
    slick
    ====================================================================*/
    .sliderArea {
        max-width: 45%;
        margin: 0 auto;
        padding: 0 25px;
    }
    .sliderArea.w300 {
        max-width: 300px;
    }
    .slick-slide {
        margin: 0 5px;
    }
    .slick-slide img {
        width: 100%;
        height: auto;
    }
    .slick-prev,
    .slick-next {
        z-index: 1;
    }
    .slick-prev:before,
    .slick-next:before {
        color: #000;
    }
    .slick-slide {
        transition: all ease-in-out .3s;
        opacity: .2;
    }
    .slick-active {
        opacity: 1;
    }
    .slick-current {
        opacity: 1;
    }
    .thumb {
        margin: 20px 0 0;
    }
    .thumb .slick-slide {
        cursor: pointer;
    }
    .thumb .slick-slide:hover {
        opacity: .7;
    }
    .slick-prev:before,
    .slick-next:before {
        color: #0e0e0e;
    }
    /*--------------------------------------
    footer
    --------------------------------------*/
    footer {
        background: #c1c1c1;
    }
    .footer-contents {
        width: 90%;
        margin: auto;
        font-weight: normal;
        line-height: 2;
    }
    .footer-logo {
        font-family: 'Oswald', sans-serif;
        font-weight: normal;
        font-size: 50px;
        text-align: left;
    }
    .footer-logo b {
        border-bottom: solid 6px #333333;
    }
    .footer-nav {
        display: flex;
    }
    .footer-col {
        width: 25%;
    }
    .footer-col p {
        font-weight: normal;
        font-size: 30px;
    }
    .footer-sns {
        display: flex;
        justify-content: flex-end;
    }
    .footer-twitter,
    .footer-instagram,
    .footer-policy,
    .footer-game  {
        width: 7%;
    }
    .footer-copyright {
        background: black;
        height: 30px;
    }
    .copyright-txt {
        height: 30px;
        text-align: right;
        padding-right: 5%;
        color: #e9e5e5;
    }
    .copyright-txt span {
        line-height: 25px;
    }
    /*--------------------------------------
    common
    --------------------------------------*/
    .width-half {
        width: 50%;
    }
    /*--------------------------------------
    policy
    --------------------------------------*/
    .policy-title {
        font-size: 3.2rem;
    }
    .policy-text {
        font-size: 15px;
    }
    /*--------------------------------------
    game
    --------------------------------------*/
    .header-game {
      width: 70px;
    }
    .header-game img{
      position: relative;
      top: -25px;
      right:10px;
    }
    .game-imgline {
      display: flex;
    }
    .game-imgs img {
      width:300px;
      height:200px;
    }
    .game-imgs p{
      width:300px;
    }
    .game-imgs{
      width:300px;
      margin-right: 3%;
      margin-bottom: 5%;
    }
}
