@charset "utf-8";
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@font-face {
    font-family: "melonano";
    src: url(../font/Melonano_Ver.1.31.ttf) format("truetype");
}

#game-view{
    display: flex;
    align-items: center;
    margin: 100px auto 0;
    max-height: 600px;
}

.mainvisual{
    display: flex;
    width: 100%;
    height: 80vh;
    max-height: 730px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    overflow: hidden;
    border-bottom: 4px solid #fff; 
    border-radius: 10px;
    box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #89bbb4, 0 0 40px #89bbb4, 0 0 80px #89bbb4;
}

.mainvisual video{
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.mainvisual::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(16, 57, 75, 0.3);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}


#game-view .thumbnail {
    display: flex;
    padding-left: 0;
    overflow-x: hidden;
    width: 80vw;
    height: 70vh;
    align-items: center;
    position: relative;  
    margin: auto;
}

#game-view .thumbnail li{
    margin: 0 1%; 
}


#game-view img{
    width: 100%;
    box-shadow: 10px 10px 20px 12px #dddddd inset;
}

#game-view img:hover{
    transition: all 0.5s;
    transform: scale(1.1,1.1);
    opacity: 0.7;
}


.prev-arrow,
.next-arrow {
    width: 70px;
    height: 70px;
    background: #bfd0cc;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
    border-radius: 50%;
    flex-shrink: 0;
}

.prev-arrow {
    transform: rotate(180deg);
    margin-right: 20px;
}

.prev-arrow::before,
.next-arrow::before{
    position:absolute;
    content: "";
    width:20px;
    height:20px;
    border-right: 4px solid #FFF;
    border-top: 4px solid #FFF;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}

.section-title{
    color: rgba(51, 51, 51, 0.9);
    font-family: "melonano", sans-serif;
    font-size: clamp(68px,6vw,100px);
    letter-spacing: 0.05em;
}

#latest-articles{
    margin-top: 100px;
    padding: 0 100px;
    display: flex;
    height: 700px;
    align-items: center;
    justify-content: center;
    border-bottom: solid 4px #fff;
    border-radius: 10px;
    box-shadow: 0 5px 0 #fff, 0 20px 20px #eba1ae, 0 20px 40px  #eba1ae;
}

#latest-articles .text{
    width: 30%;
    text-align: center;
}

#latest-articles .section-title{
    position: relative;
    top: -10vw;
    z-index: 10;
}


.blog-list{
    display: flex;
    width: 60%; 
    min-width: 200px;
    height: 50vh;
    max-height: 620px;
    overflow: scroll hidden;
    padding: 10px;
    border: solid 2px #1f1f1f;
    border-radius: 10px;
    box-shadow: 0 5px 5px #1f1f1f;
}

.blog-list .column{
    flex-direction: column;
    background-color: #fff;
    border: solid 1px #1f1f1f;
    border-bottom: none;
}

.blog-list a{
    display: block;
    height: 30vh;
    max-height: 350px;
}

.blog-list a:hover{
    transition: all 0.5s;
    opacity: 0.7;
    border: solid 1px #fff;
    box-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #89bbb4, 0 0 40px #89bbb4, 0 0 80px #89bbb4;
}

.blog-list a img{
    height: 30vh;
    max-height: 350px;
}

.blog-list dt{
    height: 30vh;
    max-height: 350px;
}

.blog-list dd{
    margin: 5px;
}

.btn{
    max-width: 250px;
    font-family: "melonano", sans-serif;
    background-color: #fff;
    display: block;
    border: solid 1px #1f1f1f;
    font-size: 18px;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 100px;
    margin: 0 auto ;
    z-index: 10;
}

.btn::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    background-color: #1f1f1f;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease 0.3s;
}

.btn:hover{
    color: #fff;
    opacity: 1;
}

.btn:hover::before{
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

#strategy{
    margin-top: 100px;
    padding: 0 100px;
    display: flex;
    height: 700px;
    align-items: center;
    justify-content: center;
    border-bottom: solid 4px #fff;
    border-radius: 10px;
    box-shadow: 0 5px 0 #fff, 0 20px 20px #bec7e5, 0 20px 40px  #bec7e5;
}

#strategy .text{
    width: 30%;
    text-align: center;
}

#strategy .section-title{
    position: relative;
    top: -10vw;
    z-index: 10;
}

#review{
    margin-top: 100px;
    padding: 0 100px;
    display: flex;
    height: 700px;
    align-items: center;
    justify-content: center;
    border-bottom: solid 4px #fff;
    border-radius: 10px;
    box-shadow: 0 5px 0 #fff, 0 20px 20px #b4d78a, 0 20px 40px  #b4d78a;
}

#review .text{
    width: 30%;
    text-align: center;
}

#review .section-title{
    position: relative;
    top: -10vw;   
    z-index: 10;
}

#diary{
    margin-top: 100px;
    margin-bottom: 100px;
    padding: 0 100px;
    display: flex;
    height: 700px;
    align-items: center;
    justify-content: center;
    border-bottom: solid 4px #fff;
    border-radius: 10px;
    box-shadow: 0 5px 0 #fff, 0 20px 20px #003368, 0 20px 40px  #003368;
}

#diary .text{
    width: 30%;
    text-align: center;
}

#diary .section-title{
    position: relative;
    top: -10vw;
    z-index: 10;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
タブレット
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 1067px){
    dd{
        margin: 0;
    }

    #header{
        margin: 0;
    }

    
    .text{
        margin: 0 10px;
    }

    #latest-articles{
        padding: 0 10px;

    }

    #strategy{
        padding: 0 10px;
    }

    #review{
        padding: 0 10px;
    }

    #diary{
        padding: 0 10px;
    }

    .blog-list a{
        max-height: 200px;
    }

}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
スマートフォン
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 767px){
    .prev-arrow, .next-arrow {
        width: 20px;
        height: 20px;

    }
      
    .prev-arrow::before,.next-arrow::before{
        width: 4px;
        height: 4px;
        border-right: 2px solid #FFF;
        border-top: 2px solid #FFF;
    }

    .blog-list{
        max-height: 360px;
        width: 50%;
    }

    .blog-list a img{
        max-height: 200px;
    }

    .blog-list dt{
        max-height: 200px;
    }

    .btn{
        position: relative;
        bottom: 70px;
        padding: 20px 10px;
    }
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
スマートフォン（横向き）
-------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media (orientation: landscape) and (max-width: 1024px){
    .mainvisual{
        height: 100vh;
    }

    .blog-list{
        height: 70vh;
        max-height: 360px;
    }

    .blog-list a img{
        max-height: 200px;
    }

    .blog-list dt{
        max-height: 200px;
    }
}

