@charset "UTF-8";
/*
OZ RESET CSS
Author: ONZE
Author URI: http://on-ze.com
Version: 1.1
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
* {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline; }

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%; }

body {
  font-size: 10px;
  font-size: 1.0rem;
  line-height: 1;
  position: relative;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 100%; }

article, aside, dialog, figure, footer, header, main, menu, nav, section {
  display: block; }

audio, canvas, video {
  display: inline-block; }

br,
hr {
  display: block; }

ol,
ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none; }

input,
select {
  vertical-align: middle; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show; }

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../image/loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../image/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../image/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em; }

.lb-data .lb-caption a {
  color: #4ae; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../image/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

body {
  font-family: HelveticaNeue, Helvetica Neue, Helvetica,Arial, "Droid Sans", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 10px;
  background: url("../image/rtdex_main_switch.jpg") center center no-repeat #06121e fixed;
  background-size: cover; }

.sp {
  display: none; }

header {
  padding: 2em 3em; }
  header a {
    min-width: 100px;
    width: 10%;
    display: block; }
    header a img {
      width: 100%;
      display: block; }
  header #platform {
    position: absolute;
    top: 2em;
    right: 2em;
    width: 400px;
    letter-spacing: -.4em;
    text-align: right; }
    header #platform li {
      display: inline-block;
      padding: 0 1em;
      width: 30%;
      letter-spacing: normal; }
      header #platform li img {
        width: 100%; }

#title {
  margin: 0 auto 6em;
  position: relative; }
  #title h1 {
    width: 40%;
    margin: 0 auto 7em; }
    #title h1 img {
      width: 100%;
      display: block;
      margin-bottom: 1em;}
    /* タイトル下のお知らせ文 */
    #title  span {
      color: #F9F91D;
      background: rgba(0, 0, 0, 0.5);
      padding: 0.2em;
      font-size: 2.5em;
      font-weight: 600;
      line-height: 1.52;}
/* バナーを右上に表示
  #title #link-newrtype {
    position: absolute;
    top: 28%;
    right: 3%;
    max-width: 300px;
    width: 30%; }
    #title #link-newrtype p {
      font-size: 2em;
      font-weight: 600;
      color: #fff;
      text-align: center; }
    #title #link-newrtype a {
      margin: 1em auto 0;
      display: block; }
      #title #link-newrtype a img {
        width: 100%; }
*/
/* バナーを下に表示　*/
#link-newrtype {
  max-width: 300px;
  width: 30%;
  margin: 0 auto 6em; }
  #link-newrtype p {
    font-size: 2em;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0 0 .5em;}
  #link-newrtype a {
    display: block; }
    #link-newrtype a img {
      width: 100%; }

 #title #lead-box {
    letter-spacing: -.4em;
    background: rgba(0, 0, 0, 0.4);
    padding: 3em 0; }
    #title #lead-box > p {
      letter-spacing: normal;
      font-size: 2.4em;
      font-weight: 600;
      color: #fff;
      text-align: center;
      line-height: 1.8;
      display: inline-block;
      vertical-align: middle;
      width: 70%; }
      #title #lead-box > p span {
        color: #ff0; }
      #title #lead-box > p a {
        display: block;
        border: 2px solid #fff;
        padding: .5em 1em;
        width: 50%;
        color: #fff;
        margin: 1em auto 0;
        font-size: .75em;
        box-sizing: border-box; }
        #title #lead-box > p a:hover {
          background: #fff;
          color: #151515;
          transition: .8s; }
          #title #lead-box > p a:hover:before {
            color: #151515;
            transition: .8s; }
        #title #lead-box > p a:before {
          display: inline-block;
          content: "\f0d7";
          font-family: "Font Awesome 5 Free";
          font-weight: 900;
          color: #fff;
          margin: 0 1em 0 0; }
    #title #lead-box #shop {
      letter-spacing: normal;
      display: inline-block;
      vertical-align: middle;
      width: 30%; }
      #title #lead-box #shop p {
        font-size: 2.4em;
        font-weight: 600;
        color: #fff;
        margin: 1em 0 0; }
        #title #lead-box #shop p:last-of-type {
          margin: 0; }

#contents-wrap {
  max-width: 1200px;
  margin: 0 auto 10em;
  padding: 10em 3em;
  background: rgba(0, 0, 0, 0.6);
  color: #fff; }

.block {
  margin: 0 auto 10em; }
  .block:after {
    content: "";
    display: block;
    width: 70%;
    border-bottom: 1px solid #333;
    margin: 10em auto 0; }

h2 {
  font-size: 3em;
  font-weight: 600;
  margin: 0 auto .5em;
  line-height: 1.5; }

.caption {
  font-size: 1.8em;
  margin: 0 auto 3em;
  line-height: 1.5; }

.link-btn {
  display: block;
  padding: .2em 0 0;
  background: #fff;
  width: 50%;
  margin: 0 auto 1em; }
  .link-btn:hover {
    opacity: .8;
    transition: .8s; }
  .link-btn img {
    width: 100%; }

.sns {
  margin: 0 0 5em; }
  .sns ul {
    text-align: center; }
    .sns ul li {
      padding: 0 1em;
      display: inline-block;
      vertical-align: middle; }

#movie {
  padding: 2em 4em; }
  #movie .video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden; }
    #movie .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

.img-wrap {
  letter-spacing: -.4em; }
  .img-wrap dl {
    letter-spacing: normal;
    display: inline-block;
    vertical-align: top;
    width: 48%;
    margin: 0 4% 0 0; }
    .img-wrap dl:last-of-type {
      margin: 0; }
    .img-wrap dl dd a img {
      width: 100%; }
    .img-wrap dl dt {
      font-size: 1.6em;
      margin: 1em 0;
      line-height: 1.5; }
    .ios {
        margin-top: 2em; }

#overview div {
  max-width: 800px;
  margin: 0 auto 10em;
  padding: 0 2em; }
  #overview div h2 {
    margin: 0 auto 1em; }
  #overview div dl {
    letter-spacing: -.4em;
    font-size: 1.4em;
    padding: 2em 1em;
    text-align: left;
    border-top: 1px solid #aaa; }
    #overview div dl:last-child {
      border-bottom: 1px solid #aaa; }
    #overview div dl dt {
      font-weight: bold;
      display: inline-block;
      vertical-align: middle;
      letter-spacing: normal;
      width: 30%; }
    #overview div dl dd {
      display: inline-block;
      letter-spacing: normal;
      vertical-align: middle;
      line-height: 1.5; }

.update .caption {
  max-width: 800px;
  text-align: left;
  margin: 0 auto; }

#bellow-shop-link h2 {
  margin: 0 auto 1em; }
#bellow-shop-link p .link-btn {
  width: 30%;
  margin: 0 auto 4em;
  padding: 1em 2em; }
#bellow-shop-link p:last-of-type .link-btn {
  margin: 0 auto; }

footer {
  padding: 4em 1em;
  background: rgba(0, 0, 0, 0.9); }
  footer ul {
    letter-spacing: -.4em;
    font-size: 1.4em;
    font-weight: 600;
    margin: 0 0 3em; }
    footer ul li {
      letter-spacing: normal;
      display: inline-block;
      vertical-align: middle; }
      footer ul li:first-child:after {
        content: "|";
        padding: 0 1em;
        color: #fff;
        display: inline-block;
        vertical-align: middle; }
      footer ul li a {
        color: #ffc107; }
        footer ul li a:hover {
          color: #2156E7;
          transition: .8s; }
  footer #page-top {
    color: #151515;
    display: block;
    font-size: 1.4em;
    background: #fff;
    max-width: 200px;
    margin: 0 auto 3em;
    padding: .5em 2em; }
    footer #page-top:hover {
      opacity: .8;
      transition: .8s; }
    footer #page-top:before {
      display: inline-block;
      content: "\f0de";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      color: #151515;
      margin: 0 .5em 0 0;
      vertical-align: middle;
      padding: .5em 0 0;
      font-size: 1.55em; }
  footer p {
    color: #fff;
    font-size: 1.2em;
    line-height: 1.5;
    margin: 2em auto 0; }

@media (max-width: 768px) {
  body::before {
    content: "";
    background: url("../image/rtdex_main_switch.jpg") no-repeat center center;
    background-size: cover;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; }

  #title {
    margin: 0 auto 6em; }
    #title h1 {
      width: 60%;
      margin: 0 auto 5em; }
    #title h1 span {
      font-size: 2em;
    }
/* バナーを右上に表示
    #title #link-newrtype {
      position: inherit;
      top: 0;
      right: 0;
      margin: 0 auto 6em; }
*/

    #title #lead-box {
      padding: 3em 2em; }
      #title #lead-box > p {
        font-size: 2em;
        width: 100%; }
        #title #lead-box > p a {
          margin: 1em auto 2em; }
      #title #lead-box #shop {
        width: 100%; }
        #title #lead-box #shop p {
          font-size: 2em; }
          #title #lead-box #shop p .link-btn {
            width: 30%; }

  #contents-wrap {
    margin: 0 auto 5em;
    padding: 5em 3em; }

  .block {
    margin: 0 auto 5em; }
    .block:after {
      margin: 5em auto 0; }

  h2 {
    font-size: 2.4em; }

  .caption {
    font-size: 1.6em; }

  .sns ul li {
    padding: 0 .3em; }

  #movie {
    padding: 0; }

  #overview div {
    margin: 0 auto 5em; }

  footer {
    padding: 4em 2em; } }
@media (max-width: 480px) {
  .sp {
    display: block; }

 header {
    padding: 1em 2em; }
    header #platform {
      top: 1em;
      right: 2em;
      width: 250px; }
      header #platform li {
        padding: 1em .5em;
        width: auto;
        height: 52px; }
        header #platform li:last-child {
          padding: 1em 0 1em .5em; }
        header #platform li img {
          width: auto;
          height: 100%; }

  #title {
    margin: 0 auto 6em; }
    #title h1 {
      width: 80%;
      margin: 3em auto 6em; }
    #title h1 span {
      font-size: 1.75em;
    }

/* バナーを右上に表示
  #title #link-newrtype {
      width: 50%;
      margin: 0 auto 3em; }
      #title #link-newrtype p {
        font-size: 1.6em; }
*/
/* バナーを下に表示 */
    #link-newrtype {
      width: 100%; }
    #link-newrtype p {
      font-size: 1.6em; }

  #title #lead-box {
      padding: 2em; }
      #title #lead-box > p {
        font-size: 1.6em; }
        #title #lead-box > p a {
          padding: 1em;
          width: 80%; }
      #title #lead-box #shop p {
        font-size: 1.6em; }
        #title #lead-box #shop p .link-btn {
          width: 60%; }

  #contents-wrap {
    padding: 5em 3em; }

  h2 {
    font-size: 2em; }

  .caption {
    font-size: 1.4em; }

  #movie {
    padding: 0; }

  .img-wrap dl {
    display: block;
    width: 100%;
    margin: 0 auto 3em; }
    .img-wrap dl dt {
      font-size: 1.4em; }

  #overview div {
    padding: 0; }
    #overview div h2 {
      margin: 0 auto 1em; }
    #overview div dl dt {
      display: block;
      width: 100%;
      text-align: center;
      margin: 0 0 1em; }
    #overview div dl dd {
      display: block;
      width: 100%;
      text-align: center; }

  #bellow-shop-link p .link-btn {
    width: 60%;
    margin: 0 auto 2em;
    padding: 1em 2em; }

  footer {
    padding: 4em 2em; } }
