@charset "UTF-8";
/*mixin*/
/*animation*/
@keyframes scrollAnime {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-100%); } }
/*color*/
/*background-mixin*/
/*gradetion-mixin*/
/*common*/
.sp-bt {
  display: none; }

.forsp {
  display: none; }

.pm-line {
  width: 100%;
  height: 0;
  position: relative;
  z-index: 2; }
  .pm-line .pm-back {
    width: 100%;
    height: 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover; }
  .pm-line.fushigi .pm-img {
    width: 420px;
    height: 300px;
    background-image: url("../images/pm_img_fushigi.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: absolute;
    top: -100px;
    left: 0; }
  .pm-line.kamex .pm-img {
    width: 400px;
    height: 360px;
    background-image: url("../images/pm_img_kamex.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: absolute;
    top: -140px;
    right: 0; }
  .pm-line.lizard .pm-img {
    width: 400px;
    height: 360px;
    background-image: url("../images/pm_img_lizard.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: absolute;
    top: -140px;
    left: 0; }

.inner-bt {
  display: inline-block;
  padding: 6px 20px;
  background-color: #da3cb8;
  border-radius: 4px;
  margin-top: 12px;
  color: #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s; }
  .inner-bt:hover {
    opacity: 0.85; }

.sns {
  position: fixed;
  right: 12px;
  bottom: 240px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  z-index: 5; }
  .sns a {
    display: block;
    width: 40px;
    height: 40px;
    margin: 6px; }
    .sns a img {
      width: 100%;
      height: 100%;
      filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4)); }

.shortcut {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: 240px; }
  .shortcut img {
    width: 100%;
    height: auto;
    display: block; }
  .shortcut:hover {
    opacity: 0.85; }

#load {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  background-image: url("../images/pt_white.png");
  background-repeat: repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 50; }
  #load .loading {
    display: block;
    width: 90%;
    max-width: 180px;
    height: auto; }
    #load .loading img {
      width: 100%;
      height: auto; }

/**/
header {
  width: 100%;
  height: auto;
  position: relative; }
  header .mv-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/mv_back_l.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover; }
    header .mv-bg:after {
      content: "";
      display: block;
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 0;
      padding-top: 50%;
      background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%); }
  header.page .mv-bg {
    background-image: url("../images/mv_back_page.jpg");
    background-position: center top; }
    header.page .mv-bg:after {
      display: none; }

#main-visual {
  width: 100%;
  padding-top: calc(70% + 150px);
  position: relative; }
  #main-visual .mv-rdg-logo {
    position: absolute;
    top: 1%;
    left: 1%;
    width: 120px;
    height: 100px;
    background-image: url("../images/rdg_logo.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1; }
  #main-visual .mv-movie-logo {
    position: absolute;
    top: 1%;
    right: 1%;
    width: 160px;
    height: 100px;
    background-image: url("../images/movie_logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1; }
  #main-visual .mv-mewtwo {
    position: absolute;
    top: 0;
    right: 0;
    left: 50%;
    bottom: 0;
    width: 45%;
    max-width: 700px;
    height: 100%;
    margin: auto;
    background-image: url("../images/mv_mewtwo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%; }
    #main-visual .mv-mewtwo.mteffect {
      -webkit-animation: mteffect 5s infinite both;
      animation: mteffect 5s infinite both; }
@keyframes mteffect {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  10% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  17% {
    -webkit-transform: scale(1.005);
    transform: scale(1.005);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  33% {
    -webkit-transform: scale(1.015);
    transform: scale(1.015);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; } }
    #main-visual .mv-mewtwo.mteffect2 {
      background-image: url("../images/mv_mewtwo2.png");
      -webkit-animation: mteffect2 5s infinite both;
      animation: mteffect2 5s infinite both; }
@keyframes mteffect2 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  10% {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  17% {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  33% {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; } }
  #main-visual .mv-pika {
    position: absolute;
    top: -25%;
    right: 45%;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 30%;
    max-width: 450px;
    height: 0;
    padding-top: 30%;
    background-image: url("../images/mv_pika.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%; }
  #main-visual .mv-copy {
    position: absolute;
    top: 0;
    right: 5%;
    left: 0;
    margin: auto;
    width: 15%;
    height: 0;
    padding-top: 45%;
    background-image: url("../images/mv_copy.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.7)); }
  #main-visual .mv-title {
    position: absolute;
    right: 20%;
    left: 0;
    top: 50%;
    margin: auto;
    width: 45%;
    max-width: 780px;
    height: 0;
    padding-top: 25%;
    background-image: url("../images/title.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%; }
  #main-visual .ichi-pop {
    position: absolute;
    display: block;
    background-color: rgba(124, 63, 171, 0.8);
    width: 25vw;
    max-width: 460px;
    height: auto;
    bottom: 24%;
    right: 12%;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.6); }
    #main-visual .ichi-pop img {
      width: 100%;
      height: auto;
      display: block; }
    #main-visual .ichi-pop a {
      display: block;
      width: 100%;
      height: auto; }

.ichi-pop2 {
  display: none; }

#page-header {
  width: 100%;
  padding-top: 240px;
  position: relative; }

#cm .inner-wrap {
  max-width: 600px; }
#cm .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%; }
  #cm .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important; }
#cm .part {
  width: 100%;
  background-color: #7c3fab;
  background-image: url("../images/pt_purple.png");
  background-repeat: repeat; }
  #cm .part .left-box {
    width: 50%;
    height: auto;
    display: block; }
    #cm .part .left-box h5 {
      color: #fff;
      border: 2px solid #fff;
      display: inline-block;
      margin: 0;
      padding: 12% 24%; }
  #cm .part .right-box {
    width: 50%;
    height: auto; }
    #cm .part .right-box .youtube {
      position: relative;
      width: 100%;
      padding-top: 56.25%; }
      #cm .part .right-box .youtube iframe {
        position: absolute;
        top: 0;
        right: 0;
        width: 100% !important;
        height: 100% !important; }

nav {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 50px;
  background-color: rgba(38, 23, 43, 0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s; }
  nav.page {
    bottom: 10px; }
  nav.fixed {
    position: fixed;
    top: 0;
    bottom: initial;
    height: 6.2vw;
    max-height: 63px;
    z-index: 40;
    background-color: rgba(38, 23, 43, 0.7); }
    nav.fixed .nav-inner .sub-nav .nav-bt-sub {
      background-color: rgba(46, 43, 60, 0.6); }
  nav .nav-inner {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: auto; }
    nav .nav-inner .main-nav {
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      height: auto;
      position: relative; }
      nav .nav-inner .main-nav .nav-bt {
        width: calc(100% / 6);
        height: auto;
        display: block; }
        nav .nav-inner .main-nav .nav-bt img {
          width: 100%;
          height: auto;
          filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.8)); }
        nav .nav-inner .main-nav .nav-bt:hover {
          opacity: 0.85; }
        nav .nav-inner .main-nav .nav-bt.coming {
          position: relative;
          opacity: 0.5; }
          nav .nav-inner .main-nav .nav-bt.coming:after {
            content: "COMING SOON";
            display: block;
            position: absolute;
            width: 100%;
            font-size: 12px;
            text-align: center;
            padding: 2px 0;
            background-color: #e6e5e5ad;
            border-radius: 40px;
            color: #26172b;
            top: 58%; }
    nav .nav-inner .sub-nav {
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center; }
      nav .nav-inner .sub-nav .nav-bt-sub {
        display: block;
        width: 180px;
        border: 1px solid #fff;
        text-align: center;
        background-color: #2e2b3c;
        padding: 2px 0 4px;
        margin: 0px 4px;
        border-radius: 50px; }
        nav .nav-inner .sub-nav .nav-bt-sub span {
          color: #fff;
          text-align: center;
          font-size: 12px;
          font-weight: 600; }
        nav .nav-inner .sub-nav .nav-bt-sub:hover {
          opacity: 0.85; }

.slider {
  width: 100%;
  background-color: #2e2b3c;
  padding: 12px 0; }
  .slider .slider-inner .slideshow {
    display: block;
    width: 100%;
    height: 198px;
    background-image: url("../images/img-slide.jpg");
    background-repeat: repeat-x;
    background-position-x: 0;
    background-size: auto 100%;
    -webkit-animation: bgscroll 30s linear infinite;
    animation: bgscroll 30s linear infinite;
    position: relative; }
@-webkit-keyframes bgscroll {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 2270px 0; } }
@keyframes bgscroll {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 2270px 0; } }
.copy-wrap {
  width: calc(100% - 24px);
  background-color: #7c3fab;
  background-image: url("../images/pt_purple.png");
  background-repeat: repeat;
  display: block;
  padding: 20px 12px;
  text-align: center; }
  .copy-wrap .sub-catch {
    background-color: #fff;
    text-align: center;
    display: inline-block;
    color: #7c3fab;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 6px;
    padding: 4px 20px;
    border-radius: 20px; }
  .copy-wrap .catch {
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em; }

.inner-wrap {
  width: 92%;
  max-width: 1000px;
  padding: 4%;
  height: auto;
  margin: auto; }

/*main*/
#page-title {
  background-color: #fff;
  background-image: url("../images/pt_white.png");
  background-repeat: repeat; }
  #page-title .inner-wrap {
    padding: 6% 4%; }
  #page-title h2 {
    color: #26172b;
    background: #ddc8ff;
    background: -moz-linear-gradient(top, #ddc8ff 0%, #ddffff 31%, #ffffff 70%, #ffffff 70%, #ffefdd 100%);
    background: -webkit-linear-gradient(top, #ddc8ff 0%, #ddffff 31%, #ffffff 70%, #ffffff 70%, #ffefdd 100%);
    background: linear-gradient(to bottom, #ddc8ff 0%, #ddffff 31%, #ffffff 70%, #ffffff 70%, #ffefdd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddc8ff', endColorstr='#ffefdd',GradientType=0 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }
    #page-title h2 span {
      color: #000;
      -webkit-background-clip: text;
      -webkit-text-fill-color: initial; }
    #page-title h2 svg {
      max-width: 600px;
      filter: drop-shadow(4px 6px 0 #7c3fab); }
      #page-title h2 svg .h2-style {
        fill: url(#g);
        stroke: #26172b; }
  #page-title .practice-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin: 40px auto 0; }
    #page-title .practice-menu .practice-block {
      width: 200px;
      text-align: center;
      padding: 20px;
      background-color: #fff;
      border: 2px solid #7c3fab;
      color: #7c3fab;
      border-radius: 6px;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      margin: 10px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s; }
      #page-title .practice-menu .practice-block span {
        font-size: 14px;
        display: block; }
      #page-title .practice-menu .practice-block.active {
        background-color: #7c3fab;
        color: #fff; }
      #page-title .practice-menu .practice-block:hover {
        background-color: #ddc8ff; }
  #page-title .readme-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin: 40px auto 0; }
    #page-title .readme-menu .readme-block {
      width: 200px;
      text-align: center;
      padding: 20px;
      background-color: #fff;
      border: 2px solid #7c3fab;
      color: #7c3fab;
      border-radius: 6px;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      margin: 10px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center; }
      #page-title .readme-menu .readme-block span {
        font-size: 14px;
        display: block; }

.clear-cover {
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 20; }
  .clear-cover .cover-img {
    width: 100%;
    height: 100%;
    background-image: url("../images/clear_std_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
  .clear-cover.fam-cover {
    background-color: #fff; }
    .clear-cover.fam-cover .cover-img {
      background-image: url("../images/clear_fam_bg.jpg"); }

.puff-in-ver {
  -webkit-animation: puff-in-ver 0.6s both;
  animation: puff-in-ver 0.6s both; }

@-webkit-keyframes puff-in-ver {
  0% {
    -webkit-transform: scaleY(2);
    transform: scaleY(2);
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: 0; }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1; } }
@keyframes puff-in-ver {
  0% {
    -webkit-transform: scaleY(2);
    transform: scaleY(2);
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: 0; }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1; } }
.rotate-in-center {
  -webkit-animation: rotate-in-center 0.6s both;
  animation: rotate-in-center 0.6s both; }

@-webkit-keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotate-in-center {
  0% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    opacity: 0; }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.flicker-3 {
  -webkit-animation: flicker-3 2.5s linear infinite both;
  animation: flicker-3 2.5s linear infinite both; }

@-webkit-keyframes flicker-3 {
  0%,
    100% {
    opacity: 1; }
  32.98% {
    opacity: 1; }
  33% {
    opacity: 0; }
  34% {
    opacity: 0; }
  34.02% {
    opacity: 1; }
  34.98% {
    opacity: 1; }
  35% {
    opacity: 0; }
  35.9% {
    opacity: 0; }
  35.92% {
    opacity: 1; }
  38.98% {
    opacity: 1; }
  39% {
    opacity: 0; }
  39.8% {
    opacity: 0; }
  39.82% {
    opacity: 1; }
  83.98% {
    opacity: 1; }
  84% {
    opacity: 0; }
  84.9% {
    opacity: 0; }
  84.92% {
    opacity: 1; } }
@keyframes flicker-3 {
  0%,
    100% {
    opacity: 1; }
  32.98% {
    opacity: 1; }
  33% {
    opacity: 0; }
  34% {
    opacity: 0; }
  34.02% {
    opacity: 1; }
  34.98% {
    opacity: 1; }
  35% {
    opacity: 0; }
  35.9% {
    opacity: 0; }
  35.92% {
    opacity: 1; }
  38.98% {
    opacity: 1; }
  39% {
    opacity: 0; }
  39.8% {
    opacity: 0; }
  39.82% {
    opacity: 1; }
  83.98% {
    opacity: 1; }
  84% {
    opacity: 0; }
  84.9% {
    opacity: 0; }
  84.92% {
    opacity: 1; } }
#practice {
  width: 100%;
  overflow: hidden; }
  #practice .practice-wrap {
    width: 100%;
    height: auto; }
    #practice .practice-wrap.pw-st {
      display: none;
      background-image: url("../images/pt_deco.png"); }
    #practice .practice-wrap.pw-fm {
      display: none;
      background: #f4bc32; }
    #practice .practice-wrap.cw-st {
      display: block;
      background-color: #cd3e31;
      background-image: url("../images/pt_red.png");
      background-repeat: repeat; }
    #practice .practice-wrap.cw-fm {
      display: block;
      background-color: #f4bc32; }
    #practice .practice-wrap .clear-img {
      width: 100%;
      height: auto;
      position: relative; }
      #practice .practice-wrap .clear-img .clear-img-main {
        display: block;
        width: 100%;
        height: auto;
        position: relative;
        opacity: 0;
        z-index: 1; }
      #practice .practice-wrap .clear-img .clear-img-sub {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        opacity: 0;
        z-index: 0; }
    #practice .practice-wrap .clear-txt {
      text-align: center; }
      #practice .practice-wrap .clear-txt.c-f {
        color: #fff; }
    #practice .practice-wrap .share-box {
      background-color: #fff;
      padding: 5%;
      margin-top: 40px; }
      #practice .practice-wrap .share-box h3 {
        padding: 0; }
      #practice .practice-wrap .share-box p {
        text-align: center; }
      #practice .practice-wrap .share-box .share-bt-box {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center; }
        #practice .practice-wrap .share-box .share-bt-box a {
          display: block;
          width: calc(100% / 3 - 16px);
          max-width: 80px;
          margin: 8px; }
          #practice .practice-wrap .share-box .share-bt-box a img {
            width: 100%;
            height: 100%;
            display: block; }
          #practice .practice-wrap .share-box .share-bt-box a:hover img {
            filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3)); }
    #practice .practice-wrap .link-box {
      margin: 60px auto;
      width: 100%;
      max-width: 900px; }
      #practice .practice-wrap .link-box h4 img {
        width: 92%;
        margin: 0 4%;
        display: block;
        height: auto; }
      #practice .practice-wrap .link-box .link-bn-wrap {
        width: 100%;
        height: auto;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center; }
        #practice .practice-wrap .link-box .link-bn-wrap .link-bn-sin {
          display: block;
          width: 50%;
          margin: 0 10px; }
        #practice .practice-wrap .link-box .link-bn-wrap a {
          display: block;
          width: calc(100% - 8px);
          height: auto;
          border: 4px solid #fff;
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
          border-radius: 4px;
          overflow: hidden;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          transition: all 0.3s; }
          #practice .practice-wrap .link-box .link-bn-wrap a img {
            width: 100%;
            height: auto;
            display: block; }
          #practice .practice-wrap .link-box .link-bn-wrap a:hover {
            border-color: #7c3fab; }
    #practice .practice-wrap h3 {
      padding: 5% 0 0;
      font-size: 40px; }
    #practice .practice-wrap .pr-question {
      width: 100%;
      max-width: 480px;
      margin: auto; }
      #practice .practice-wrap .pr-question img {
        display: block;
        width: 100%;
        height: auto; }
      #practice .practice-wrap .pr-question.quest {
        background-color: #fff;
        display: block;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2); }
    #practice .practice-wrap .pr-pms {
      width: 100%;
      position: relative;
      height: 0;
      padding: 40px 0; }
      #practice .practice-wrap .pr-pms .success-std {
        position: absolute;
        display: block;
        width: 18%;
        height: 15%;
        bottom: 25%;
        right: 40%;
        cursor: initial; }
      #practice .practice-wrap .pr-pms .success-fam {
        position: absolute;
        display: block;
        width: 35%;
        height: 30%;
        top: 27%;
        right: 13%;
        cursor: initial; }
      #practice .practice-wrap .pr-pms.left .pr-pms-img {
        left: -5%; }
      #practice .practice-wrap .pr-pms.right .pr-pms-img {
        right: -5%; }
      #practice .practice-wrap .pr-pms .pr-pms-img {
        display: block;
        width: 320px;
        height: 320px;
        position: absolute;
        margin: auto; }
        #practice .practice-wrap .pr-pms .pr-pms-img img {
          width: 100%;
          height: auto;
          display: block;
          position: relative; }
        #practice .practice-wrap .pr-pms .pr-pms-img.pr-kai {
          bottom: 0;
          top: 0; }
        #practice .practice-wrap .pr-pms .pr-pms-img.pr-fushigi {
          top: 0;
          bottom: 0; }
        #practice .practice-wrap .pr-pms .pr-pms-img.pr-kame {
          bottom: 0; }
        #practice .practice-wrap .pr-pms .pr-pms-img.pr-lizard {
          top: -180%;
          bottom: 0;
          left: -10%; }
        #practice .practice-wrap .pr-pms .pr-pms-img.pr-pika {
          top: -75%; }
        #practice .practice-wrap .pr-pms .pr-pms-img.pr-toge {
          top: 0;
          bottom: 0; }
        #practice .practice-wrap .pr-pms .pr-pms-img.pr-nya {
          top: 0;
          bottom: 0; }

#caution {
  width: 100%;
  background-image: url("../images/pt_deco.png"); }
  #caution .point-copy {
    width: calc(100% - 24px);
    background-color: #7c3fab;
    display: block;
    padding: 30px 12px; }
    #caution .point-copy span {
      color: #fff;
      font-size: 24px;
      font-weight: 600;
      line-height: 1.4em;
      text-align: center;
      display: block;
      margin: auto; }
  #caution h6 {
    text-align: center;
    margin-bottom: 12px; }
  #caution .list-wrap {
    width: 96%;
    height: auto;
    padding: 2%;
    max-width: 800px;
    margin: auto;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 60px;
    background-color: #fff; }
    #caution .list-wrap ul li {
      display: block;
      border-bottom: 1px solid #7c3fab;
      padding: 20px 8px;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.6em; }
      #caution .list-wrap ul li .min {
        font-size: 10px; }
      #caution .list-wrap ul li:nth-last-of-type(1) {
        border-bottom: none; }
      #caution .list-wrap ul li .list-in-list {
        margin-top: 20px; }
        #caution .list-wrap ul li .list-in-list li {
          display: block;
          border-bottom: none;
          padding: 2px 0;
          font-size: 12px; }
      #caution .list-wrap ul li a {
        font-weight: 600;
        text-decoration: underline;
        color: #da3cb8; }
  #caution .table-wrap {
    width: 96%;
    height: auto;
    padding: 2%;
    max-width: 800px;
    margin: auto;
    background-color: #fff; }
    #caution .table-wrap td, #caution .table-wrap th {
      padding: 12px;
      font-size: 14px;
      border: 1px solid #26172b; }
    #caution .table-wrap th {
      background-color: #d9b4e1; }
    #caution .table-wrap table {
      border: 2px solid #26172b; }

#goods, #foods {
  width: 100%;
  background-color: #fff;
  background-image: url("../images/pt_white.png");
  background-repeat: repeat;
  padding: 0 0 40px; }
  #goods h5, #foods h5 {
    color: #fff; }
  #goods .point-copy, #foods .point-copy {
    width: calc(100% - 24px);
    background-color: #7c3fab;
    display: block;
    padding: 30px 12px; }
    #goods .point-copy span, #foods .point-copy span {
      color: #fff;
      font-size: 24px;
      font-weight: 600;
      line-height: 1.4em;
      text-align: center;
      display: block;
      margin: auto; }
    #goods .point-copy p, #foods .point-copy p {
      color: #fff;
      text-align: center;
      margin-bottom: 0; }
  #goods .goods-wrap, #foods .goods-wrap {
    width: 100%;
    display: block; }
    #goods .goods-wrap .goods-sin, #foods .goods-wrap .goods-sin {
      width: 96%;
      height: auto;
      background-color: #fff;
      padding: 2%;
      margin-bottom: 2%;
      border-radius: 12px;
      box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center; }
      #goods .goods-wrap .goods-sin:nth-of-type(even), #foods .goods-wrap .goods-sin:nth-of-type(even) {
        -ms-flex-direction: row-reverse;
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse; }
      #goods .goods-wrap .goods-sin.present, #foods .goods-wrap .goods-sin.present {
        background-color: #f4bc32; }
      #goods .goods-wrap .goods-sin .goods-img, #foods .goods-wrap .goods-sin .goods-img {
        width: 30%;
        height: auto; }
        #goods .goods-wrap .goods-sin .goods-img img, #foods .goods-wrap .goods-sin .goods-img img {
          width: 100%;
          height: auto;
          display: block; }
      #goods .goods-wrap .goods-sin .goods-detail, #foods .goods-wrap .goods-sin .goods-detail {
        width: 62%;
        padding: 4%; }
        #goods .goods-wrap .goods-sin .goods-detail h4, #foods .goods-wrap .goods-sin .goods-detail h4 {
          font-size: 27px;
          font-weight: 600;
          border-bottom: 2px solid #7c3fab;
          padding-bottom: 4px;
          margin-bottom: 8px; }
          #goods .goods-wrap .goods-sin .goods-detail h4::first-letter, #foods .goods-wrap .goods-sin .goods-detail h4::first-letter {
            color: #7c3fab; }
        #goods .goods-wrap .goods-sin .goods-detail .price, #foods .goods-wrap .goods-sin .goods-detail .price {
          display: block;
          font-size: 18px;
          font-weight: 600;
          margin-bottom: 10px; }
        #goods .goods-wrap .goods-sin .goods-detail .text, #foods .goods-wrap .goods-sin .goods-detail .text {
          margin-bottom: 0; }

#archive {
  width: 100%;
  background-color: #fff;
  background-image: url("../images/pt_white.png");
  background-repeat: repeat;
  padding: 40px 0;
  background-color: #da3cb8;
  background-image: url("../images/pt_pink.png");
  background-repeat: repeat; }
  #archive h5 {
    color: #fff; }
  #archive .event-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-wrap: wrap; }
    #archive .event-img div {
      width: calc(100% / 3 - 16px);
      margin: 8px; }
      #archive .event-img div img {
        width: 100%;
        height: auto;
        display: block; }
  #archive .event-img-cap {
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
    display: block;
    font-weight: 600; }

#voice {
  width: 100%;
  background-image: url("../images/pt_deco.png"); }
  #voice .inner-wrap {
    padding-top: 10%; }
  #voice .voice-wrap {
    width: 100%;
    max-width: 800px;
    margin: 60px auto; }
    #voice .voice-wrap .voice-box {
      width: 92%;
      padding: 4%;
      margin: 20px auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center; }
      #voice .voice-wrap .voice-box.houo {
        background-color: #da5a24; }
      #voice .voice-wrap .voice-box.kaze {
        background-color: #7fa6e9; }
      #voice .voice-wrap .voice-box .voice-box-l {
        width: 50%; }
        #voice .voice-wrap .voice-box .voice-box-l .event-title {
          font-size: 21px;
          font-weight: 600;
          text-align: center;
          color: #fff;
          margin-bottom: 20px; }
          #voice .voice-wrap .voice-box .voice-box-l .event-title span {
            font-size: 14px;
            display: block; }
        #voice .voice-wrap .voice-box .voice-box-l .event-visual img {
          width: 100%;
          height: auto; }
      #voice .voice-wrap .voice-box .voice-box-r {
        width: calc(46% - 20px);
        margin-left: 20px;
        background-color: #fff;
        padding: 2%;
        border-radius: 10px;
        max-width: 500px; }
        #voice .voice-wrap .voice-box .voice-box-r .d-tw {
          display: block;
          width: 100%;
          border: 1px solid #e1e8ed;
          border-radius: 4px;
          overflow: hidden; }
          #voice .voice-wrap .voice-box .voice-box-r .d-tw .d-tw-img {
            width: 100%;
            height: auto;
            overflow: hidden; }
            #voice .voice-wrap .voice-box .voice-box-r .d-tw .d-tw-img img {
              display: block;
              width: 100%;
              height: auto; }
          #voice .voice-wrap .voice-box .voice-box-r .d-tw .d-tw-tx {
            padding: 4%;
            font-size: 14px;
            font-weight: 400; }
            #voice .voice-wrap .voice-box .voice-box-r .d-tw .d-tw-tx a {
              color: #2b7bb9; }

#past {
  background-color: #2e2b3c; }
  #past h3 {
    color: #fff; }
  #past .inner-wrap {
    padding-top: 10%; }
  #past .past-wrap {
    width: 100%;
    max-width: 800px;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    margin: auto; }
    #past .past-wrap h6 {
      margin-bottom: 20px; }
    #past .past-wrap .past-bt {
      width: 100%;
      margin-top: 60px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center; }
      #past .past-wrap .past-bt .past-bt-wrap {
        display: block;
        width: 46%;
        padding: 2%;
        max-width: 200px; }
        #past .past-wrap .past-bt .past-bt-wrap a {
          display: block;
          width: 100%;
          height: auto; }
          #past .past-wrap .past-bt .past-bt-wrap a img {
            display: block;
            width: 100%;
            height: auto; }
          #past .past-wrap .past-bt .past-bt-wrap a span {
            display: block;
            text-align: center;
            font-size: 12px;
            color: #fff; }
          #past .past-wrap .past-bt .past-bt-wrap a:hover a {
            opacity: 0.7; }

#news {
  width: 100%;
  background-color: #fff;
  background-image: url("../images/pt_white.png");
  background-repeat: repeat;
  padding: 40px 0; }
  #news .news-wrap {
    width: calc(100% - 20px);
    max-width: 800px;
    margin: 20px auto;
    padding: 0 10px;
    height: 280px;
    overflow: scroll; }
    #news .news-wrap .news-contents {
      width: calc(100% - 24px);
      background-color: #fff;
      padding: 24px 12px;
      box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
      border-radius: 4px;
      text-align: center;
      margin: 12px auto;
      position: relative;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s; }
      #news .news-wrap .news-contents .date {
        font-size: 12px;
        margin-bottom: 6px; }
      #news .news-wrap .news-contents .content {
        font-size: 14px; }
      #news .news-wrap .news-contents a {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%; }
      #news .news-wrap .news-contents:hover {
        background-color: #e8d3ed; }

#point {
  width: 100%;
  background-color: #fff;
  padding: 40px 0 0;
  position: relative; }
  #point:after {
    content: "";
    display: block;
    width: 100%;
    height: 12px;
    position: absolute;
    top: 0;
    background: #e6e5e5;
    background: -moz-linear-gradient(top, #e6e5e5 0%, #ffffff 94%);
    background: -webkit-linear-gradient(top, #e6e5e5 0%, #ffffff 94%);
    background: linear-gradient(to bottom, #e6e5e5 0%, #ffffff 94%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e5e5', endColorstr='#ffffff',GradientType=0 ); }
  #point .point-wrap {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center; }
    #point .point-wrap .point-contents {
      width: calc(100% / 3);
      display: block;
      padding: 12px; }
      #point .point-wrap .point-contents .point-img {
        width: 100%;
        height: auto; }
        #point .point-wrap .point-contents .point-img img {
          width: 100%;
          height: auto; }
      #point .point-wrap .point-contents .point-text {
        font-size: 14px;
        text-align: center; }
  #point .point-copy {
    width: calc(100% - 24px);
    background-color: #da3cb8;
    display: block;
    padding: 12px; }
    #point .point-copy span {
      color: #fff;
      font-size: 24px;
      font-weight: 600;
      line-height: 1.4em;
      text-align: center;
      display: block;
      margin: auto; }

.buddy {
  width: 100%;
  height: auto;
  margin: auto; }
  .buddy .buddy-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background-color: #7c3fab;
    padding: 12px;
    border-radius: 4px; }
  .buddy .buddy-wrap {
    width: 100%;
    height: auto;
    margin: 4% auto 2%;
    padding-bottom: 2%;
    border-bottom: 1px solid #ddd;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center; }
    .buddy .buddy-wrap .buddy-sin {
      width: calc(100% / 6);
      display: block; }
      .buddy .buddy-wrap .buddy-sin .buddy-img {
        width: 96%;
        height: auto;
        margin: auto;
        border-radius: 4px;
        overflow: hidden; }
        .buddy .buddy-wrap .buddy-sin .buddy-img img {
          display: block;
          width: 100%;
          height: auto; }
      .buddy .buddy-wrap .buddy-sin .buddy-name {
        text-align: center;
        font-size: 14px;
        margin-top: 8px; }
  .buddy .buddy-detail {
    text-align: center;
    font-size: 14px; }

#special {
  width: 100%;
  background-color: #fff;
  background-image: url("../images/pt_white.png");
  background-repeat: repeat;
  padding: 40px 0; }
  #special .sp-special-wrap {
    width: 100%;
    padding: 20px 0 0;
    margin: 30px auto 40px; }
    #special .sp-special-wrap a {
      display: block;
      border: 4px solid #fff;
      width: calc(100% - 28px);
      max-width: 480px;
      height: auto;
      margin: 8px auto;
      overflow: hidden;
      box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.4); }
      #special .sp-special-wrap a img {
        width: 100%;
        height: auto;
        display: block; }
      #special .sp-special-wrap a:hover {
        opacity: 0.85; }
  #special .special-wrap {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 auto 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    flex-wrap: wrap; }
    #special .special-wrap a {
      display: block;
      border: 4px solid #fff;
      width: calc(100% / 3 - 28px);
      max-width: 480px;
      height: auto;
      margin: 8px;
      overflow: hidden;
      box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.4); }
      #special .special-wrap a img {
        width: 100%;
        height: auto;
        display: block; }
      #special .special-wrap a:hover {
        opacity: 0.85; }

#story {
  background-color: #000;
  background-image: url("../images/story_bg.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  padding: 100px 0;
  overflow: hidden; }
  #story h3 {
    color: #fff;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.8); }
  #story .story-wrap {
    width: 100%;
    height: auto;
    color: #fff;
    text-align: center;
    margin: 80px auto; }
    #story .story-wrap p {
      font-family: 'Noto Serif JP', serif;
      font-size: 16px;
      line-height: 3em;
      text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.8); }
      #story .story-wrap p.sizeup {
        font-size: 27px; }
        #story .story-wrap p.sizeup span {
          color: #da3cb8; }
        #story .story-wrap p.sizeup i {
          text-decoration: none;
          font-style: initial; }
    #story .story-wrap .letter {
      width: 90%;
      max-width: 520px;
      height: auto;
      margin: 40px auto;
      position: relative; }
      #story .story-wrap .letter img {
        width: 100%;
        height: auto; }
      #story .story-wrap .letter:after {
        content: "";
        display: block;
        width: 320px;
        height: 400px;
        background-image: url("../images/story_img_02.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        right: -48%;
        margin: auto; }

.tab-contents {
  position: relative;
  width: calc(100% - 120px);
  background-color: #fff;
  padding: 60px;
  border-radius: 12px;
  margin-top: 160px;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.2); }
  .tab-contents .tab-bt-wrap {
    width: 94%;
    max-width: 820px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto; }
    .tab-contents .tab-bt-wrap .tab-bt {
      display: block;
      padding: 20px;
      border: 2px solid #7c3fab;
      border-radius: 6px;
      background-color: #7c3fab;
      width: 40%;
      text-align: center;
      margin: 0 6px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      position: relative;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s; }
      .tab-contents .tab-bt-wrap .tab-bt span {
        font-size: 16px;
        color: #fff;
        text-align: center; }
        .tab-contents .tab-bt-wrap .tab-bt span:after {
          content: "▽";
          margin-left: 8px; }
      .tab-contents .tab-bt-wrap .tab-bt input {
        display: none; }
      .tab-contents .tab-bt-wrap .tab-bt .fukidashi {
        display: block;
        position: absolute;
        background-color: #fff;
        color: #7c3fab;
        padding: 10px 50px;
        border-radius: 40px;
        font-size: 14px;
        top: -60px; }
        .tab-contents .tab-bt-wrap .tab-bt .fukidashi:before {
          content: "";
          position: absolute;
          top: 100%;
          left: 50%;
          margin-left: -10px;
          border: 10px solid transparent;
          border-top: 13px solid #fff; }
      .tab-contents .tab-bt-wrap .tab-bt.active {
        background-color: #fff;
        width: 60%;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }
        .tab-contents .tab-bt-wrap .tab-bt.active span {
          color: #7c3fab; }
          .tab-contents .tab-bt-wrap .tab-bt.active span:after {
            content: "▼";
            margin-left: 8px; }
        .tab-contents .tab-bt-wrap .tab-bt.active.mew {
          position: relative; }
          .tab-contents .tab-bt-wrap .tab-bt.active.mew:after {
            content: "";
            display: block;
            width: 150px;
            height: 150px;
            background-image: url("../images/tab_check_mew.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: 100%;
            position: absolute;
            top: -115px; }
        .tab-contents .tab-bt-wrap .tab-bt.active .fukidashi {
          display: none; }
      .tab-contents .tab-bt-wrap .tab-bt:hover {
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        cursor: pointer; }
  .tab-contents .tab-window {
    width: 94%;
    max-width: 800px;
    margin: auto;
    padding: 40px 3%; }
    .tab-contents .tab-window #tab-id-etc {
      display: none; }

#howto {
  width: 100%;
  padding: 40px 0;
  background-color: #2ba171;
  background-image: url("../images/pt_green.png");
  background-repeat: repeat;
  position: relative;
  padding-top: 160px; }
  #howto:before {
    content: "";
    width: 20%;
    height: 100%;
    background-image: url("../images/pm_pt_fushigi.svg");
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    left: 0; }
  #howto:after {
    content: "";
    width: 20%;
    height: 100%;
    background-image: url("../images/pm_pt_fushigi.svg");
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    right: 0; }
  #howto h3 {
    color: #fff; }
  #howto .howto-wrap {
    width: 100%;
    height: auto;
    margin: 40px auto 40px;
    position: relative;
    z-index: 2; }
  #howto .course-detail {
    margin-top: 60px; }
    #howto .course-detail .hl {
      font-size: 18px;
      font-weight: 600;
      background-color: #fff;
      display: block;
      border-radius: 50px;
      text-align: center;
      padding: 12px 20px;
      width: fit-content;
      margin: 20px auto; }
      #howto .course-detail .hl .hl-p {
        color: #7c3fab; }
      #howto .course-detail .hl .hl-o {
        color: #f49500; }
    #howto .course-detail .course-wrap {
      width: 100%;
      height: auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center; }
      #howto .course-detail .course-wrap .course-block {
        width: 50%;
        border: 2px solid #fff;
        border-radius: 12px;
        display: block;
        padding: 4%;
        margin: 8px; }
        #howto .course-detail .course-wrap .course-block .block-hl {
          text-align: center;
          color: #fff;
          font-weight: 600;
          font-size: 18px;
          margin-bottom: 8px; }
        #howto .course-detail .course-wrap .course-block p {
          color: #fff; }
          #howto .course-detail .course-wrap .course-block p span {
            font-size: 10px; }
    #howto .course-detail .course-link {
      text-align: center; }
      #howto .course-detail .course-link .inner-bt {
        background-color: #f49500; }
    #howto .course-detail .family-detail {
      text-align: center;
      color: #fff;
      margin: 60px auto 0;
      width: 100%;
      max-width: 600px; }
      #howto .course-detail .family-detail h6 {
        margin-bottom: 12px; }
      #howto .course-detail .family-detail p {
        text-align: left; }
      #howto .course-detail .family-detail p span {
        font-size: 10px; }
  #howto #tab-id-family {
    display: none; }
  #howto .tab-howto-inner {
    width: 100%;
    max-width: 600px;
    margin: auto; }
    #howto .tab-howto-inner .howto-sin {
      width: 100%;
      margin-top: 60px; }
      #howto .tab-howto-inner .howto-sin:nth-of-type(1) {
        margin-top: 20px; }
      #howto .tab-howto-inner .howto-sin .howto-img {
        width: 100%;
        margin-bottom: 12px; }
        #howto .tab-howto-inner .howto-sin .howto-img img {
          width: 100%;
          height: auto;
          display: block; }
      #howto .tab-howto-inner .howto-sin .howto-text {
        text-align: center;
        font-size: 14px; }
        #howto .tab-howto-inner .howto-sin .howto-text .forsp {
          display: none; }

#ticket {
  width: 100%;
  padding: 40px 0;
  background-color: #2371c5;
  background-image: url("../images/pt_blue.png");
  background-repeat: repeat;
  position: relative;
  padding-top: 160px; }
  #ticket:before {
    content: "";
    width: 20%;
    height: 100%;
    background-image: url("../images/pm_pt_kamex.svg");
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    left: 0; }
  #ticket:after {
    content: "";
    width: 20%;
    height: 100%;
    background-image: url("../images/pm_pt_kamex.svg");
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    right: 0; }
  #ticket h3 {
    color: #fff; }
  #ticket .ticket-wrap {
    width: 100%;
    height: auto;
    margin: 80px auto 40px;
    position: relative;
    z-index: 2; }
  #ticket #tab-id-2 {
    display: none; }
  #ticket .tab-ticket-inner {
    width: 100%;
    max-width: 800px;
    margin: auto; }
    #ticket .tab-ticket-inner .ticket-table {
      padding-top: 60px; }
  #ticket .about-fc {
    text-align: center;
    margin: 60px auto; }
    #ticket .about-fc h6 {
      margin-bottom: 12px; }
    #ticket .about-fc p {
      width: 100%;
      max-width: 600px;
      margin: auto;
      margin-bottom: 1.3em;
      text-align: left; }
    #ticket .about-fc .min {
      font-size: 0.8em; }

/*ticket-table*/
.ticket-table {
  width: 100%;
  max-width: 800px; }
  .ticket-table .table-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .ticket-table .table-row .table-col {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      width: 35%;
      text-align: center;
      border: 1px solid #26172b;
      border-left: none;
      border-bottom: none;
      padding: 16px 4px;
      font-size: 16px;
      height: 60px;
      background-color: #fff;
      position: relative; }
      .ticket-table .table-row .table-col span {
        font-size: 10px;
        display: block; }
      .ticket-table .table-row .table-col:nth-of-type(1) {
        width: 30%;
        border-left: 1px solid #26172b; }
      .ticket-table .table-row .table-col.bg-p {
        background-color: #7c3fab;
        color: #fff; }
      .ticket-table .table-row .table-col.bg-o {
        background-color: #f49500;
        color: #fff; }
      .ticket-table .table-row .table-col.gray {
        background-color: #dbdbdb; }
    .ticket-table .table-row.thead {
      border-top: 1px solid #26172b; }
      .ticket-table .table-row.thead .table-col {
        border: none;
        font-size: 12px;
        background-color: transparent; }
    .ticket-table .table-row.bottom {
      margin-bottom: 8px; }
      .ticket-table .table-row.bottom .table-col {
        border-bottom: 1px solid #26172b; }
      .ticket-table .table-row.bottom .bg-p, .ticket-table .table-row.bottom .bg-o {
        background-image: url("../images/pt_slash.png"); }
  .ticket-table .course-s {
    display: block;
    width: 140px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #2e2b3c;
    padding: 10px 30px 10px 0px;
    line-height: 1.2em;
    position: absolute;
    letter-spacing: 0.1em;
    top: -20px;
    transform: rotate(-5deg);
    color: #26172b;
    font-weight: 400; }
    .ticket-table .course-s:after {
      content: "";
      display: block;
      width: 30px;
      height: 100%;
      position: absolute;
      top: 0;
      right: 0;
      border-left: 1px dashed #2e2b3c; }
  .ticket-table .course-f {
    display: block;
    width: 140px;
    font-size: 16px;
    background-color: #ffffe0;
    border: 1px solid #2e2b3c;
    padding: 10px 30px 10px 0px;
    line-height: 1.2em;
    position: absolute;
    letter-spacing: 0.1em;
    top: -20px;
    transform: rotate(-5deg);
    color: #26172b;
    font-weight: 400; }
    .ticket-table .course-f:after {
      content: "";
      display: block;
      width: 30px;
      height: 100%;
      position: absolute;
      top: 0;
      right: 0;
      border-left: 1px dashed #2e2b3c; }

#forfamily {
  width: 100%;
  background-color: #f4bc32;
  position: relative; }
  #forfamily .close {
    display: none; }
  #forfamily:before {
    content: "";
    width: 20%;
    height: 100%;
    background-image: url("../images/pm_pt_pika.svg");
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; }
  #forfamily:after {
    content: "";
    width: 20%;
    height: 100%;
    background-image: url("../images/pm_pt_pika.svg");
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0; }
  #forfamily .fam-open {
    display: block;
    position: relative;
    z-index: 1;
    border-top: 1px solid #fff;
    border-bottom: 4px solid #f4bc32;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); }
    #forfamily .fam-open .open-bt {
      width: 100%;
      background-color: #fff;
      color: #26172b;
      text-align: center;
      padding: 24px 0;
      font-size: 24px;
      font-weight: 600;
      cursor: pointer; }
      #forfamily .fam-open .open-bt:hover {
        opacity: 0.85; }
    #forfamily .fam-open .pm-img {
      width: 220px;
      height: 270px;
      background-image: url("../images/pm_img_pika.png");
      background-position: center;
      background-repeat: no-repeat;
      background-size: 100%;
      position: absolute;
      top: -90px;
      right: -600px;
      left: 0;
      margin: auto; }
  #forfamily .fam-wrap {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 30px 0;
    position: relative;
    z-index: 2; }
    #forfamily .fam-wrap .dif-wrap {
      position: relative;
      width: 100%; }
      #forfamily .fam-wrap .dif-wrap:before {
        content: "";
        width: 220px;
        height: 220px;
        background-image: url("../images/fam_fukidashi.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1; }
      #forfamily .fam-wrap .dif-wrap .dif-01 {
        width: 60%;
        background-color: #d9b4e1;
        border: 2px solid #fff;
        border-radius: 8px;
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2); }
        #forfamily .fam-wrap .dif-wrap .dif-01 .dif-header {
          background-color: #fff;
          color: #d9b4e1;
          font-size: 15px;
          padding: 6px; }
        #forfamily .fam-wrap .dif-wrap .dif-01 .dif-content {
          text-align: center;
          color: #fff;
          font-size: 16px;
          padding: 4%; }
      #forfamily .fam-wrap .dif-wrap .dif-02 {
        width: 60%;
        background-color: #da3cb8;
        border: 2px solid #fff;
        border-radius: 8px;
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
        position: relative;
        top: -16px;
        left: 20%; }
        #forfamily .fam-wrap .dif-wrap .dif-02 .dif-header {
          background-color: #fff;
          color: #da3cb8;
          font-size: 15px;
          padding: 6px; }
        #forfamily .fam-wrap .dif-wrap .dif-02 .dif-content {
          text-align: center;
          color: #fff;
          font-size: 16px;
          padding: 4%; }
    #forfamily .fam-wrap .fc-title {
      font-size: 16px;
      text-align: center;
      font-weight: 600;
      margin-bottom: 8px; }
      #forfamily .fam-wrap .fc-title span {
        display: block;
        background-color: #26172b;
        color: #fff;
        font-size: 12px;
        border-radius: 4px;
        padding: 5px 8px;
        margin-top: 6px; }
    #forfamily .fam-wrap .team-sample {
      margin: 40px auto 20px; }
      #forfamily .fam-wrap .team-sample .team-sample-img {
        width: 92%;
        max-width: 800px;
        background-color: #fff;
        border: 2px solid #26172b;
        border-radius: 12px;
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
        padding: 4%; }
        #forfamily .fam-wrap .team-sample .team-sample-img .team-sample-img-sin {
          width: 100%;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
          border-top: 1px solid #2e2b3c;
          padding: 20px 0; }
          #forfamily .fam-wrap .team-sample .team-sample-img .team-sample-img-sin:nth-of-type(1) {
            border-top: none; }
          #forfamily .fam-wrap .team-sample .team-sample-img .team-sample-img-sin .arrow {
            width: 60px;
            height: 70px;
            background-image: url("../images/arrow.svg");
            background-position: center;
            background-repeat: no-repeat;
            background-size: 100%; }
          #forfamily .fam-wrap .team-sample .team-sample-img .team-sample-img-sin .img-a img, #forfamily .fam-wrap .team-sample .team-sample-img .team-sample-img-sin .img-b img {
            width: 100%; }
        #forfamily .fam-wrap .team-sample .team-sample-img .team-caution {
          font-size: 12px;
          text-align: center; }
    #forfamily .fam-wrap .fc-price {
      margin: 60px auto 30px; }
    #forfamily .fam-wrap .fc-caption li {
      font-size: 14px;
      margin-bottom: 12px; }
      #forfamily .fam-wrap .fc-caption li div {
        font-size: 12px; }

.other-ticket-wrap {
  width: 100%;
  max-width: 800px;
  margin: auto; }
  .other-ticket-wrap .other-ticket-sin {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 30px 0; }
    .other-ticket-wrap .other-ticket-sin .ticket-img {
      width: calc(50% - 60px);
      padding: 0 30px; }
      .other-ticket-wrap .other-ticket-sin .ticket-img img {
        display: block;
        width: 100%;
        height: auto; }
    .other-ticket-wrap .other-ticket-sin .ticket-details {
      width: 50%; }
      .other-ticket-wrap .other-ticket-sin .ticket-details h6 {
        margin-bottom: 12px; }
      .other-ticket-wrap .other-ticket-sin .ticket-details p span {
        font-weight: 600; }

#schedule-1 {
  width: 100%;
  background-color: #26172b;
  text-align: center; }
  #schedule-1 h5 {
    color: #fff;
    margin-bottom: 1.5em;
    font-size: 27px; }
  #schedule-1 h4 {
    background-color: #f4bc32;
    text-align: center;
    font-size: 1.8em;
    font-weight: 600;
    display: inline-block;
    padding: 16px 40px;
    border-radius: 40px; }
  #schedule-1 .add-schedule {
    text-align: center;
    color: #fff;
    margin: 16px auto; }
    #schedule-1 .add-schedule h6 {
      font-size: 21px;
      font-weight: 600;
      margin-bottom: 16px; }
    #schedule-1 .add-schedule p {
      line-height: 1.8em; }
    #schedule-1 .add-schedule span {
      display: block;
      border-bottom: 1px dashed #fff;
      border-top: 1px dashed #fff;
      width: 100%;
      max-width: 778px;
      margin: 8px auto;
      padding: 6px; }
    #schedule-1 .add-schedule .min {
      font-size: 0.8em; }
    #schedule-1 .add-schedule .sp {
      display: none; }
  #schedule-1 .inner-wrap {
    padding: 8% 4%; }
  #schedule-1 .schedule-1-wrap {
    width: 100%;
    max-width: 800px;
    margin: 0 auto; }
    #schedule-1 .schedule-1-wrap .schedule-sin {
      width: 100%; }
      #schedule-1 .schedule-1-wrap .schedule-sin .schedule-sin-header {
        display: block;
        background-color: #fff;
        color: #26172b;
        text-align: center;
        font-size: 16px;
        padding: 8px; }
      #schedule-1 .schedule-1-wrap .schedule-sin .schedule-sin-details {
        display: block;
        color: #fff;
        text-align: center;
        font-size: 16px;
        padding: 10px 0 18px; }

#schedule-2 {
  width: 100%;
  padding: 100px 0 30px;
  background-color: #cd3e31;
  background-image: url("../images/pt_red.png");
  background-repeat: repeat;
  position: relative; }
  #schedule-2:before {
    content: "";
    width: 20%;
    height: 100%;
    background-image: url("../images/pm_pt_lizard.svg");
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    left: 0; }
  #schedule-2:after {
    content: "";
    width: 20%;
    height: 100%;
    background-image: url("../images/pm_pt_lizard.svg");
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    right: 0; }
  #schedule-2 h3 {
    color: #fff; }
  #schedule-2 .schedule-2-wrap {
    width: 100%;
    padding: 40px 0;
    position: relative;
    z-index: 2; }
    #schedule-2 .schedule-2-wrap .area-select-wrap .area-arrow {
      display: none; }
    #schedule-2 .schedule-2-wrap .area-select {
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center; }
      #schedule-2 .schedule-2-wrap .area-select .area-bt {
        width: 80px;
        height: 80px;
        margin: 4px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        background-image: url("../images/area_bt.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        cursor: pointer;
        filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.6)); }
        #schedule-2 .schedule-2-wrap .area-select .area-bt span {
          color: #fff;
          font-size: 12px; }
        #schedule-2 .schedule-2-wrap .area-select .area-bt.active {
          background-image: url("../images/area_bt2.svg"); }
    #schedule-2 .schedule-2-wrap .area-space {
      padding: 20px 0; }
    #schedule-2 .schedule-2-wrap .area-block {
      display: none; }
      #schedule-2 .schedule-2-wrap .area-block.active {
        display: block; }
    #schedule-2 .schedule-2-wrap .about-fc {
      text-align: center;
      margin: 60px auto; }
      #schedule-2 .schedule-2-wrap .about-fc h6 {
        margin-bottom: 12px; }
      #schedule-2 .schedule-2-wrap .about-fc p {
        width: 100%;
        max-width: 600px;
        margin: auto;
        margin-bottom: 1.3em;
        text-align: left; }
      #schedule-2 .schedule-2-wrap .about-fc ul {
        width: 100%;
        max-width: 600px;
        margin: 20px auto; }
      #schedule-2 .schedule-2-wrap .about-fc li {
        text-align: left;
        font-size: 12px;
        margin-bottom: 8px; }
        #schedule-2 .schedule-2-wrap .about-fc li span {
          font-size: 10px; }
    #schedule-2 .schedule-2-wrap .area-wrap {
      width: 100%;
      max-width: 840px;
      background-color: #fff;
      margin: 20px auto;
      border-radius: 12px;
      box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2); }
      #schedule-2 .schedule-2-wrap .area-wrap .area-switch {
        width: 100%;
        height: 40px;
        display: block;
        background-color: #26172b;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        position: relative;
        cursor: pointer; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-switch:after {
          content: "";
          width: 12px;
          height: 12px;
          transform: rotate(225deg);
          border-left: 1px solid #fff;
          border-top: 1px solid #fff;
          display: block;
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          margin: auto; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-switch:hover {
          opacity: 0.85; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-switch.open:after {
          transform: rotate(45deg); }
      #schedule-2 .schedule-2-wrap .area-wrap .area-header {
        width: calc(100% - 40px);
        background-color: #f4bc32;
        padding: 20px;
        text-align: center;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-header .date {
          font-size: 16px; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-header.active {
          color: #cd3e31; }
      #schedule-2 .schedule-2-wrap .area-wrap .area-contents {
        display: none;
        padding: 4%;
        width: 92%; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-contents .ticket-table.fc {
          margin-top: 80px; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-contents .stage {
          width: 100%;
          text-align: center;
          padding: 40px 0; }
          #schedule-2 .schedule-2-wrap .area-wrap .area-contents .stage .stage-name {
            font-size: 30px;
            font-weight: 600;
            color: #cd3e31; }
          #schedule-2 .schedule-2-wrap .area-wrap .area-contents .stage .stage-address {
            font-size: 14px;
            padding: 12px 0; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-contents .access {
          text-align: center;
          font-size: 12px; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-contents .area-price {
          margin-top: 40px; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-contents .tmc-wrap {
          width: 100%;
          height: auto;
          display: block;
          margin: 40px auto; }
          #schedule-2 .schedule-2-wrap .area-wrap .area-contents .tmc-wrap h6 {
            text-align: center;
            margin-bottom: -30px; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide {
          width: 100%;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center;
          flex-wrap: wrap;
          text-align: center;
          margin: 40px auto 80px;
          border-bottom: 4px solid #26172b;
          display: none; }
          #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide h6 {
            margin-bottom: 8px; }
          #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide.hide {
            display: none; }
          #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s100 {
            width: 100%;
            padding: 20px 0;
            border: 1px solid #26172b;
            border-bottom: none;
            border-top: 4px solid #26172b;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            transition: all 0.3s; }
            #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s100 span {
              font-size: 14px;
              color: #26172b; }
            #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s100:hover {
              background-color: #d9b4e1; }
              #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s100:hover span {
                color: #26172b; }
          #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s33 {
            width: calc(100% / 3 - 1px);
            padding: 20px 0;
            border: 1px solid #26172b;
            border-left: none;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            transition: all 0.3s; }
            #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s33:nth-of-type(2) {
              width: calc(100% / 3 - 2px);
              border-left: 1px solid #26172b; }
            #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s33 span {
              font-size: 14px;
              color: #26172b; }
            #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s33:hover {
              background-color: #d9b4e1; }
              #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s33:hover span {
                color: #26172b; }
          #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide a.coming {
            position: relative; }
            #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide a.coming:after {
              content: "COMING SOON";
              width: 100%;
              padding: 20px 0;
              background-color: rgba(0, 0, 0, 0.3);
              position: absolute;
              top: 0;
              left: 0;
              color: #fff;
              text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); }
            #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide a.coming:hover {
              background-color: #fff; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-contents .area-schedule {
          width: 100%;
          margin: 40px auto;
          display: none; }
          #schedule-2 .schedule-2-wrap .area-wrap .area-contents .area-schedule .schedule-sin {
            width: 100%; }
            #schedule-2 .schedule-2-wrap .area-wrap .area-contents .area-schedule .schedule-sin .schedule-sin-header {
              display: block;
              background-color: #cd3e31;
              color: #26172b;
              text-align: center;
              font-size: 16px;
              padding: 8px 0;
              color: #fff; }
            #schedule-2 .schedule-2-wrap .area-wrap .area-contents .area-schedule .schedule-sin .schedule-sin-details {
              display: block;
              text-align: center;
              font-size: 16px;
              padding: 10px 0 18px; }
        #schedule-2 .schedule-2-wrap .area-wrap .area-contents .credit {
          font-size: 14px; }

#footer-bn {
  width: 100%;
  background-color: #fff;
  background-image: url("../images/pt_white.png");
  background-repeat: repeat; }
  #footer-bn .bn-wrap {
    width: 94%;
    padding: 80px 3%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative; }
    #footer-bn .bn-wrap:after {
      content: "";
      width: 150px;
      height: 150px;
      display: block;
      background-image: url("../images/pm_img_mew.png");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center;
      position: absolute;
      top: -70px;
      right: 0;
      left: 40%;
      margin: auto; }
    #footer-bn .bn-wrap a {
      display: block;
      width: 100%;
      max-width: 320px;
      border-radius: 6px;
      overflow: hidden;
      margin: 12px;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }
      #footer-bn .bn-wrap a img {
        width: 100%;
        height: auto;
        display: block; }
      #footer-bn .bn-wrap a:hover {
        opacity: 0.85; }

footer {
  width: 100%;
  background-color: #000; }
  footer .footer-wrap {
    width: 94%;
    padding: 3%; }
    footer .footer-wrap .mailmag {
      width: 100%;
      max-width: 400px;
      display: block;
      margin: auto; }
      footer .footer-wrap .mailmag:hover {
        opacity: 0.85; }
      footer .footer-wrap .mailmag img {
        width: 100%;
        height: auto; }
    footer .footer-wrap .title-wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      margin: 60px auto; }
      footer .footer-wrap .title-wrap a {
        width: 100%;
        max-width: 300px;
        height: auto; }
        footer .footer-wrap .title-wrap a:hover {
          opacity: 0.85; }
        footer .footer-wrap .title-wrap a img {
          width: 100%;
          height: auto; }
    footer .footer-wrap .copyrights {
      text-align: center;
      color: #fff;
      font-size: 10px; }

.modal-window {
  display: none; }

.modal-window h4, .modaal-container h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em; }
.modal-window .modal-img, .modaal-container .modal-img {
  height: 0;
  position: relative;
  padding-top: 56.25%;
  display: block;
  margin-bottom: 20px; }
  .modal-window .modal-img iframe, .modaal-container .modal-img iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0; }
.modal-window .tx-center, .modaal-container .tx-center {
  text-align: center; }

/*campaign*/
#camp {
  width: 100%;
  height: auto;
  background-image: url("../images/quo_pt.gif");
  background-position: center;
  overflow: hidden; }
  #camp .camp-header {
    width: 100%;
    position: relative;
    margin-bottom: -3vw; }
    #camp .camp-header .camp-img-wrap {
      padding-top: 2%; }
      #camp .camp-header .camp-img-wrap:after {
        content: "";
        background-color: #7c3fab;
        width: 100%;
        height: calc(100% - 3vw + 1px);
        position: absolute;
        top: 0;
        display: block;
        z-index: 1; }
    #camp .camp-header img {
      position: relative;
      width: 92%;
      height: auto;
      display: block;
      padding: 0 4%;
      max-width: 400px;
      margin: auto;
      z-index: 2;
      filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.6)); }
  #camp .camp-header-bottom {
    position: relative; }
    #camp .camp-header-bottom svg {
      fill: #7c3fab; }
  #camp .camp-content {
    width: 100%;
    height: auto;
    padding: 20px 0 40px; }
    #camp .camp-content .camp-title {
      width: calc(100% - 240px);
      height: auto;
      margin: auto;
      position: relative; }
      #camp .camp-content .camp-title .camp-logo {
        width: 100%;
        max-width: 1060px;
        height: auto;
        display: block;
        margin: auto;
        z-index: 1;
        position: relative; }
    #camp .camp-content .camp-read {
      width: 92%;
      height: auto;
      max-width: 800px;
      padding: 0 4%;
      margin: auto; }
      #camp .camp-content .camp-read p {
        text-align: center; }
    #camp .camp-content .howto {
      width: 88%;
      height: auto;
      max-width: 500px;
      padding: 4% 2% 2%;
      border-radius: 12px;
      margin: auto;
      background-color: #fff;
      border: 2px solid #7c3fab;
      box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4); }
      #camp .camp-content .howto h5 {
        color: #7c3fab; }
      #camp .camp-content .howto .howto-sin {
        display: block;
        color: #fff;
        background-color: #7c3fab;
        padding: 20px 12px;
        border-radius: 4px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        margin: 8px 0px;
        text-align: center;
        background-image: url("../images/pt_slash.png"); }
        #camp .camp-content .howto .howto-sin span {
          font-size: 30px;
          display: block; }
    #camp .camp-content .camp-nazo {
      width: calc(92% - 4px);
      height: auto;
      max-width: 800px;
      padding: 1%;
      margin: auto;
      background-color: #4556a4;
      border-radius: 20px;
      border: 2px solid #7584ca;
      margin-top: 40px; }
      #camp .camp-content .camp-nazo .nazo-desc {
        width: 100%;
        max-width: 720px;
        margin: auto;
        height: auto; }
        #camp .camp-content .camp-nazo .nazo-desc img {
          width: 100%;
          height: auto;
          display: block; }
      #camp .camp-content .camp-nazo .nazo-img {
        width: 100%;
        height: auto; }
        #camp .camp-content .camp-nazo .nazo-img img {
          width: 100%;
          height: auto;
          display: block; }
    #camp .camp-content .camp-form {
      width: 92%;
      height: auto;
      max-width: 800px;
      padding: 4%;
      margin: auto; }
      #camp .camp-content .camp-form .form-input {
        font-size: 21px;
        padding: 18px 12px;
        border: 1px solid #000;
        display: block;
        text-align: center;
        border-radius: 6px;
        width: calc(100% - 26px);
        max-width: 540px;
        margin: auto;
        box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
        background-color: #fff; }
        #camp .camp-content .camp-form .form-input:focus {
          outline-color: #7c3fab; }
      #camp .camp-content .camp-form .form-send {
        max-width: 250px;
        width: 100%;
        margin: 2em auto 0;
        border: none;
        text-align: center;
        display: block;
        background: #fff000;
        border-radius: 7px;
        padding: 1em 0;
        color: #4556a4;
        font-size: 16px;
        margin-top: 10px;
        box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4); }
        #camp .camp-content .camp-form .form-send:focus {
          outline: none; }
        #camp .camp-content .camp-form .form-send:hover {
          opacity: 0.75; }
  #camp .camp-info .info {
    width: calc(96% - 4px);
    max-width: 600px;
    height: auto;
    margin: 40px auto;
    display: block;
    border: 2px solid #7c3fab;
    padding: 2%;
    background-color: #fff;
    border-radius: 8px;
    text-align: center; }
    #camp .camp-info .info h6 {
      display: block;
      background-color: #7c3fab;
      color: #fff;
      padding: 4px;
      font-size: 16px;
      text-align: center;
      margin-bottom: 12px; }
    #camp .camp-info .info p:last-of-type {
      margin-bottom: 0; }
    #camp .camp-info .info small {
      line-height: 1em; }
    #camp .camp-info .info .readme {
      font-size: 12px;
      text-align: left; }
  #camp .camp-present {
    width: 100%;
    height: auto;
    background-color: #fff;
    background-image: url("../images/pt_white.png");
    background-repeat: repeat;
    text-align: center;
    padding: 20px 0; }
    #camp .camp-present h4 {
      font-size: 21px;
      font-weight: 600;
      display: inline-block;
      position: relative;
      width: 90%;
      max-width: 400px;
      height: 50px;
      /*リボンの高さ*/
      line-height: 50px;
      /*リボンの高さ*/
      text-align: center;
      padding: 0 20px;
      /*横の大きさ*/
      font-size: 18px;
      /*文字の大きさ*/
      background: #de3f78;
      color: #FFF;
      /*文字色*/
      box-sizing: border-box; }
      #camp .camp-present h4:before, #camp .camp-present h4:after {
        position: absolute;
        content: '';
        width: 0px;
        height: 0px;
        z-index: 1; }
      #camp .camp-present h4:before {
        top: 0;
        left: 0;
        border-width: 25px 0px 25px 15px;
        border-color: transparent transparent transparent #f4f4f3;
        border-style: solid; }
      #camp .camp-present h4:after {
        top: 0;
        right: 0;
        border-width: 25px 15px 25px 0px;
        border-color: transparent #f4f4f3 transparent transparent;
        border-style: solid; }
    #camp .camp-present .card-img {
      display: block;
      width: 94%;
      max-width: 480px;
      margin: 0px auto -30px; }
    #camp .camp-present .camp-prize {
      width: 100%;
      max-width: 600px;
      height: auto;
      margin: auto; }
      #camp .camp-present .camp-prize img {
        display: block;
        width: 100%;
        height: auto; }
    #camp .camp-present ul {
      max-width: 500px;
      margin: auto; }
      #camp .camp-present ul li {
        font-size: 15px;
        border-bottom: 1px solid #000;
        padding: 12px 4px; }
        #camp .camp-present ul li:last-of-type {
          border: none; }
  #camp .camp-link .inner-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    max-width: 768px; }
    #camp .camp-link .inner-wrap a {
      width: 100%;
      max-width: 320px;
      text-align: center; }
      #camp .camp-link .inner-wrap a img {
        width: calc(96% - 8px);
        height: auto;
        box-shadow: 5px 5px 6px 0 rgba(0, 0, 0, 0.3);
        transition-duration: .2s;
        border: 4px solid #fff;
        border-radius: 4px; }
        #camp .camp-link .inner-wrap a img:hover {
          box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.5);
          border: 4px solid #7c3fab; }
  #camp .present-form .inner-title {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin: auto;
    margin-bottom: 40px; }
    #camp .present-form .inner-title img {
      display: block;
      width: 100%;
      height: auto; }
  #camp .present-form .inner-wrap .present-desc {
    text-align: center;
    margin-bottom: 40px; }
  #camp .present-form .inner-wrap form .form-item {
    max-width: 400px;
    margin: 1em auto 1.5em; }
    #camp .present-form .inner-wrap form .form-item input {
      font-size: 21px;
      padding: 18px 12px;
      border: 1px solid #000;
      display: block;
      border-radius: 6px;
      width: calc(100% - 26px);
      max-width: 540px;
      margin: auto;
      box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
      background-color: #fff; }
      #camp .present-form .inner-wrap form .form-item input:focus {
        outline-color: #7c3fab; }
    #camp .present-form .inner-wrap form .form-item p {
      margin-bottom: 0; }
  #camp .present-form .inner-wrap form .check input[type=checkbox] {
    display: none; }
  #camp .present-form .inner-wrap form .check label {
    position: relative; }
  #camp .present-form .inner-wrap form .check input[type=checkbox] + label:before {
    content: "";
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    border: solid 1px #000;
    margin-right: 4px;
    vertical-align: bottom;
    border-radius: 4px; }
  #camp .present-form .inner-wrap form .check input[type=checkbox]:checked + label:after {
    content: "";
    border-left: 4px #000 solid;
    border-bottom: 4px #000 solid;
    width: 14px;
    height: 5px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 3px;
    top: 6px;
    position: absolute; }
  #camp .present-form .inner-wrap form input[type=submit] {
    max-width: 250px;
    width: 100%;
    margin: 2em auto 0;
    text-align: center;
    display: block;
    background: #7c3fab;
    border-radius: 7px;
    padding: 1em 0;
    color: #fff;
    font-size: 16px;
    margin-top: 40px; }
    #camp .present-form .inner-wrap form input[type=submit]:focus {
      outline: none; }
    #camp .present-form .inner-wrap form input[type=submit]:hover {
      opacity: 0.75; }

/*peel-off*/
#page-title.peel-id {
  background-image: url("../images/traffic_backpt.png");
  position: relative; }
  #page-title.peel-id:after {
    content: "";
    width: 50%;
    height: 100%;
    background-image: url("../images/peel_top.png");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0; }
  #page-title.peel-id .inner-wrap {
    padding: 4%;
    position: relative;
    z-index: 2; }
  #page-title.peel-id h2 {
    display: block;
    background: #fff;
    width: 60%;
    max-width: 600px;
    height: auto;
    border: 12px solid #7c3fab;
    margin: auto 5% auto 35%;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg); }

#peel-info {
  background-color: #000;
  width: 100%;
  height: auto;
  position: relative; }
  #peel-info .rule-wrap {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center; }
    #peel-info .rule-wrap .rule-1, #peel-info .rule-wrap .rule-2 {
      width: 50%;
      height: auto; }
      #peel-info .rule-wrap .rule-1 img, #peel-info .rule-wrap .rule-2 img {
        width: 100%;
        height: auto;
        display: block; }
  #peel-info .point {
    width: 96%;
    padding: 0 2%;
    height: auto;
    color: #fff;
    font-size: 12px; }
  #peel-info:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 90%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: auto;
    background-image: url("../images/peel_end.png");
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat; }

.peel-switch {
  width: 100%;
  background-color: #7c3fab; }
  .peel-switch .inner-wrap {
    padding: 2% 4%; }
  .peel-switch .peel-bt-wrap {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
    .peel-switch .peel-bt-wrap .peel-bt {
      width: 240px;
      text-align: center;
      padding: 20px;
      background-color: #fff;
      border: 2px solid #7c3fab;
      color: #7c3fab;
      border-radius: 6px;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      margin: 10px;
      height: 50px;
      cursor: pointer;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      transition: all 0.3s;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center; }
      .peel-switch .peel-bt-wrap .peel-bt:hover {
        background-color: #d9b4e1; }
      .peel-switch .peel-bt-wrap .peel-bt.active {
        background-color: #f4bc32; }
      .peel-switch .peel-bt-wrap .peel-bt span {
        display: block; }

#wall {
  display: none;
  background-color: #fff;
  background-image: url("../images/pt_white.png");
  background-repeat: repeat; }
  #wall.active {
    display: block; }
  #wall .q-container {
    width: calc(100% - 32px);
    max-width: 638px;
    margin: auto;
    height: auto;
    background-color: #fff;
    border-radius: 24px;
    border: 16px solid #5f1982;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    position: relative;
    margin-top: 10%; }
    #wall .q-container .q-header {
      width: 96%;
      height: auto;
      padding: 2%;
      text-align: right;
      position: relative; }
      #wall .q-container .q-header .q-header-img {
        width: 40%;
        max-width: 600px;
        height: auto;
        position: absolute;
        left: 4%;
        bottom: -20px; }
        #wall .q-container .q-header .q-header-img img {
          width: 100%;
          height: auto;
          display: block; }
      #wall .q-container .q-header .q-title {
        background-color: #666;
        color: #fff;
        padding: 10px 18px;
        border-radius: 40px;
        font-weight: 600;
        font-size: 16px;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
    #wall .q-container .q-img {
      width: 96%;
      height: auto;
      padding: 4% 2%; }
      #wall .q-container .q-img img {
        width: 100%;
        height: auto;
        display: block; }
    #wall .q-container .q-box {
      width: 100%;
      height: auto; }
      #wall .q-container .q-box .true {
        background-color: #5f1982;
        width: 100%;
        min-height: 274px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px; }
        #wall .q-container .q-box .true a {
          display: block;
          width: 100%;
          height: auto; }
          #wall .q-container .q-box .true a img {
            width: 90%;
            max-width: 600px;
            margin: auto;
            height: auto;
            display: block; }
        #wall .q-container .q-box .true:hover {
          background-color: #7c3fab; }
          #wall .q-container .q-box .true:hover a img {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)); }
      #wall .q-container .q-box .q-form {
        width: calc(100% - 40px);
        background-color: #5f1982;
        padding: 40px 20px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center; }
        #wall .q-container .q-box .q-form input {
          width: calc(100% - 128px);
          max-width: 400px;
          height: 50px;
          padding: 12px;
          background-color: #fff;
          font-size: 21px;
          border-radius: 6px;
          margin-right: 8px; }
          #wall .q-container .q-box .q-form input:focus {
            outline: none;
            box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4); }
        #wall .q-container .q-box .q-form button {
          width: 120px;
          height: 74px;
          padding: 12px;
          font-size: 21px;
          line-height: 1em;
          color: #fff;
          background-color: #5f1982;
          border: 2px solid #fff;
          border-radius: 6px;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          transition: all 0.3s; }
          #wall .q-container .q-box .q-form button:focus {
            outline: none; }
          #wall .q-container .q-box .q-form button:hover {
            background-color: #7c3fab; }
      #wall .q-container .q-box .hint-box {
        padding: 20px 4%;
        width: 92%;
        height: 80px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; }
        #wall .q-container .q-box .hint-box .hint-bt {
          display: block;
          width: 160px;
          border: 2px solid #7c3fab;
          font-size: 16px;
          height: 40px;
          background-color: #fff;
          border-radius: 4px;
          color: #7c3fab;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          transition: all 0.3s; }
          #wall .q-container .q-box .hint-box .hint-bt:focus {
            outline: none; }
          #wall .q-container .q-box .hint-box .hint-bt:hover {
            background-color: #f4bc32; }
        #wall .q-container .q-box .hint-box p {
          margin-bottom: 0; }
    #wall .q-container.fushigi {
      border-color: #2ba171; }
      #wall .q-container.fushigi .q-header .q-title {
        background-color: #2ba171; }
      #wall .q-container.fushigi .q-box {
        width: 100%;
        height: auto; }
        #wall .q-container.fushigi .q-box .true {
          background-color: #2ba171; }
        #wall .q-container.fushigi .q-box .q-form {
          background-color: #2ba171; }
          #wall .q-container.fushigi .q-box .q-form button {
            background-color: #2ba171; }
        #wall .q-container.fushigi .q-box .hint-box .hint-bt {
          border-color: #2ba171;
          color: #2ba171; }
          #wall .q-container.fushigi .q-box .hint-box .hint-bt:hover {
            background-color: #ddd; }
    #wall .q-container.lizard {
      border-color: #cd3e31; }
      #wall .q-container.lizard .q-header .q-title {
        background-color: #cd3e31; }
      #wall .q-container.lizard .q-box {
        width: 100%;
        height: auto; }
        #wall .q-container.lizard .q-box .true {
          background-color: #cd3e31; }
        #wall .q-container.lizard .q-box .q-form {
          background-color: #cd3e31; }
          #wall .q-container.lizard .q-box .q-form button {
            background-color: #cd3e31; }
        #wall .q-container.lizard .q-box .hint-box .hint-bt {
          border-color: #cd3e31;
          color: #cd3e31; }
          #wall .q-container.lizard .q-box .hint-box .hint-bt:hover {
            background-color: #ddd; }
    #wall .q-container.kamex {
      border-color: #2371c5; }
      #wall .q-container.kamex .q-header .q-title {
        background-color: #2371c5; }
      #wall .q-container.kamex .q-box {
        width: 100%;
        height: auto; }
        #wall .q-container.kamex .q-box .true {
          background-color: #2371c5; }
        #wall .q-container.kamex .q-box .q-form {
          background-color: #2371c5; }
          #wall .q-container.kamex .q-box .q-form button {
            background-color: #2371c5; }
        #wall .q-container.kamex .q-box .hint-box .hint-bt {
          border-color: #2371c5;
          color: #2371c5; }
          #wall .q-container.kamex .q-box .hint-box .hint-bt:hover {
            background-color: #ddd; }
    #wall .q-container.pika {
      border-color: #f4bc32; }
      #wall .q-container.pika .q-header .q-title {
        background-color: #f4bc32; }
      #wall .q-container.pika .q-box {
        width: 100%;
        height: auto; }
        #wall .q-container.pika .q-box .true {
          background-color: #f4bc32; }
        #wall .q-container.pika .q-box .q-form {
          background-color: #f4bc32; }
          #wall .q-container.pika .q-box .q-form button {
            background-color: #f4bc32; }
        #wall .q-container.pika .q-box .hint-box .hint-bt {
          border-color: #f4bc32;
          color: #f4bc32; }
          #wall .q-container.pika .q-box .hint-box .hint-bt:hover {
            background-color: #ddd; }
    #wall .q-container.togepee {
      border-color: #b0a275; }
      #wall .q-container.togepee .q-header .q-title {
        background-color: #b0a275; }
      #wall .q-container.togepee .q-box {
        width: 100%;
        height: auto; }
        #wall .q-container.togepee .q-box .true {
          background-color: #b0a275; }
        #wall .q-container.togepee .q-box .q-form {
          background-color: #b0a275; }
          #wall .q-container.togepee .q-box .q-form button {
            background-color: #b0a275; }
        #wall .q-container.togepee .q-box .hint-box .hint-bt {
          border-color: #b0a275;
          color: #b0a275; }
          #wall .q-container.togepee .q-box .hint-box .hint-bt:hover {
            background-color: #ddd; }
    #wall .q-container.nya {
      border-color: #945424; }
      #wall .q-container.nya .q-header .q-title {
        background-color: #945424; }
      #wall .q-container.nya .q-box {
        width: 100%;
        height: auto; }
        #wall .q-container.nya .q-box .true {
          background-color: #945424; }
        #wall .q-container.nya .q-box .q-form {
          background-color: #945424; }
          #wall .q-container.nya .q-box .q-form button {
            background-color: #945424; }
        #wall .q-container.nya .q-box .hint-box .hint-bt {
          border-color: #945424;
          color: #945424; }
          #wall .q-container.nya .q-box .hint-box .hint-bt:hover {
            background-color: #ddd; }

#page-title.traffic-id {
  width: 100%;
  background-image: url("../images/traffic_backpt.png");
  background-position: bottom;
  padding-top: 40px; }
  #page-title.traffic-id .inner-wrap {
    padding: 0;
    max-width: initial;
    width: 100%;
    position: relative;
    max-width: 1100px;
    margin: auto; }
  #page-title.traffic-id .traffic-mv {
    width: 100%;
    height: auto;
    position: relative;
    max-width: 1100px;
    margin: auto; }
    #page-title.traffic-id .traffic-mv img {
      width: 100%;
      height: auto;
      display: block; }
  #page-title.traffic-id h2 {
    width: 90%;
    max-width: 900px;
    display: block;
    margin: auto;
    margin-top: -12%;
    position: relative; }
    #page-title.traffic-id h2 img {
      display: block; }

#traffic-info {
  background-image: url("../images/traffic_backpt.png");
  background-position: top; }
  #traffic-info .traffic-wrap {
    width: 100%;
    height: auto; }
    #traffic-info .traffic-wrap .copy {
      width: 90%;
      height: auto;
      margin: auto;
      margin-bottom: 20px; }
      #traffic-info .traffic-wrap .copy img {
        width: 100%;
        height: auto;
        display: block; }
    #traffic-info .traffic-wrap .image {
      width: 100%;
      height: auto;
      max-width: 800px;
      margin: auto;
      margin-bottom: 20px; }
      #traffic-info .traffic-wrap .image img {
        width: 100%;
        height: auto;
        display: block; }
    #traffic-info .traffic-wrap .text {
      width: 100%;
      max-width: 600px;
      height: auto;
      margin: 40px auto;
      display: block; }
    #traffic-info .traffic-wrap .info {
      width: calc(96% - 4px);
      max-width: 600px;
      height: auto;
      margin: 40px auto;
      display: block;
      border: 2px solid #7c3fab;
      padding: 2%;
      background-color: #fff;
      border-radius: 8px;
      text-align: center; }
      #traffic-info .traffic-wrap .info h6 {
        display: block;
        background-color: #7c3fab;
        color: #fff;
        padding: 4px;
        font-size: 16px;
        text-align: center;
        margin-bottom: 12px; }
      #traffic-info .traffic-wrap .info p:last-of-type {
        margin-bottom: 0; }
    #traffic-info .traffic-wrap .link-box {
      width: 100%;
      height: auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      #traffic-info .traffic-wrap .link-box .common-bt {
        width: 240px;
        text-align: center;
        padding: 20px;
        background-color: #fff;
        border: 2px solid #7c3fab;
        color: #7c3fab;
        border-radius: 6px;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        margin: 10px;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        transition: all 0.3s; }
        #traffic-info .traffic-wrap .link-box .common-bt:hover {
          background-color: #d9b4e1; }
        #traffic-info .traffic-wrap .link-box .common-bt.active {
          background-color: #f4bc32; }

#traffic {
  width: 100%;
  height: auto;
  display: none; }
  #traffic.active {
    display: block; }
  #traffic .level-wrap {
    width: 100%;
    height: auto; }
    #traffic .level-wrap.level-1 {
      background-image: url("../images/pt_white.png");
      background-repeat: repeat; }
      #traffic .level-wrap.level-1 .inner-wrap {
        position: relative; }
        #traffic .level-wrap.level-1 .inner-wrap .level-pm {
          background-image: url("../images/level_pm_01.png");
          width: 27%;
          padding-top: 35%;
          position: absolute;
          top: 0;
          right: 10%;
          background-repeat: no-repeat;
          background-position: center bottom;
          background-size: cover; }
    #traffic .level-wrap.level-2 {
      background-color: #ffe86f;
      background-image: url("../images/pt_white.png");
      background-repeat: repeat;
      background-blend-mode: multiply; }
      #traffic .level-wrap.level-2 .inner-wrap {
        position: relative; }
        #traffic .level-wrap.level-2 .inner-wrap .level-pm {
          background-image: url("../images/level_pm_02.png");
          width: 27%;
          padding-top: 35%;
          position: absolute;
          top: 0;
          left: 5%;
          background-repeat: no-repeat;
          background-position: center bottom;
          background-size: cover; }
    #traffic .level-wrap.level-3 {
      background-color: #ad80d0;
      background-image: url("../images/pt_white.png");
      background-repeat: repeat;
      background-blend-mode: multiply; }
      #traffic .level-wrap.level-3 .inner-wrap {
        position: relative; }
        #traffic .level-wrap.level-3 .inner-wrap .level-pm {
          background-image: url("../images/level_pm_03.png");
          width: 30%;
          padding-top: 37%;
          position: absolute;
          top: 0;
          right: 5%;
          background-repeat: no-repeat;
          background-position: center bottom;
          background-size: cover; }
    #traffic .level-wrap .q-level {
      width: 90%;
      padding: 5%;
      height: auto;
      max-width: 672px;
      margin: auto;
      position: relative; }
      #traffic .level-wrap .q-level .level-img {
        background-color: #fff;
        border-radius: 40px;
        width: 240px;
        height: auto;
        border: 4px solid #5f1982; }
        #traffic .level-wrap .q-level .level-img img {
          width: 100%;
          display: block; }
        #traffic .level-wrap .q-level .level-img.odd {
          margin-left: auto; }
    #traffic .level-wrap .q-container {
      width: calc(100% - 32px);
      max-width: 638px;
      margin: auto;
      height: auto;
      background-color: #fff;
      border-radius: 24px;
      border: 16px solid #5f1982;
      box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      margin-bottom: 20px;
      position: relative; }
      #traffic .level-wrap .q-container .nazo-num {
        display: block;
        position: absolute;
        background-color: #5f1982;
        padding: 0px 12px 6px;
        border-bottom-right-radius: 6px;
        color: #fff;
        font-weight: 600;
        font-size: 21px; }
        #traffic .level-wrap .q-container .nazo-num span {
          margin-left: 4px;
          display: inline-block;
          position: relative;
          font-size: 21px;
          vertical-align: bottom;
          width: 32px;
          height: 32px;
          text-align: center;
          line-height: 30px; }
          #traffic .level-wrap .q-container .nazo-num span:after {
            content: "";
            display: block;
            position: absolute;
            border: 2px solid #fff;
            width: 28px;
            height: 28px;
            top: 0;
            left: 0;
            border-radius: 28px; }
      #traffic .level-wrap .q-container .q-img {
        width: 96%;
        height: auto;
        padding: 4% 2%;
        margin-top: 20px; }
        #traffic .level-wrap .q-container .q-img img {
          width: 100%;
          height: auto;
          display: block; }
      #traffic .level-wrap .q-container .q-box {
        width: 100%;
        height: auto; }
        #traffic .level-wrap .q-container .q-box .true {
          background-color: #5f1982;
          width: 100%;
          min-height: 274px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center;
          border-bottom-left-radius: 6px;
          border-bottom-right-radius: 6px; }
          #traffic .level-wrap .q-container .q-box .true a {
            display: block;
            width: 100%;
            height: auto; }
            #traffic .level-wrap .q-container .q-box .true a img {
              width: 90%;
              max-width: 600px;
              margin: auto;
              height: auto;
              display: block; }
          #traffic .level-wrap .q-container .q-box .true:hover {
            background-color: #7c3fab; }
            #traffic .level-wrap .q-container .q-box .true:hover a img {
              filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5)); }
        #traffic .level-wrap .q-container .q-box .q-form {
          width: calc(100% - 40px);
          background-color: #5f1982;
          padding: 40px 20px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center; }
          #traffic .level-wrap .q-container .q-box .q-form input {
            width: calc(100% - 128px);
            max-width: 400px;
            height: 50px;
            padding: 12px;
            background-color: #fff;
            font-size: 21px;
            border-radius: 6px;
            margin-right: 8px; }
            #traffic .level-wrap .q-container .q-box .q-form input:focus {
              outline: none;
              box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4); }
          #traffic .level-wrap .q-container .q-box .q-form button {
            width: 120px;
            height: 74px;
            padding: 12px;
            font-size: 21px;
            line-height: 1em;
            color: #fff;
            background-color: #5f1982;
            border: 2px solid #fff;
            border-radius: 6px;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            transition: all 0.3s; }
            #traffic .level-wrap .q-container .q-box .q-form button:focus {
              outline: none; }
            #traffic .level-wrap .q-container .q-box .q-form button:hover {
              background-color: #7c3fab; }
        #traffic .level-wrap .q-container .q-box .miss {
          background-color: #7c3fab;
          color: #fff;
          font-size: 12px;
          padding: 2%; }
        #traffic .level-wrap .q-container .q-box .hint-box {
          padding: 20px 4%;
          width: 92%;
          height: 80px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column; }
          #traffic .level-wrap .q-container .q-box .hint-box .hint-bt {
            display: block;
            width: 160px;
            border: 2px solid #7c3fab;
            font-size: 16px;
            height: 40px;
            background-color: #fff;
            border-radius: 4px;
            color: #7c3fab;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            transition: all 0.3s; }
            #traffic .level-wrap .q-container .q-box .hint-box .hint-bt:focus {
              outline: none; }
            #traffic .level-wrap .q-container .q-box .hint-box .hint-bt:hover {
              background-color: #f4bc32; }
          #traffic .level-wrap .q-container .q-box .hint-box p {
            margin-bottom: 0; }

.shake-horizontal {
  -webkit-animation: shake-horizontal 0.7s both;
  animation: shake-horizontal 0.7s both; }

@-webkit-keyframes shake-horizontal {
  0%,
    100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%,
    30%,
    50%,
    70% {
    -webkit-transform: translateX(-7px);
    transform: translateX(-7px); }
  20%,
    40%,
    60% {
    -webkit-transform: translateX(7px);
    transform: translateX(7px); }
  80% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px); }
  90% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px); } }
@keyframes shake-horizontal {
  0%,
    100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%,
    30%,
    50%,
    70% {
    -webkit-transform: translateX(-7px);
    transform: translateX(-7px); }
  20%,
    40%,
    60% {
    -webkit-transform: translateX(7px);
    transform: translateX(7px); }
  80% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px); }
  90% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px); } }
.rotate-in-hor {
  -webkit-animation: rotate-in-hor 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: rotate-in-hor 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }

@-webkit-keyframes rotate-in-hor {
  0% {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 0; }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1; } }
@keyframes rotate-in-hor {
  0% {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 0; }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1; } }
@media screen and (max-width: 1024px) {
  .pm-line {
    width: 100%;
    height: 0;
    position: relative;
    z-index: 2; }
    .pm-line.fushigi .pm-img {
      width: 300px;
      height: 240px;
      left: 0;
      right: 0;
      margin: auto; }
    .pm-line.kamex .pm-img {
      width: 260px;
      height: 240px;
      top: -100px;
      right: 0;
      left: 0;
      margin: auto; }
    .pm-line.lizard .pm-img {
      width: 260px;
      height: 220px;
      top: -80px;
      left: 0;
      right: 0;
      margin: auto; }

  .sns {
    position: fixed;
    right: 12px;
    bottom: 180px; }

  .shortcut {
    width: 180px; }

  #forfamily .fam-open .pm-img {
    width: 140px;
    height: 160px;
    top: -40px;
    right: -540px;
    left: 0;
    margin: auto; }

  #story .story-wrap p {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    line-height: 3em;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.8); }
    #story .story-wrap p.sizeup {
      font-size: 21px; }
  #story .story-wrap .letter {
    width: 90%;
    max-width: 400px;
    height: auto;
    margin: 40px auto;
    position: relative; }
    #story .story-wrap .letter:after {
      width: 240px;
      height: 300px; } }
@media screen and (max-width: 768px) {
  #cm .part .left-box {
    width: 100%;
    text-align: center; }
    #cm .part .left-box h5 {
      border: 2px solid #fff;
      display: inline-block;
      padding: 4px 0%;
      width: calc(100% - 4px); }
  #cm .part .right-box {
    width: calc(100% - 4px);
    border: 2px solid #fff;
    border-top: none; }

  #practice .practice-wrap h3 {
    font-size: 30px; }
  #practice .practice-wrap .pr-pms {
    width: 100%;
    position: relative;
    height: 0;
    padding: 40px 0; }
    #practice .practice-wrap .pr-pms.long {
      padding: 60px 0; }
    #practice .practice-wrap .pr-pms .pr-pms-img {
      width: 280px;
      height: 280px; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-kai {
        top: -10px;
        right: -120px; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-fushigi {
        left: -80px;
        top: 60px; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-kame {
        right: -90px; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-lizard {
        left: -120px;
        top: 40px; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-pika {
        left: -40px;
        top: -30%; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-toge {
        right: -80px; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-nya {
        left: -90px;
        top: -40px; }
    #practice .practice-wrap .pr-pms.for-lizard {
      margin-bottom: 100px; }

  #voice .inner-wrap {
    padding: 20% 0; }
  #voice .voice-wrap {
    margin: 20px auto; }
    #voice .voice-wrap .voice-box {
      margin: 20px auto;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      #voice .voice-wrap .voice-box .voice-box-l {
        width: 100%;
        max-width: 500px;
        margin: auto; }
        #voice .voice-wrap .voice-box .voice-box-l .event-visual img {
          width: 100%;
          height: auto; }
      #voice .voice-wrap .voice-box .voice-box-r {
        width: 96%;
        margin: auto;
        margin-top: 10px; }
        #voice .voice-wrap .voice-box .voice-box-r .d-tw .d-tw-tx {
          font-size: 16px; }

  .sp-bt {
    display: block;
    position: fixed;
    top: -10px;
    right: -10px;
    z-index: 50;
    width: 90px;
    height: 90px;
    background-image: url("../images/sp_bt.png");
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 35px; }

  .sns {
    position: fixed;
    right: 0;
    bottom: 120px; }
    .sns a {
      width: 34px;
      height: 34px; }

  .shortcut {
    width: 120px; }

  .inner-bt {
    text-align: center;
    display: block;
    max-width: 210px;
    margin: 12px auto; }

  #main-visual {
    width: 100%;
    padding-top: calc(100% + 100px);
    position: relative;
    overflow: hidden;
    margin-bottom: 120px; }
    #main-visual .mv-rdg-logo {
      width: 80px;
      height: 60px;
      top: 60px;
      left: 12px; }
    #main-visual .mv-movie-logo {
      width: 100px;
      height: 60px;
      right: initial;
      left: 1%; }
    #main-visual .mv-mewtwo {
      width: 65%; }
    #main-visual .mv-pika {
      right: initial;
      width: 35%;
      padding-top: 30%;
      top: -10%; }
    #main-visual .mv-copy {
      right: 14%;
      width: 20%;
      padding-top: 60%; }
    #main-visual .mv-title {
      position: absolute;
      left: 0;
      right: 0;
      top: initial;
      bottom: 0;
      margin: auto;
      width: 95%;
      padding-top: 50%; }
    #main-visual .ichi-pop {
      display: none; }

  .ichi-pop2 {
    display: block;
    width: 100%;
    height: auto;
    max-height: 120px;
    position: relative;
    background-color: rgba(124, 63, 171, 0.8);
    text-align: center; }
    .ichi-pop2 img {
      width: auto;
      height: 120px; }
    .ichi-pop2 a {
      display: block;
      width: 100%;
      height: auto; }

  header.page {
    overflow: hidden; }
    header.page .mv-bg {
      width: 100%;
      height: 75px;
      background-size: auto 150px; }

  #page-header {
    padding-top: 75px; }

  nav {
    height: 100%;
    position: fixed;
    bottom: 0;
    left: 100%;
    z-index: 20;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #26172b;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s; }
    nav.open {
      left: 0; }
    nav .nav-inner .main-nav {
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      nav .nav-inner .main-nav .nav-bt {
        width: 100%;
        max-width: 120px; }
    nav .nav-inner .sub-nav {
      margin-top: 20px; }
      nav .nav-inner .sub-nav .nav-bt-sub {
        width: 110px;
        margin: 8px 4px;
        border-radius: 0;
        border: none;
        background: none;
        border-bottom: 1px solid #fff; }
        nav .nav-inner .sub-nav .nav-bt-sub span {
          color: #fff;
          text-align: center;
          font-size: 10px;
          font-weight: 600; }
        nav .nav-inner .sub-nav .nav-bt-sub:hover {
          opacity: 0.85; }

  .slider .slider-inner .slideshow {
    height: 120px; }
  @-webkit-keyframes bgscroll {
    0% {
      background-position: 0 0; }
    100% {
      background-position: 1376px 0; } }
  @keyframes bgscroll {
    0% {
      background-position: 0 0; }
    100% {
      background-position: 1376px 0; } }
  .copy-wrap .sub-catch {
    font-size: 14px;
    margin-bottom: 12px; }
  .copy-wrap .catch {
    font-size: 16px; }
    .copy-wrap .catch .forsp {
      display: block; }

  /*main*/
  #page-title .readme-menu {
    flex-wrap: wrap; }
    #page-title .readme-menu .readme-block {
      width: 30%;
      min-height: 40px; }

  #point {
    width: 100%;
    background-color: #fff;
    padding: 40px 0 0;
    position: relative; }
    #point .point-wrap {
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      #point .point-wrap .point-contents {
        width: calc(100% - 24px);
        max-width: 270px;
        display: block;
        margin: auto; }
    #point .point-copy span {
      font-size: 16px; }
      #point .point-copy span .forsp {
        display: block; }

  .buddy .buddy-title {
    font-size: 16px; }
  .buddy .buddy-wrap {
    flex-wrap: wrap; }
    .buddy .buddy-wrap .buddy-sin {
      width: calc(100% / 3);
      display: block;
      margin-bottom: 3%; }
      .buddy .buddy-wrap .buddy-sin .buddy-img {
        width: 90%; }

  #special .sp-special-wrap {
    margin-bottom: 0; }
    #special .sp-special-wrap a {
      display: block;
      border: 2px solid #fff;
      width: 90%;
      max-width: 300px;
      height: auto;
      margin: 10px auto;
      overflow: hidden;
      box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.4); }
      #special .sp-special-wrap a img {
        width: 100%;
        height: auto;
        display: block; }
      #special .sp-special-wrap a:hover {
        opacity: 0.85; }
  #special .special-wrap {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    #special .special-wrap a {
      display: block;
      border: 2px solid #fff;
      width: 90%;
      max-width: 300px;
      height: auto;
      margin: 10px auto;
      overflow: hidden;
      box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.4); }
      #special .special-wrap a img {
        width: 100%;
        height: auto;
        display: block; }
      #special .special-wrap a:hover {
        opacity: 0.85; }

  #story .story-wrap p {
    font-size: 14px; }
    #story .story-wrap p.sizeup {
      font-size: 21px;
      line-height: 1.7em; }
      #story .story-wrap p.sizeup i {
        display: none; }
  #story .story-wrap .forsp {
    display: block; }
  #story .story-wrap .letter {
    width: 80%; }
    #story .story-wrap .letter:after {
      width: 200px;
      height: 250px;
      top: 0;
      bottom: 0;
      right: -40%;
      margin: auto; }

  .tab-contents {
    width: 92%;
    padding: 10% 4%; }
    .tab-contents .tab-bt-wrap .tab-bt {
      padding: 20px 10px; }
      .tab-contents .tab-bt-wrap .tab-bt span {
        font-size: 12px; }
        .tab-contents .tab-bt-wrap .tab-bt span .forsp {
          display: block; }
      .tab-contents .tab-bt-wrap .tab-bt .fukidashi {
        font-size: 10px;
        width: 110px;
        padding: 10px; }

  #howto .course-detail {
    margin-top: 60px; }
    #howto .course-detail .hl {
      font-size: 16px; }
      #howto .course-detail .hl span {
        display: inline-block; }
    #howto .course-detail .course-wrap {
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      #howto .course-detail .course-wrap .course-block {
        width: calc(92% - 20px); }
        #howto .course-detail .course-wrap .course-block .block-hl {
          text-align: center;
          color: #fff;
          font-weight: 600;
          font-size: 18px;
          margin-bottom: 8px; }
        #howto .course-detail .course-wrap .course-block p {
          color: #fff; }
          #howto .course-detail .course-wrap .course-block p span {
            font-size: 10px; }
    #howto .course-detail .course-link {
      text-align: center; }
      #howto .course-detail .course-link .inner-bt {
        background-color: #f49500; }
        #howto .course-detail .course-link .inner-bt .forsp {
          display: block; }
    #howto .course-detail .family-detail {
      text-align: center;
      color: #fff;
      margin: 60px auto 0;
      width: 100%;
      max-width: 600px; }
      #howto .course-detail .family-detail h6 {
        margin-bottom: 12px; }
      #howto .course-detail .family-detail p {
        text-align: left; }
      #howto .course-detail .family-detail p span {
        font-size: 10px; }
  #howto .tab-howto-inner .howto-sin .howto-text .forsp {
    display: block; }

  #ticket .ticket-wrap .tab-contents {
    margin-top: 100px; }
  #ticket .tab-ticket-inner .ticket-table {
    padding-top: 30px; }

  /*ticket-table*/
  .ticket-table .table-row .table-col {
    font-size: 14px; }
  .ticket-table .course-s {
    width: 80px;
    font-size: 10px;
    padding: 10px 20px 10px 0px;
    transform: rotate(-10deg);
    top: 0; }
    .ticket-table .course-s:after {
      width: 20px; }
  .ticket-table .course-f {
    width: 80px;
    font-size: 10px;
    padding: 10px 20px 10px 0px;
    transform: rotate(-10deg);
    top: 0; }
    .ticket-table .course-f:after {
      width: 20px; }

  #forfamily .fam-open {
    display: block;
    position: relative;
    z-index: 1; }
    #forfamily .fam-open .open-bt {
      text-align: left;
      font-size: 18px;
      padding-left: 4%;
      width: 96%; }
    #forfamily .fam-open .pm-img {
      right: 0;
      left: initial; }
  #forfamily .fam-wrap .dif-wrap:before {
    content: "";
    width: 120px;
    height: 120px;
    bottom: 50px;
    right: -10px; }
  #forfamily .fam-wrap .dif-wrap .dif-01 {
    width: 70%; }
    #forfamily .fam-wrap .dif-wrap .dif-01 .dif-header {
      font-size: 12px; }
    #forfamily .fam-wrap .dif-wrap .dif-01 .dif-content {
      font-size: 12px; }
  #forfamily .fam-wrap .dif-wrap .dif-02 {
    width: 70%;
    top: -10px;
    left: 8%; }
    #forfamily .fam-wrap .dif-wrap .dif-02 .dif-header {
      font-size: 12px; }
    #forfamily .fam-wrap .dif-wrap .dif-02 .dif-content {
      font-size: 12px; }
  #forfamily .fam-wrap .team-sample .team-sample-img .team-sample-img-sin {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    #forfamily .fam-wrap .team-sample .team-sample-img .team-sample-img-sin .arrow {
      transform: rotate(90deg); }
    #forfamily .fam-wrap .team-sample .team-sample-img .team-sample-img-sin .img-a img, #forfamily .fam-wrap .team-sample .team-sample-img .team-sample-img-sin .img-b img {
      width: 100%; }
  #forfamily .fam-wrap .team-sample .team-sample-img .team-caution {
    font-size: 12px;
    text-align: center; }
  #forfamily .fam-wrap .fc-price {
    margin: 60px auto 30px; }
  #forfamily .fam-wrap .fc-caption li {
    font-size: 14px;
    margin-bottom: 12px; }
    #forfamily .fam-wrap .fc-caption li div {
      font-size: 12px; }

  .other-ticket-wrap .other-ticket-sin {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .other-ticket-wrap .other-ticket-sin .ticket-img {
      width: 100%;
      max-width: 400px;
      padding: 0; }
    .other-ticket-wrap .other-ticket-sin .ticket-details {
      width: 100%; }
      .other-ticket-wrap .other-ticket-sin .ticket-details h6 {
        margin-bottom: 12px;
        text-align: center;
        margin-top: 12px; }

  #schedule-1 h5 {
    font-size: 21px; }
  #schedule-1 .inner-wrap {
    padding: 60px 4% 80px; }
  #schedule-1 .schedule-1-wrap .schedule-sin .schedule-sin-header {
    font-size: 14px; }
  #schedule-1 .schedule-1-wrap .schedule-sin .schedule-sin-details {
    font-size: 14px; }

  #schedule-2 {
    padding-top: 130px; }
    #schedule-2 .schedule-2-wrap .area-select-wrap {
      width: 100%;
      position: relative; }
      #schedule-2 .schedule-2-wrap .area-select-wrap .area-arrow {
        position: absolute;
        display: block;
        width: 15px;
        height: 30px;
        top: 0;
        bottom: 0;
        margin: auto; }
        #schedule-2 .schedule-2-wrap .area-select-wrap .area-arrow img {
          width: 100%;
          height: 100%;
          filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5)); }
        #schedule-2 .schedule-2-wrap .area-select-wrap .area-arrow.prev {
          left: -3%; }
        #schedule-2 .schedule-2-wrap .area-select-wrap .area-arrow.next {
          right: -3%; }
    #schedule-2 .schedule-2-wrap .area-select {
      overflow: scroll;
      -webkit-overflow-scrolling: touch;
      overflow-scrolling: touch;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: start;
      justify-content: start;
      padding: 8px;
      width: calc(100% - 16px); }
      #schedule-2 .schedule-2-wrap .area-select .area-bt {
        flex-shrink: 0; }
    #schedule-2 .schedule-2-wrap .area-wrap .area-header .date {
      font-size: 14px; }
    #schedule-2 .schedule-2-wrap .area-wrap .area-contents .ticket-table.fc {
      margin-top: 40px; }
    #schedule-2 .schedule-2-wrap .area-wrap .area-contents .stage .stage-name {
      font-size: 21px; }
    #schedule-2 .schedule-2-wrap .area-wrap .area-contents .stage .stage-address {
      font-size: 12px; }
    #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s100 span {
      font-size: 10px; }
    #schedule-2 .schedule-2-wrap .area-wrap .area-contents .playguide .s33 span {
      font-size: 10px; }
    #schedule-2 .schedule-2-wrap .area-wrap .area-contents .area-schedule .schedule-sin .schedule-sin-header {
      font-size: 14px; }
    #schedule-2 .schedule-2-wrap .area-wrap .area-contents .area-schedule .schedule-sin .schedule-sin-details {
      font-size: 14px; }

  #footer-bn .bn-wrap {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    #footer-bn .bn-wrap:after {
      width: 100px;
      height: 100px;
      right: 0;
      left: 0; }
    #footer-bn .bn-wrap a {
      display: block;
      width: 100%;
      max-width: 320px;
      border-radius: 6px;
      overflow: hidden;
      margin: 12px;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); }
      #footer-bn .bn-wrap a img {
        width: 100%;
        height: auto;
        display: block; }
      #footer-bn .bn-wrap a:hover {
        opacity: 0.85; }

  footer {
    width: 100%;
    background-color: #000; }
    footer .footer-wrap {
      width: 94%;
      padding: 3%; }
      footer .footer-wrap .mailmag {
        width: 100%;
        max-width: 400px;
        display: block;
        margin: auto; }
        footer .footer-wrap .mailmag:hover {
          opacity: 0.85; }
        footer .footer-wrap .mailmag img {
          width: 100%;
          height: auto; }
      footer .footer-wrap .title-wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 60px auto; }
        footer .footer-wrap .title-wrap a {
          width: 100%;
          max-width: 300px;
          height: auto; }
          footer .footer-wrap .title-wrap a:hover {
            opacity: 0.85; }
          footer .footer-wrap .title-wrap a img {
            width: 100%;
            height: auto; }
      footer .footer-wrap .copyrights {
        text-align: center;
        color: #fff;
        font-size: 10px; }

  #past .past-wrap {
    padding-top: 40px; }

  #traffic-info .traffic-wrap .copy {
    width: 100%; }
  #traffic-info .traffic-wrap .image {
    width: 100%; }
  #traffic-info .traffic-wrap .text {
    margin: 20px auto; }

  /*campaign*/
  #camp .camp-header img {
    width: 80%;
    padding: 6% 10%; }
  #camp .camp-content .camp-title {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    z-index: 2; }
    #camp .camp-content .camp-title .camp-logo {
      width: 100%;
      z-index: 3; }
  #camp .camp-content .camp-read {
    width: 92%;
    height: auto;
    max-width: 800px;
    padding: 0 4%;
    margin: auto; }
    #camp .camp-content .camp-read p {
      text-align: center; }
  #camp .camp-content .camp-form {
    width: 92%;
    height: auto;
    max-width: 800px;
    padding: 4%;
    margin: auto; }
    #camp .camp-content .camp-form .form-input {
      font-size: 21px;
      padding: 18px 12px;
      border: 1px solid #000;
      display: block;
      text-align: center;
      border-radius: 6px;
      width: calc(100% - 26px);
      max-width: 540px;
      margin: auto;
      box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2);
      background-color: #fff; }
      #camp .camp-content .camp-form .form-input:focus {
        outline-color: #7c3fab; }
  #camp .camp-present {
    width: 100%;
    height: auto;
    background-color: #fff;
    background-image: url("../images/pt_white.png");
    background-repeat: repeat;
    text-align: center;
    padding: 20px 0; }
    #camp .camp-present h4 {
      font-size: 21px;
      font-weight: 600; }
    #camp .camp-present .card-img {
      display: block;
      width: 94%;
      max-width: 480px;
      margin: 00px auto -20px; }
    #camp .camp-present ul {
      max-width: 500px;
      margin: auto; }
      #camp .camp-present ul li {
        font-size: 15px;
        border-bottom: 1px solid #000;
        padding: 12px 4px; }
        #camp .camp-present ul li:last-of-type {
          border: none; }
  #camp .camp-link .inner-wrap {
    flex-direction: column; }
    #camp .camp-link .inner-wrap a {
      margin: 16px auto; }
      #camp .camp-link .inner-wrap a:nth-last-of-type(1) {
        margin-top: 0px; } }
@media screen and (max-width: 425px) {
  #schedule-1 h4 {
    font-size: 1.5em;
    font-weight: 600;
    display: block;
    padding: 16px 20px;
    border-radius: 40px; }
  #schedule-1 .add-schedule .sp {
    display: block; }

  #practice .practice-wrap h3 {
    font-size: 26px;
    padding-top: 60px; }
  #practice .practice-wrap .pr-pms {
    padding: 60px 0; }
    #practice .practice-wrap .pr-pms.long {
      padding: 80px 0; }
    #practice .practice-wrap .pr-pms .pr-pms-img {
      width: 210px;
      height: 210px; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-kai {
        top: -30%;
        right: -90px; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-fushigi {
        left: -40px;
        top: 0; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-kame {
        right: -50px;
        bottom: 0; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-lizard {
        left: -30px;
        top: 60px; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-pika {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-toge {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0; }
      #practice .practice-wrap .pr-pms .pr-pms-img.pr-nya {
        left: 0;
        right: 0;
        top: -40%;
        bottom: 0; }
  #practice .practice-wrap .link-box h4 {
    font-size: 18px; }
    #practice .practice-wrap .link-box h4 .sp {
      display: block; }
  #practice .practice-wrap .link-box .link-bn-wrap {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    #practice .practice-wrap .link-box .link-bn-wrap .link-bn-sin {
      display: block;
      width: 90%;
      margin: 10px; }

  #voice .voice-wrap .voice-box .voice-box-r .d-tw .d-tw-tx {
    font-size: 14px; }

  #story .story-wrap .letter {
    width: 80%;
    margin-right: 15%; }
    #story .story-wrap .letter:after {
      width: 180px;
      height: 230px;
      right: -50%; }

  #goods .goods-wrap .goods-sin, #foods .goods-wrap .goods-sin {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 4%; }
    #goods .goods-wrap .goods-sin:nth-of-type(even), #foods .goods-wrap .goods-sin:nth-of-type(even) {
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
    #goods .goods-wrap .goods-sin .goods-img, #foods .goods-wrap .goods-sin .goods-img {
      width: 100%;
      height: auto; }
    #goods .goods-wrap .goods-sin .goods-detail, #foods .goods-wrap .goods-sin .goods-detail {
      width: 92%;
      padding: 4%; }
      #goods .goods-wrap .goods-sin .goods-detail h4, #foods .goods-wrap .goods-sin .goods-detail h4 {
        font-size: 21px; }

  /*peel-off*/
  #peel-info {
    background-color: #000;
    width: 100%;
    height: auto; }
    #peel-info .rule-wrap {
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      #peel-info .rule-wrap .rule-1, #peel-info .rule-wrap .rule-2 {
        width: 100%; }

  .peel-switch .inner-wrap {
    padding: 4%; }
  .peel-switch .peel-bt-wrap {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    .peel-switch .peel-bt-wrap .peel-bt {
      width: calc(100% - 64px);
      text-align: center;
      padding: 20px;
      background-color: #fff;
      border: 2px solid #7c3fab;
      color: #7c3fab;
      border-radius: 6px;
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      margin: 4px 10px; }

  #wall .q-container {
    margin-top: 8%;
    width: calc(100% - 16px);
    border-radius: 16px;
    border: 8px solid #5f1982; }
    #wall .q-container .q-header .q-header-img {
      bottom: -10px; }
    #wall .q-container .q-header .q-title {
      font-size: 15px; }
    #wall .q-container .q-img {
      padding: 20px 2%; }
    #wall .q-container .q-box .q-form {
      width: calc(100% - 20px);
      padding: 30px 10px; }
      #wall .q-container .q-box .q-form input {
        width: calc(100% - 88px);
        max-width: 400px;
        height: 44px;
        padding: 8px;
        font-size: 16px;
        border-radius: 6px; }
      #wall .q-container .q-box .q-form button {
        width: 80px;
        height: 60px;
        font-size: 16px; }
    #wall .q-container .q-box .hint-box {
      height: 100px; }
      #wall .q-container .q-box .hint-box .hint-bt {
        font-size: 14px; }

  #traffic .level-wrap.level-1 .inner-wrap {
    position: relative; }
    #traffic .level-wrap.level-1 .inner-wrap .level-pm {
      background-position: center;
      right: 0; }
  #traffic .level-wrap.level-2 .inner-wrap {
    position: relative; }
    #traffic .level-wrap.level-2 .inner-wrap .level-pm {
      background-position: center;
      left: 0; }
  #traffic .level-wrap.level-3 .inner-wrap {
    position: relative; }
    #traffic .level-wrap.level-3 .inner-wrap .level-pm {
      background-position: center;
      right: 0; }
  #traffic .level-wrap .q-level {
    margin-bottom: 12px;
    width: 100%;
    padding: 5% 0; }
    #traffic .level-wrap .q-level .level-img {
      border-radius: 30px;
      width: 200px; }
  #traffic .level-wrap .q-container {
    width: calc(100% - 16px);
    border-radius: 16px;
    border: 8px solid #5f1982; }
    #traffic .level-wrap .q-container .q-img {
      padding: 20px 2%; }
    #traffic .level-wrap .q-container .q-box .q-form {
      width: calc(100% - 20px);
      padding: 30px 10px; }
      #traffic .level-wrap .q-container .q-box .q-form input {
        width: calc(100% - 88px);
        max-width: 400px;
        height: 44px;
        padding: 8px;
        font-size: 16px;
        border-radius: 6px; }
      #traffic .level-wrap .q-container .q-box .q-form button {
        width: 80px;
        height: 60px;
        font-size: 16px; }
    #traffic .level-wrap .q-container .q-box .hint-box {
      height: 100px; }
      #traffic .level-wrap .q-container .q-box .hint-box .hint-bt {
        font-size: 14px; } }
@media screen and (max-width: 375px) {
  header.page .mv-bg {
    width: 100%;
    height: 60px;
    background-size: auto 120px; }

  #page-header {
    padding-top: 60px; }

  #page-title .readme-menu .readme-block {
    width: 90%; }

  #forfamily .fam-open .open-bt .forsp {
    display: block; }

  #archive .event-img div {
    width: calc(50% - 16px);
    margin: 8px; }

  #voice .inner-wrap {
    padding: 20% 0; }
  #voice .voice-wrap {
    margin: 20px auto; }
    #voice .voice-wrap .voice-box {
      margin: 20px auto;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      #voice .voice-wrap .voice-box .voice-box-l {
        width: 100%; }
        #voice .voice-wrap .voice-box .voice-box-l .event-visual img {
          width: 100%;
          height: auto; }
      #voice .voice-wrap .voice-box .voice-box-r {
        width: 96%;
        margin: 0;
        margin-top: 10px; }

  #past .inner-wrap {
    padding: 20% 0; }

  #story .story-wrap .letter {
    margin-right: 20%; }
    #story .story-wrap .letter:after {
      right: -60%; }

  .buddy .buddy-wrap .buddy-sin {
    width: calc(100% / 2); } }
/*ここからカレンダー*/
/*API*/
#ticket_api {
  display: none;
  opacity: 0;
  transition: opacity;
  background: none;
  margin: 50px auto; }

#ticket_api.on {
  display: block;
  animation: ticket_on 0.2s forwards; }

@keyframes ticket_on {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
#ticket_api .note {
  margin: 30px auto 0 auto;
  color: #ffffff;
  line-height: 1.6;
  font-size: 12px; }

#ticket_api .note a {
  color: #ffffff; }

#ticket_api .note a:hover {
  text-decoration: none; }

/*===================sp=*/
@media screen and (max-width: 860px) {
  /*日程*/
  #schedule {
    background: none;
    margin-top: 50px; }

  #schedule .contentBox {
    display: block; }

  #schedule .contentBox .imgBox {
    width: 76%;
    padding: 0 0 0 0;
    margin: 0 auto 0 auto; }

  #schedule .contentBox .txtBox {
    width: 100%;
    text-align: left;
    margin: 20px auto 0 auto; }

  #schedule .contentBox .txtBox h2 {
    width: 100%;
    color: #00bdad;
    text-align: left;
    margin: 0 0 0 0;
    border-bottom: none; }

  #schedule .contentBox .txtBox h3 {
    color: #00bdad;
    text-align: left;
    font-size: 4.0vw;
    border-bottom: none; }

  #schedule .contentBox .txtBox .txt01 {
    text-align: left;
    font-size: 3.4vw;
    font-weight: bold; }

  #schedule .contentBox .txtBox .txt02 {
    text-align: left;
    font-size: 3.4vw;
    margin: 20px 0 0 0; }

  #eventdetails .txtWrap.col2 {
    display: block; }

  #eventdetails .txtWrap.col2 .txtBox {
    width: 100%;
    margin: 10px 0 0 0; }

  #eventdetails .txtWrap.col2 .btnBox {
    width: 100%;
    margin: 30px auto 0 auto;
    padding: 0 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

  #eventdetails .txtWrap.col2 .btnBox .btn {
    width: 48%;
    margin: 0 0 10px 0; }

  #eventdetails #back {
    padding-top: 80px; }

  #eventdetails .btnBox .btn {
    width: 100%; } }
/*====================*/
.ticketWrap {
  background: #005856;
  margin: 30px auto 0 auto;
  padding: 20px 3% 20px 3%;
  position: relative;
  transition: height 0.7s; }

.ticketWrap .naviBox {
  height: 80px;
  margin: 0 60px 0 60px;
  padding: 0 0 0 0;
  overflow: hidden; }

.ticketWrap .naviBox .prevBtn {
  width: 50px;
  height: 80px;
  background: #ffffff;
  z-index: 5;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 3%; }

.ticketWrap .naviBox .prevBtn:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 3px #626262;
  border-right: solid 3px #626262;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin: -8px 0 0 -3px;
  position: absolute; }

.ticketWrap .naviBox .nextBtn {
  width: 50px;
  height: 80px;
  background: #ffffff;
  z-index: 5;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 3%; }

.ticketWrap .naviBox .nextBtn:before {
  content: '';
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 3px #626262;
  border-right: solid 3px #626262;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -8px 0 0 -10px;
  position: absolute; }

.ticketWrap .naviBox .prevBtn:hover,
.ticketWrap .naviBox .nextBtn:hover {
  opacity: 0.7; }

.ticketWrap .naviBox .prevBtn span,
.ticketWrap .naviBox .nextBtn span {
  display: none; }

.ticketWrap .naviBox .comm {
  width: 100%;
  top: 25px;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  position: relative;
  display: none; }

.ticketWrap .naviBox ul {
  background: rgba(0, 0, 0, 0.2);
  height: 80px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  overflow-scrolling: touch;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 2;
  position: relative; }

.ticketWrap .naviBox ul::-webkit-scrollbar {
  height: 0; }

.ticketWrap .naviBox ul li {
  margin: 0 2px 0 0;
  position: relative;
  cursor: pointer;
  opacity: 0.85; }

.ticketWrap .naviBox ul li .scheduleBox {
  background: #ffffff;
  display: block;
  width: 80px;
  height: 80px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  color: #676767;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center; }

.ticketWrap .naviBox ul li.cr {
  opacity: 1.0; }

.ticketWrap .naviBox ul li.cr .scheduleBox {
  background: #fbe663; }

.ticketWrap .naviBox ul li .scheduleBox:hover {
  opacity: 0.7; }

.ticketWrap .naviBox ul li .scheduleBox .date {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  top: 28px; }

.ticketWrap .naviBox ul li .scheduleBox .state {
  bottom: 10px;
  width: 100%;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: #676767;
  margin-top: 10px; }

.ticketWrap .naviBox ul li .scheduleBox .state span {
  font-size: 10px;
  font-weight: 500; }

.ticketWrap .naviBox ul li .scheduleBox.present .state span {
  color: #32b16c; }

.ticketWrap .naviBox ul li .scheduleBox.present .state span:before {
  content: "○"; }

.ticketWrap .naviBox ul li .scheduleBox.sold .state {
  color: #9d9d9d; }

.ticketWrap .naviBox ul li .scheduleBox.sold .state span:before {
  content: "✕"; }

.ticketWrap .naviBox ul li .scheduleBox.few .state {
  color: #960b0b; }

.ticketWrap .naviBox ul li .scheduleBox.few .state span:before {
  content: "△"; }

.ticketWrap .detailsWrap {
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.7s 0.2s; }

.ticketWrap .detailsWrap.loading {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: 0s; }

.ticketWrap .detailsBox .tit {
  margin: 0;
  padding: 20px 0 20px 0;
  font-size: 20px;
  letter-spacing: .1em;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline; }

.ticketWrap .detailsBox .tit .tit01 {
  font-size: 25px;
  margin-right: 5px;
  padding-bottom: 2px; }

.ticketWrap .detailsBox .details {
  background: #ffffff;
  padding: 2%; }

.ticketWrap .detailsBox .details h4 {
  margin: 0 0 0 0;
  padding: 0 0 5px 0;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1;
  border-bottom: 2px solid #bfbfbf;
  position: relative; }

.ticketWrap .detailsBox .details a.scrap {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 15px;
  color: #0e70bb;
  font-size: 15px; }

.ticketWrap .detailsBox .details .no_events {
  text-align: center;
  margin: 50px auto;
  opacity: 0.5; }

/*===================sp=*/
@media screen and (max-width: 860px) {
  .ticketWrap .naviBox ul li .scheduleBox:hover {
    opacity: 1.0; }

  .ticketWrap .detailsBox .details h4 {
    margin: 0 0 0 0;
    padding: 0 0 5px 0;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1;
    border-bottom: 2px solid #bfbfbf;
    position: relative;
    line-height: 2.0; }

  .ticketWrap .detailsBox .details a.scrap {
    position: relative;
    right: 0;
    text-align: right; }

  .ticketWrap .naviBox .prevBtn:hover,
  .ticketWrap .naviBox .nextBtn:hover {
    opacity: 1.0; } }
/*====================*/
.ticketWrap .detailsBox .details a.scrap:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #0e70bb;
  border-right: solid 2px #0e70bb;
  top: 50%;
  right: 0;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -5px 0 0 0px;
  position: absolute; }

.ticketWrap .detailsBox .details a.scrap:hover {
  text-decoration: none;
  opacity: 0.7; }

.ticketWrap .detailsBox .details ul {
  /*
  						margin-left: -15px;
  						margin-right: -15px;
  						list-style: none;
  						display: block;
  						margin: 0 -5px;
  						padding: 0;
  						margin-bottom: 50px;
  */
  width: 102%;
  list-style: none;
  display: block;
  margin-bottom: 50px;
  margin-top: 2%; }

.ticketWrap .detailsBox .details ul:before, .ticketWrap .detailsBox .details ul:after {
  content: " ";
  display: table; }

.ticketWrap .detailsBox .details ul:after {
  clear: both; }

.ticketWrap .detailsBox .details ul li {
  /*
  						position: relative;
  						float: left;
  						width: 23%;
  						min-height: 1px;
  						padding-left: 15px;
  						padding-right: 15px;
  						padding: 0 0 0 5px;
  						margin: 15px 10px 0 0;
  */
  position: relative;
  float: left;
  width: 23%;
  min-height: 1px;
  margin-right: 2%;
  margin-top: 2%; }

/*===================sp=*/
@media screen and (max-width: 860px) {
  .ticketWrap .detailsBox .details ul li {
    position: relative;
    float: left;
    width: 94%;
    min-height: 1px;
    padding-left: 3%;
    padding-right: 3%;
    margin: 15px auto 0 auto; }

  .ticketWrap .detailsBox .details a.scrap:hover {
    text-decoration: none;
    opacity: 1.0; } }
/*====================*/
.ticketWrap .detailsBox .details ul li .scheduleBox {
  position: relative;
  padding: 1em 8%;
  background: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 1;
  color: #ffffff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center; }

.ticketWrap .detailsBox .details ul li .scheduleBox a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  color: #ffffff; }

.ticketWrap .detailsBox .details ul li .scheduleBox .time {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-right: 10px; }

.ticketWrap .detailsBox .details ul li .scheduleBox .state {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  /* 							margin-left: 10px; */ }

.ticketWrap .detailsBox .details ul li .scheduleBox:hover {
  opacity: 0.7; }

.ticketWrap .detailsBox .details ul li .scheduleBox.present {
  background: #32b16c; }

.ticketWrap .detailsBox .details ul li .scheduleBox.present .state span:before {
  content: "○"; }

.ticketWrap .detailsBox .details ul li .scheduleBox.sold {
  background: #969696; }

.ticketWrap .detailsBox .details ul li .scheduleBox.sold .state span:before {
  content: "✕"; }

.ticketWrap .detailsBox .details ul li .scheduleBox.few {
  background: #960b0b; }

.ticketWrap .detailsBox .details ul li .scheduleBox.few .state span:before {
  content: "△"; }

.ticketWrap .detailsBox .details ul li .scheduleBox.remaining {
  color: #f84141; }

.ticketWrap .detailsBox .details .buyWrap {
  width: 100%;
  margin: 20px auto 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

.ticketWrap .detailsBox .details .buyWrap .ticketBox {
  width: 48%; }

/*===================sp=*/
@media screen and (max-width: 860px) {
  .ticketWrap .detailsBox .details .buyWrap {
    width: 100%;
    margin: 20px auto 0 auto;
    display: block; }

  .ticketWrap .detailsBox .details .buyWrap .ticketBox {
    width: 100%;
    margin: 0 0 0 0; }

  .ticketWrap .detailsBox .details ul li .scheduleBox:hover {
    opacity: 1.0; } }
/*====================*/
.ticketWrap .detailsBox .details .ticketBox {
  margin-left: -15px;
  margin-right: -15px;
  margin: 0 -7px 0 -7px; }

.ticketWrap .detailsBox .details .ticketBox:before,
.ticketWrap .detailsBox .details .ticketBox:after {
  content: " ";
  display: table; }

.ticketWrap .detailsBox .details .ticketBox:after {
  clear: both; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 0 15px;
  padding: 0 7px 0 7px; }

.ticketWrap .detailsBox .details .ticketBox .ticket-item:last-child {
  margin-bottom: 0; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem:nth-of-type(2n) + div.ticketItem {
  clear: left; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem p {
  font-size: 10px;
  margin: 0; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket {
  display: block;
  margin: 0 0 15px 0;
  padding: 10px 2% 10px 2%;
  width: 96%;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: none;
  background: #ffffff; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket:hover {
  opacity: 0.7; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.scrap {
  background: #f34f49; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.scrap:hover {
  opacity: 0.7; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.eplus {
  background: #e85298; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.eplus:hover {
  opacity: 0.7; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.pia {
  background: #36c; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.pia:hover {
  opacity: 0.7; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.lawson {
  background: #1a9fdd; }

.ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.lawson:hover {
  opacity: 0.7; }

/*===================sp=*/
@media screen and (max-width: 860px) {
  .ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket:hover,
  .ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.scrap:hover,
  .ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.eplus:hover,
  .ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.pia:hover,
  .ticketWrap .detailsBox .details .ticketBox .ticketItem a.ticket.lawson:hover {
    opacity: 1.0; } }
/*====================*/
/*# sourceMappingURL=style.css.map */

/*# sourceMappingURL=style.css.map */
