/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,*::before,*::after{box-sizing:border-box}*{margin:0}html,body{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Roboto', sans-serif;
}
header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    width: 100%;
    position: fixed;
    top:0;
    left: 0;
    z-index: 10;
}
header .logo {
    width: 200px;
    height: auto;
}
header .logo img {
    width: 100%;
    height: auto;
}
header nav {
    display: none;
}
main {
    margin-top: 67px;
}
article + article {
    padding: 60px 30px;
}

article h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: .1rem;
}

.new-release ul {
    margin-top: 30px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
}
.new-release li {
    width: 46%;
}
.new-release li:nth-child(n+3) {
    margin-top: 30px;
}
.new-release li h3 {
    margin-top: 8px;
    font-size: 1.6rem;
    line-height: 1.4;
}
.new-release li p {
    margin-top: 5px;
    font-size: 1.3rem;
}
.new-release li img {
    height: auto;
}
.new-release .main-image {
    position: relative;
}
.new-release .main-image:before {
    content: "";
    display: block;
    padding-top: calc(9/16*100%);
}
.new-release .main-image img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.new-release .main-image .status {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 500;
    background: #333;
    display: inline-block;
    padding: 3px 10px;
}
.topics {
    background: #eee;
}
.topics ul {
    margin-top: 30px;
    padding: 0;
    list-style: none;
    border-top: 1px dotted #999;
    border-bottom: 1px dotted #999;
}
.topics li {
    padding: 10px;
}
.topics li+li {
    border-top: 1px dotted #999;
}
.topics li a {
    color: #000;
    text-decoration: none;
}
.topics li time {
    padding: 1px 7px;
    font-size: 1.4rem;
    background: #777;
    color: #fff;
    border-radius: 3px;
}
.topics li h3 {
    padding-top: 2px;
    font-size: 1.5rem;
    font-weight: 400;
}

footer {
    background: #000;
}
footer .gnav {
    margin-bottom: 30px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    border-bottom:1px solid #333;
}
footer .gnav li {
    text-align: center;
    width: 50%;
    border-bottom:1px solid #333;
}
footer .gnav li:nth-child(odd) {
    border-right:1px solid #333;
}
footer .gnav a {
    display: block;
    padding: 15px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
}
footer .sns {
    padding: 0;
    display: flex;
    justify-content: center;
}
footer .sns li a {
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
}
footer .sns li:nth-child(1) a {
    background: url("images/icon_twitter.png") center center / contain no-repeat;
}
footer .sns li:nth-child(2) a {
    background: url("images/icon_youtube.png") center center / contain no-repeat;
}
footer .sns li+li {
    margin-left: 30px;
}
footer .copyright {
    padding: 30px 10px;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
    display : block;
    position: fixed;
    z-index : 3;
    right : 20px;
    top   : 13px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    z-index: 11;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 2px ;
    left    : 6px;
    background : #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  
  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  /* メニュー背景　*/
  nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 67px;
    left : 0;
    color: #fff;
    background: rgba( 0,0,0,0.8);
    text-align: center;
    width: 100%;
    transform: translateY(-100%);
    transition: all 0.6s;
    z-index: 1;
  }
  
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
  }
  nav.globalMenuSp ul li+li {
      border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li:hover{
    background :#ddd;
  }
  
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
    font-size: 1.6rem;
  }
  
  /* クリックでjQueryで追加・削除 */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
     transform: translateY(0%);
  }

  .slider {
      background: #202020;
  }

  .swiper {
    position: relative; /* ← swiper.cssに含まれています */
    max-width: 1280px;
  }
  
  .swiper:before {
    content: "";
    display: block;
    padding-top: calc(12/16*100%); /* 縦/横*100の値を書く */
  }
  
  .swiper-wrapper {
    position: absolute; /* ← swiper.cssと優先順位が干渉するときは工夫してください */
    top: 0;
    left: 0;
  }
  .swiper-slide {
      position: relative;
  }
  .swiper-slide > img {
    object-fit: cover; /* IE: not support */
    width: 100%;
    height: 100%;
    position: absolute;
 }
 .swiper-slide .desc {
     position: absolute;
     bottom: 5px;
     left: 0;
 }
 .swiper-slide .title{
     margin-top: 5px;
    padding:5px 10px;
    display: inline-block;
    /*background: #000;*/
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
 }
 .swiper-slide .status {
    padding:3px 10px;
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
 }

 .swiper-slide .desc {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}
.swiper-slide-active .desc {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease 1s;
}

@media screen and (min-width:768px) {
    .hamburger {
        display: none;
    }
    header {
        padding: 20px 30px;
    }
    header nav {
        display: inherit;
    }
    header .gnav {
        display: flex;
        padding: 0;
    }
    header .gnav li+li {
        margin-left: 15px;
    }
    header .gnav li a {
        color: #fff;
        text-decoration: none;
        font-size: 1.7rem;
        font-weight: 500;
        position: relative;
        display: inline-block;
    }
    header .gnav li a::after {
        position: absolute;
        bottom: -4px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #fff;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform .3s;
      }
      header .gnav li a:hover::after {
        transform: scale(1, 1);
      }
    header .sns {
        margin-left: 30px;
        padding: 0;
        display: flex;
    }
    header .sns li a {
        display: block;
        width: 24px;
        height: 24px;
        text-indent: -9999px;
    }
    header .sns li:nth-child(1) a {
        background: url("images/icon_twitter.png") center center / contain no-repeat;
    }
    header .sns li:nth-child(2) a {
        background: url("images/icon_youtube.png") center center / contain no-repeat;
    }
    header .sns li+li {
        margin-left: 20px;
    }

    article + article {
        padding: 90px 60px;
    }

    article h2 {
        font-size: 4rem;
    }
    .swiper-slide .title {
     font-size: 3rem;
    }

    .new-release ul {
        margin: 60px auto 0;
        width: 100%;
        max-width: 1200px;
    }
    .new-release .main-image .status {
        font-size: 1.4rem;
    }
    .new-release li h3 {
        font-size: 1.8rem;
    }
    .new-release li p {
        font-size: 1.4rem;
    }
    .topics ul {
        margin: 60px auto 0;
        width: 100%;
        max-width: 1000px;
    }
    .topics li {
        padding: 15px 20px;
    }
    .topics li a {
        display: flex;
    }
    .topics li time {
        display: block;
        font-size: 1.6rem;
    }
    .topics li h3 {
        margin-left: 30px;
        font-size: 1.6rem;
    }
    footer .gnav {
        margin-bottom: 0;
        padding: 30px;
        flex-wrap: nowrap;
        border-bottom: 0;
        justify-content: center;
    }
    footer .gnav li {
        width: auto;
        border-bottom: 0;
    }
    footer .gnav li+li {
        border-left: 1px solid #333;
    }
    footer .gnav li:nth-child(odd) {
        border-right: 0;
    }
    footer .gnav li a {
        display: inline;
        font-size: 1.6rem;
    }
  
    .swiper:before {
      padding-top: calc(9/16*100%); /* 縦/横*100の値を書く */
    }
}

@media screen and (min-width:1024px) {
    header .gnav li+li {
        margin-left: 30px;
    }
    header .gnav li a {
        font-size: 1.8rem;
    }
}

@media screen and (min-width:1280px) {
    .new-release ul {
        max-width: 1400px;
    }
    .new-release li {
        width: 31%;
    }
    .new-release li:nth-child(3) {
        margin-top: 0;
    }
    .new-release li:nth-child(n+4) {
        margin-top: 30px;
    }
}

@media screen and (min-width:1800px) {
    .new-release ul {
        max-width: 2000px;
    }
    .new-release li {
        width: 23%;
    }
    .new-release li:nth-child(n+4) {
        margin-top: 0;
    }
    .new-release li:nth-child(n+5) {
        margin-top: 30px;
    }
}