@charset "UTF-8";
/*animation*/
@keyframes scrollAnime {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-100%); } }
/*color*/
/*BG*/
/*common*/
body {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-top: 64px;
  width: 100%; }
  body.lock {
    overflow-y: hidden;
    position: fixed; }

section {
  width: 100%;
  height: auto;
  position: relative;
  padding: 60px 0;
  overflow: hidden; }

.inner-wrap {
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1; }

.nav-bt {
  display: none; }

.common-bt {
  display: block;
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: auto; }
  .common-bt span {
    background-color: #ffdd00;
    border: 2px solid #000;
    height: 80px;
    position: relative;
    border-radius: 6px;
    display: block;
    width: calc(100% - 4px);
    z-index: 5;
    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;
    font-size: 18px;
    font-weight: 600; }
  .common-bt:before {
    content: "";
    display: block;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid #000;
    border-radius: 6px;
    background-image: url("../images/pt_line.png");
    background-repeat: repeat;
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 4; }
  .common-bt:hover span {
    background-color: #ffdd00;
    background-image: url("../images/pt_yellow.png");
    background-repeat: repeat;
    left: 2px;
    top: 2px; }
  .common-bt:hover:before {
    background-color: #000; }

a:hover {
  opacity: 0.8; }

/*op*/
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: auto;
  background-color: #fff;
  overflow: hidden; }
  #loader .loader-inner {
    display: block;
    width: 90%;
    max-width: 680px;
    height: auto;
    margin: auto; }
    #loader .loader-inner img {
      width: 100%;
      height: auto;
      display: block; }

.op-osu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/back_osu.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: none; }

/*shortcut*/
#shortcut {
  text-align: center; }
  #shortcut a {
    display: inline-block; }
    #shortcut a:hover {
      opacity: 0.85; }
  #shortcut .hint-bt {
    width: 170px;
    height: auto; }
    #shortcut .hint-bt img {
      width: 100%;
      height: auto;
      display: block; }
  #shortcut .ans-bt {
    width: 250px;
    height: auto; }
    #shortcut .ans-bt img {
      width: 100%;
      height: auto;
      display: block; }

/*nav*/
.menu-bt {
  display: none; }

nav {
  width: 100%;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  background-color: #000;
  z-index: 10; }
  nav .nav-inner {
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    nav .nav-inner .main-nav {
      width: calc(100% - 140px); }
      nav .nav-inner .main-nav ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
      nav .nav-inner .main-nav li {
        display: block; }
        nav .nav-inner .main-nav li a {
          height: 64px;
          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 .main-nav li a span {
            color: #fff;
            font-size: 16px;
            padding: 0 12px; }
    nav .nav-inner .sns-nav {
      width: 140px; }
      nav .nav-inner .sns-nav ul {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
      nav .nav-inner .sns-nav li {
        display: block;
        width: 100%; }
        nav .nav-inner .sns-nav li a {
          height: 64px;
          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 .sns-nav li a svg {
            width: 30px;
            height: 30px;
            display: block;
            fill: #fff; }
          nav .nav-inner .sns-nav li a:hover {
            opacity: 1; }
            nav .nav-inner .sns-nav li a:hover .icon-tw {
              fill: #55acee; }
            nav .nav-inner .sns-nav li a:hover .icon-fb {
              fill: #3B5998; }
            nav .nav-inner .sns-nav li a:hover .icon-line {
              fill: #1dcd00; }

/*header*/
header {
  width: 100%;
  height: auto;
  position: relative; }
  header .cr {
    position: absolute;
    bottom: 60px;
    left: -120px;
    font-size: 10px;
    color: #afafaf;
    display: none; }
    header .cr.step2 {
      display: block; }
  header .dgame {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: auto;
    z-index: 6; }
    header .dgame img {
      width: 100%;
      height: auto; }
  header #page-visual {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    overflow: hidden;
    padding: 0; }
    header #page-visual .page-logo {
      width: 100%;
      height: auto;
      max-width: 300px;
      margin: auto; }
      header #page-visual .page-logo img {
        width: 100%;
        height: auto; }
  header #main-visual {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    overflow: initial;
    padding: 0; }
    header #main-visual .logo {
      width: 100%;
      height: auto;
      max-width: 800px;
      margin: auto;
      padding-top: 30px;
      position: relative;
      z-index: 1; }
      header #main-visual .logo img {
        width: 100%;
        height: auto;
        opacity: 0; }
    header #main-visual .copy-wrap {
      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;
      position: relative;
      width: 100%;
      max-width: 800px;
      margin: auto;
      margin-top: -50px; }
    header #main-visual .shachi {
      width: 54%;
      height: auto;
      max-width: 600px;
      position: absolute;
      top: -20px;
      right: -2%;
      z-index: 10; }
      header #main-visual .shachi img {
        width: 80%;
        height: auto;
        opacity: 0;
        transform: rotate(-10deg); }
        header #main-visual .shachi img.step1 {
          width: 90%;
          transform: rotate(10deg);
          opacity: 1; }
        header #main-visual .shachi img.step2 {
          width: 100%;
          transform: rotate(0deg); }
    header #main-visual .copy {
      width: 57%;
      height: auto;
      max-width: 600px;
      margin-right: 43%;
      z-index: 1;
      padding-top: 30%;
      position: relative; }
      header #main-visual .copy img {
        width: 80%;
        height: auto;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        opacity: 0;
        transform: rotate(10deg); }
        header #main-visual .copy img.step1 {
          width: 90%;
          transform: rotate(-10deg);
          opacity: 1; }
        header #main-visual .copy img.step2 {
          width: 100%;
          transform: rotate(0deg); }
    header #main-visual .mv-bg-wrap {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 0; }
      header #main-visual .mv-bg-wrap .bg-main {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("../images/mv_back.jpg");
        display: none; }
      header #main-visual .mv-bg-wrap .bg-svg {
        width: 0%;
        max-width: 640px;
        height: 100%;
        position: absolute;
        top: 0;
        background-size: cover;
        background-repeat: no-repeat;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s; }
        header #main-visual .mv-bg-wrap .bg-svg.to-left {
          left: 0;
          background-position: center right; }
        header #main-visual .mv-bg-wrap .bg-svg.to-right {
          right: 0;
          background-position: center left; }
        header #main-visual .mv-bg-wrap .bg-svg.bg-fix {
          width: 30%; }
      header #main-visual .mv-bg-wrap .bg-svg-green {
        background-image: url("../images/green.svg"); }
      header #main-visual .mv-bg-wrap .bg-svg-blue {
        background-image: url("../images/blue.svg"); }
      header #main-visual .mv-bg-wrap .bg-svg-purple {
        background-image: url("../images/purple.svg"); }
      header #main-visual .mv-bg-wrap .bg-svg-pink {
        background-image: url("../images/pink.svg"); }
      header #main-visual .mv-bg-wrap .bg-svg-gray1 {
        background-image: url("../images/gray_l.svg"); }
      header #main-visual .mv-bg-wrap .bg-svg-gray2 {
        background-image: url("../images/gray_r.svg"); }
  header .point {
    background-color: #000;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 4; }
    header .point .point-inner {
      width: 94%;
      max-width: 1000px;
      margin: auto;
      height: 48px;
      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; }
      header .point .point-inner span {
        color: #fff;
        font-size: 16px; }

/*clear*/
#clear {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  overflow: hidden;
  display: none;
  padding: 0; }
  #clear .back-wrap {
    position: absolute;
    top: -100vh;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    transition: all 3s;
    z-index: 10; }
    #clear .back-wrap.hide {
      top: 100vh; }
    #clear .back-wrap svg .bbg-green {
      fill: #B4E100;
      top: 100vh; }
    #clear .back-wrap svg .bbg-purple {
      fill: #B782EE; }
    #clear .back-wrap svg .bbg-blue {
      fill: #44D6F5; }
    #clear .back-wrap svg .bbg-pink {
      fill: #F36DCF; }
    #clear .back-wrap svg .bbg-gray {
      fill: #F1F1F1; }
  #clear .clear-wrap {
    display: none;
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100vh;
    background-color: #F1F1F1; }
    #clear .clear-wrap .clear-wrap-inner {
      display: none;
      width: 98%;
      max-width: 860px;
      height: auto;
      margin: auto;
      position: relative; }
      #clear .clear-wrap .clear-wrap-inner img {
        width: 100%;
        height: auto;
        display: block; }
      #clear .clear-wrap .clear-wrap-inner .roll-zero {
        width: 100%;
        height: 100vh;
        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; }
        #clear .clear-wrap .clear-wrap-inner .roll-zero .end-arrow {
          position: absolute;
          bottom: 100px;
          width: 160px;
          height: auto; }
          #clear .clear-wrap .clear-wrap-inner .roll-zero .end-arrow img {
            width: 100%;
            height: auto; }
  #clear .quest-wrap {
    position: relative;
    z-index: 6;
    width: 100%;
    height: 100vh;
    background-color: #F1F1F1;
    display: block; }
    #clear .quest-wrap .quest-inner {
      width: 100%;
      height: 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;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center; }
      #clear .quest-wrap .quest-inner .ank {
        display: block;
        width: 300px;
        height: 30px;
        background-color: #f36dcf;
        color: #fff;
        border-radius: 8px;
        text-align: center;
        padding: 20px 0;
        font-weight: 500; }
      #clear .quest-wrap .quest-inner .back {
        margin-top: 20px;
        border-bottom: 1px solid #000; }

/*main*/
#answer {
  background-color: #f36dcf;
  width: 100%;
  height: auto; }
  #answer .answer-wrap {
    min-height: 420px; }
    #answer .answer-wrap .answer-form {
      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;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      width: 100%;
      height: auto;
      margin-top: 60px; }
      #answer .answer-wrap .answer-form .wrong {
        font-size: 16px;
        margin-bottom: 8px;
        color: #fff;
        text-align: center;
        font-weight: 500;
        display: none; }
      #answer .answer-wrap .answer-form input {
        display: block;
        width: calc(90% - 24px);
        max-width: 400px;
        margin: auto;
        background-color: #fff;
        border: 2px solid #000;
        padding: 12px;
        font-size: 16px;
        text-align: center; }
        #answer .answer-wrap .answer-form input:focus {
          outline: none; }
      #answer .answer-wrap .answer-form .answer-bt {
        display: block;
        width: calc(90% - 24px);
        max-width: 240px;
        background-color: #000;
        color: #fff;
        border: none;
        margin: auto;
        margin-top: 20px;
        padding: 12px;
        border-radius: 4px; }
        #answer .answer-wrap .answer-form .answer-bt:focus {
          outline: none; }
        #answer .answer-wrap .answer-form .answer-bt:hover {
          opacity: 0.75; }

#hint-nav {
  background-color: #ffdd00;
  width: 100%;
  height: auto; }
  #hint-nav .hint-nav-wrap {
    text-align: center; }
    #hint-nav .hint-nav-wrap li {
      display: inline-block; }
      #hint-nav .hint-nav-wrap li a {
        padding: 10px;
        background-color: #fff;
        box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
        margin: 4px;
        display: block;
        border-radius: 4px;
        border: 1px solid #000;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s; }
        #hint-nav .hint-nav-wrap li a span {
          -webkit-transition: all 0.5s;
          -moz-transition: all 0.5s;
          -ms-transition: all 0.5s;
          transition: all 0.5s; }
        #hint-nav .hint-nav-wrap li a:hover {
          background-color: #000; }
          #hint-nav .hint-nav-wrap li a:hover span {
            color: #fff; }

#hint {
  width: 100%;
  height: auto; }
  #hint .hint-wrap {
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
    margin-bottom: 40px; }
    #hint .hint-wrap:last-of-type {
      margin-bottom: 0;
      padding-bottom: 0;
      border: none; }
    #hint .hint-wrap h3 {
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      position: relative;
      margin-bottom: 60px; }
      #hint .hint-wrap h3:after {
        content: "";
        display: block;
        width: 60px;
        height: 8px;
        background-color: #ffdd00;
        position: absolute;
        bottom: -15px;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 12px; }
    #hint .hint-wrap h6 {
      font-size: 18px;
      margin-top: 40px; }
    #hint .hint-wrap .hint-caution {
      font-size: 12px;
      color: #d40000;
      margin-bottom: 12px; }
    #hint .hint-wrap .hint-box {
      margin-bottom: 20px; }
      #hint .hint-wrap .hint-box .hint-name {
        display: block;
        background-color: #000;
        color: #fff;
        padding: 8px 12px;
        font-size: 14px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s; }
        #hint .hint-wrap .hint-box .hint-name:hover {
          background-color: #d40000; }
      #hint .hint-wrap .hint-box .hint-content {
        border: 1px solid #eee;
        padding: 4%;
        font-size: 14px;
        line-height: 1.75em;
        display: none; }
        #hint .hint-wrap .hint-box .hint-content .hint-img {
          width: 100%;
          height: auto;
          display: block; }
        #hint .hint-wrap .hint-box .hint-content .hint-inner-list {
          list-style: decimal;
          padding-left: 1em;
          margin-top: 20px; }
          #hint .hint-wrap .hint-box .hint-content .hint-inner-list li {
            margin-bottom: 6px;
            border-bottom: 1px dashed #ddd; }

#story {
  background-color: #ffdd00;
  width: 100%;
  height: auto;
  padding-top: 100px; }
  #story .story-wrap {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    #story .story-wrap .story-left {
      width: 400px;
      margin-right: 40px; }
      #story .story-wrap .story-left .slider {
        display: block;
        width: calc(100% - 4px);
        margin-right: 60px;
        height: 640px;
        border: 2px solid #000;
        background-image: url("../images/slide.jpg");
        background-repeat: repeat-x;
        background-position-x: 0;
        background-size: auto 100%;
        position: relative; }
        #story .story-wrap .story-left .slider .slider-badge {
          width: 256px;
          height: 190px;
          position: absolute;
          background-image: url("../images/img_osu.svg");
          background-position: center;
          background-size: 100%;
          background-repeat: no-repeat;
          top: -100px;
          left: -50px;
          display: none; }
        #story .story-wrap .story-left .slider.slide-start {
          -webkit-animation: bgscroll 20s linear infinite;
          animation: bgscroll 20s linear infinite; }
          #story .story-wrap .story-left .slider.slide-start .slider-badge {
            display: block; }
@-webkit-keyframes bgscroll {
  0% {
    background-position: 0 0; }
  100% {
    background-position: -1830px 0; } }
@keyframes bgscroll {
  0% {
    background-position: 0 0; }
  100% {
    background-position: -1830px 0; } }
    #story .story-wrap .story-right {
      width: calc(100% - 420px); }
      #story .story-wrap .story-right .story-text {
        margin-bottom: 56px; }
      #story .story-wrap .story-right .cm {
        width: 100%;
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; }
        #story .story-wrap .story-right .cm .youtube-wrap {
          width: calc(100% - 180px);
          padding-top: 40%;
          position: relative;
          border: 2px solid #000; }
          #story .story-wrap .story-right .cm .youtube-wrap iframe {
            position: absolute;
            top: 0;
            right: 0;
            width: 100% !important;
            height: 100% !important; }
  #story .akimoto {
    width: 180px;
    position: absolute;
    bottom: -60px;
    display: block;
    right: 0; }
    #story .akimoto img {
      position: relative;
      width: 135.5%;
      margin-left: -16%;
      height: auto;
      display: block; }

#special {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: auto; }
  #special .spbn-wrap {
    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;
    width: 100%; }
    #special .spbn-wrap .sp-bn {
      display: block;
      width: 300px;
      height: auto;
      margin: 8px; }
      #special .spbn-wrap .sp-bn:hover {
        opacity: 0.7; }
    #special .spbn-wrap img {
      width: calc(100% - 4px);
      display: block;
      height: auto;
      border: 2px solid #000; }

#news {
  background-color: #b4e100; }
  #news .news-wrap {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: auto;
    position: relative; }
  #news .twitter {
    padding: 12px;
    background-color: #fff;
    border-radius: 12px;
    border: 2px solid #000; }
  #news .twitter-act {
    width: calc(100% - 300px);
    max-width: 800px;
    margin-top: 40px;
    margin-left: 300px;
    margin-bottom: 20px; }
  #news .sakamoto {
    width: 300px;
    position: absolute;
    bottom: -80px;
    display: block;
    left: 0; }
    #news .sakamoto img {
      position: relative;
      width: 120%;
      height: auto;
      display: block;
      margin-left: -20%; }

#play {
  background-color: #fff;
  background-image: url("../images/pt_dots.png");
  background-repeat: repeat; }
  #play .play-wrap {
    width: 100%;
    margin-bottom: 120px; }
    #play .play-wrap .play-image-wrap {
      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; }
      #play .play-wrap .play-image-wrap .play-image {
        width: 25%;
        display: block;
        padding: 2%; }
        #play .play-wrap .play-image-wrap .play-image img {
          display: block;
          width: calc(100% - 4px);
          height: auto;
          border: 2px solid #000;
          border-radius: 8px; }
        #play .play-wrap .play-image-wrap .play-image .play-image-text {
          display: block;
          width: 100%;
          text-align: center;
          margin-top: 24px;
          position: relative; }
          #play .play-wrap .play-image-wrap .play-image .play-image-text:after {
            content: "";
            width: 62px;
            height: 70px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: 100%;
            position: absolute;
            top: -60px;
            left: -10px; }
          #play .play-wrap .play-image-wrap .play-image .play-image-text.num1:after {
            background-image: url("../images/num_01.svg"); }
          #play .play-wrap .play-image-wrap .play-image .play-image-text.num2:after {
            background-image: url("../images/num_02.svg"); }
          #play .play-wrap .play-image-wrap .play-image .play-image-text.num3:after {
            background-image: url("../images/num_03.svg"); }
          #play .play-wrap .play-image-wrap .play-image .play-image-text.num4:after {
            background-image: url("../images/num_04.svg"); }
  #play .play-info {
    width: 96%;
    max-width: 800px;
    margin: auto;
    border: 2px solid #000;
    border-radius: 8px;
    position: relative;
    padding: 2%;
    text-align: center;
    background-color: #fff; }
    #play .play-info h4 {
      margin-top: -46px;
      margin-bottom: 12px; }
    #play .play-info .play-info-list {
      padding: 30px 0;
      position: relative; }
      #play .play-info .play-info-list:nth-of-type(n+2) {
        border-top: 1px solid #000; }
      #play .play-info .play-info-list p {
        margin: 0; }
      #play .play-info .play-info-list .map {
        width: 100%;
        margin: 12px 0; }
        #play .play-info .play-info-list .map h6 {
          color: #f6921e; }
        #play .play-info .play-info-list .map .g-map {
          width: 100%;
          height: 300px; }
          #play .play-info .play-info-list .map .g-map iframe {
            width: 100%;
            height: 100%; }
    #play .play-info .sakura {
      width: 300px;
      position: absolute;
      display: block;
      bottom: 0;
      right: -60px; }
      #play .play-info .sakura img {
        position: relative;
        width: 90%;
        max-width: 300px;
        height: auto;
        display: block;
        margin: auto; }
      .cp_banner {
        margin-top: 56px;
        text-align: center;}

#goods .goods-wrap {
  width: 100%;
  height: auto; }
  #goods .goods-wrap h5 {
    text-align: center; }
  #goods .goods-wrap .goods-contents {
    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;
    align-items: baseline; }
    #goods .goods-wrap .goods-contents .goods-sin {
      padding: 2%;
      width: 33%; }
      #goods .goods-wrap .goods-contents .goods-sin img {
        width: 103%;
        margin-left: -5%; }
      #goods .goods-wrap .goods-contents .goods-sin .goods-detail {
        padding: 0 5%;
        text-align: center; }
        #goods .goods-wrap .goods-contents .goods-sin .goods-detail .name {
          font-size: 16px;
          font-weight: 600;
          color: #000;
          display: block;
          margin-top: 8px; }
        #goods .goods-wrap .goods-contents .goods-sin .goods-detail .detail {
          font-size: 12px;
          display: block; }
        #goods .goods-wrap .goods-contents .goods-sin .goods-detail .price {
          font-size: 16px;
          font-weight: 600;
          color: #dc0000;
          display: block;
          margin-top: 8px; }
  #goods .goods-wrap .campain {
    width: 100%;
    margin-top: 60px;
    text-align: center; }
    #goods .goods-wrap .campain h5 {
      padding: 18px 0;
      display: inline-block;
      position: relative;
      height: 50px;
      line-height: 50px;
      text-align: center;
      padding: 0 30px;
      font-size: 18px;
      background: #f36dcf;
      color: #FFF;
      /*文字色*/
      box-sizing: border-box; }
      #goods .goods-wrap .campain h5 br {
        display: none; }
      #goods .goods-wrap .campain h5:before, #goods .goods-wrap .campain h5:after {
        position: absolute;
        content: '';
        width: 0px;
        height: 0px;
        z-index: 1; }
      #goods .goods-wrap .campain h5:before {
        top: 0;
        left: 0;
        border-width: 25px 0px 25px 15px;
        border-color: transparent transparent transparent #fff;
        border-style: solid; }
      #goods .goods-wrap .campain h5:after {
        top: 0;
        right: 0;
        border-width: 25px 15px 25px 0px;
        border-color: transparent #fff transparent transparent;
        border-style: solid; }
    #goods .goods-wrap .campain .campain-inner {
      width: 100%;
      height: auto;
      margin-top: 30px;
      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 .campain .campain-inner .left {
        width: 60%;
        height: auto;
        text-align: left; }
        #goods .goods-wrap .campain .campain-inner .left p {
          font-size: 16px; }
          #goods .goods-wrap .campain .campain-inner .left p span {
            display: inline-block; }
        #goods .goods-wrap .campain .campain-inner .left .campain-detail h6 {
          display: block;
          font-size: 12px;
          margin-bottom: 4px;
          font-weight: 500;
          border-bottom: 1px solid #000;
          letter-spacing: 6px;
          color: #c30c23;
          padding: 4px;
          margin-bottom: 8px;
          margin-top: 30px; }
        #goods .goods-wrap .campain .campain-inner .left .campain-detail p {
          line-height: 1.3em; }
          #goods .goods-wrap .campain .campain-inner .left .campain-detail p span {
            font-size: 12px; }
      #goods .goods-wrap .campain .campain-inner .right {
        width: 35%;
        margin-left: 5%;
        height: auto; }
        #goods .goods-wrap .campain .campain-inner .right .campain-img {
          width: 100%;
          height: auto; }
          #goods .goods-wrap .campain .campain-inner .right .campain-img img {
            width: 100%;
            height: auto;
            display: block;
            transform: rotate(3deg);
            filter: drop-shadow(2px 2px 3px #ddd); }

#enjoy {
  background-color: #b782ee; }
  #enjoy .enjoy-wrap {
    width: 100%;
    height: auto; }
    #enjoy .enjoy-wrap h5 {
      text-align: center; }
    #enjoy .enjoy-wrap .enjoy-image-wrap {
      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; }
      #enjoy .enjoy-wrap .enjoy-image-wrap .enjoy-image {
        padding: 2%;
        width: 33%; }
        #enjoy .enjoy-wrap .enjoy-image-wrap .enjoy-image img {
          width: 103%;
          margin-left: -5%; }
        #enjoy .enjoy-wrap .enjoy-image-wrap .enjoy-image .enjoy-image-text {
          padding: 0 5%; }
    #enjoy .enjoy-wrap .enjoy-time {
      width: calc(100% - 400px);
      max-width: 800px;
      margin-top: 40px;
      margin-left: 400px;
      margin-bottom: 20px; }
      #enjoy .enjoy-wrap .enjoy-time .time {
        text-align: center;
        background-color: #fff;
        width: 100%;
        max-width: 420px;
        display: block;
        margin: auto;
        padding: 20px 0;
        color: #b782ee;
        font-weight: 600; }
  #enjoy .oguro {
    width: 400px;
    position: absolute;
    bottom: -140px;
    display: block;
    left: 0; }
    #enjoy .oguro img {
      position: relative;
      width: 90%;
      max-width: 300px;
      height: auto;
      display: block;
      margin: auto; }

#caution {
  background-color: #ffdd00;
  background-image: url("../images/pt_yellow.png");
  background-repeat: repeat; }
  #caution .caution-wrap {
    width: 100%;
    max-width: 800px;
    margin: auto; }
    #caution .caution-wrap h3 {
      margin-bottom: 40px; }
    #caution .caution-wrap h4 {
      margin-top: 80px; }
    #caution .caution-wrap .caution-list-wrap {
      margin: 60px auto; }
      #caution .caution-wrap .caution-list-wrap ul li {
        padding-left: 1em;
        position: relative;
        margin-bottom: 0.6em; }
        #caution .caution-wrap .caution-list-wrap ul li:before {
          content: "\025A0";
          font-size: 0.8em;
          margin-right: 0.2em;
          position: absolute;
          top: 0.2em;
          left: 0; }
    #caution .caution-wrap .caution-list-faq {
      margin: 60px auto; }
      #caution .caution-wrap .caution-list-faq h5 {
        padding-left: 40px;
        position: relative; }
        #caution .caution-wrap .caution-list-faq h5:before {
          content: "";
          display: block;
          width: 32px;
          height: 32px;
          position: absolute;
          top: 0;
          left: 0;
          background-image: url("../images/icon_faq.svg");
          background-repeat: no-repeat;
          background-position: center;
          background-size: 100%; }

footer {
  width: 100%;
  height: auto; }
  footer .rdg {
    width: 100%;
    background-color: #808080;
    padding: 30px 0; }
    footer .rdg a {
      display: block;
      width: 210px;
      height: auto;
      margin: auto; }
      footer .rdg a img {
        width: 100%;
        height: auto; }
  footer .footer-bottom {
    background-color: #fff;
    padding: 60px 0; }
    footer .footer-bottom .footer-bottom-inner {
      width: 94%;
      max-width: 1000px;
      margin: auto;
      text-align: center;
      padding: 40px 0; }
      footer .footer-bottom .footer-bottom-inner img {
        max-height: 80px; }
  footer .footer-bottom-banners{
      display: block;
      text-align: center;
      margin-bottom: 40px;
  }
  footer .footer-text{
    text-align: center;
}


.footer-sns {
  background-color: #808080;
  display: flex; 
  margin: auto;
  text-align: center;}

  .footer-sns .footer-icon {
    display: flex; 
    margin: auto;
    text-align: center;
    margin-bottom: 12px; }
  
  .footer-sns .footer-icon .footer-icon-ig {
    margin: 0px 16px;}

.viewup {
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
  position: relative;
  top: 60px; }
  .viewup.upslide {
    top: 0;
    opacity: 1; }

.viewzoom {
  opacity: 0; }
  .viewzoom.scale-in-center {
    opacity: 1; }

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

@-webkit-keyframes shake-horizontal {
  0%,
    100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%,
    30%,
    50%,
    70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%,
    40%,
    60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px); }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px); } }
@keyframes shake-horizontal {
  0%,
    100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%,
    30%,
    50%,
    70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%,
    40%,
    60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px); }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px); } }
.viewmem {
  -webkit-animation: viewmem 0.4s linear infinite alternate;
  animation: viewmem 0.4s linear infinite alternate; }

@-webkit-keyframes viewmem {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  51% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); }
  100% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); } }
@keyframes viewmem {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  51% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); }
  100% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); } }
.slide-in-elliptic-top-fwd {
  -webkit-animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-elliptic-top-fwd 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; }

@-webkit-keyframes slide-in-elliptic-top-fwd {
  0% {
    -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
    transform: translateY(-600px) rotateX(-30deg) scale(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0) rotateX(0) scale(1);
    transform: translateY(0) rotateX(0) scale(1);
    -webkit-transform-origin: 50% 1400px;
    transform-origin: 50% 1400px;
    opacity: 1; } }
@keyframes slide-in-elliptic-top-fwd {
  0% {
    -webkit-transform: translateY(-600px) rotateX(-30deg) scale(0);
    transform: translateY(-600px) rotateX(-30deg) scale(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0) rotateX(0) scale(1);
    transform: translateY(0) rotateX(0) scale(1);
    -webkit-transform-origin: 50% 1400px;
    transform-origin: 50% 1400px;
    opacity: 1; } }
.scale-in-center {
  -webkit-animation: scale-in-center 0.5s ease-in-out both;
  animation: scale-in-center 0.5s ease-in-out both; }

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }
.heartbeat {
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both; }

@-webkit-keyframes heartbeat {
  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(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -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; } }
@keyframes heartbeat {
  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(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -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; } }
@media screen and (max-width: 1023px) {
  nav .nav-inner .main-nav li {
    display: block; }
    nav .nav-inner .main-nav li a span {
      font-size: 14px;
      padding: 0 12px; }
  nav .nav-inner .sns-nav li a img {
    width: 24px;
    height: 24px; }

  #story .story-wrap {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; }
    #story .story-wrap .story-left {
      width: 85%;
      margin: auto;
      margin-bottom: 40px; }
      #story .story-wrap .story-left .slider {
        height: 480px;
        -webkit-animation: bgscroll 20s linear infinite;
        animation: bgscroll 20s linear infinite;
        position: relative; }
        #story .story-wrap .story-left .slider .slider-badge {
          width: 240px;
          height: 180px;
          left: -10%; }
  @-webkit-keyframes bgscroll {
    0% {
      background-position: 0 0; }
    100% {
      background-position: -1372.5px 0; } }
  @keyframes bgscroll {
    0% {
      background-position: 0 0; }
    100% {
      background-position: -1372.5px 0; } }
    #story .story-wrap .story-right {
      width: 85%;
      margin: auto; }
      #story .story-wrap .story-right .story-text {
        margin-bottom: 80px; }
      #story .story-wrap .story-right .cm .youtube-wrap {
        border: 12px solid #000; }
  #story .akimoto {
    width: 180px;
    position: absolute;
    bottom: -60px;
    display: block;
    right: 0; }
    #story .akimoto img {
      position: relative;
      width: 135.5%;
      margin-left: -16%;
      height: auto;
      display: block; }

  #play .play-info .sakura {
    bottom: -90px;
    z-index: 1; } }
@media screen and (max-width: 767px) {
  /*shortcut*/
  #shortcut .hint-bt {
    width: 139px; }
  #shortcut .ans-bt {
    width: 180px; }

  .common-bt {
    max-width: 260px; }
    .common-bt span {
      font-size: 16px; }

  body {
    padding-top: 0; }

  .nav-bt {
    width: 80px;
    height: 80px;
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 60; }
    .nav-bt svg {
      width: 100%;
      height: 100%; }
      .nav-bt svg .base-color {
        fill: #fff; }
      .nav-bt svg #tx-close {
        display: none; }
    .nav-bt.open svg #tx-open {
      display: none; }
    .nav-bt.open svg #tx-close {
      display: block; }
    .nav-bt.heartbeat {
      -webkit-animation: heartbeat 1s linear both;
      animation: heartbeat 1s linear both; }

  nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;
    background-color: #fff;
    background-color: #fff;
    background-image: url("../images/pt_dots.png");
    background-repeat: repeat;
    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;
    z-index: 50;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    nav.open {
      left: 0; }
    nav .nav-inner {
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      nav .nav-inner h3 {
        display: block; }
      nav .nav-inner .main-nav {
        width: 100%; }
        nav .nav-inner .main-nav ul {
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column; }
        nav .nav-inner .main-nav li a {
          height: 54px; }
          nav .nav-inner .main-nav li a span {
            color: #000;
            font-size: 18px;
            font-weight: 600; }
      nav .nav-inner .sns-nav {
        width: 100%;
        margin-top: 40px; }
        nav .nav-inner .sns-nav ul {
          width: 100%;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center; }
        nav .nav-inner .sns-nav li {
          border-radius: 50%;
          margin: 4px;
          width: auto;
          padding: 6px; }
          nav .nav-inner .sns-nav li.sns-tw {
            background-color: #000000; }
          nav .nav-inner .sns-nav li.sns-fb {
            background-color: #3B5998; }
          nav .nav-inner .sns-nav li.sns-line {
            background-color: #1dcd00; }
          nav .nav-inner .sns-nav li a {
            height: 40px;
            width: 40px; }
            nav .nav-inner .sns-nav li a svg {
              width: 30px;
              height: 30px;
              display: block; }

  header {
    position: relative;
    padding-top: 40px; }
    header .cr {
      top: 75%;
      bottom: initial;
      left: -140px;
      font-size: 10px; }
    header .dgame {
      position: absolute;
      top: 50px;
      left: 10px;
      width: 40px; }
    header #page-visual {
      margin-top: -30px; }
    header #main-visual .logo {
      width: 90%; }
    header #main-visual .copy-wrap {
      margin-top: -20px; }
    header #main-visual .shachi {
      width: 50%;
      top: -10px;
      right: 3%; }
    header #main-visual .copy {
      width: 50%;
      margin-right: 50%;
      z-index: 11; }
    header #main-visual .mv-bg-wrap .bg-svg.bg-fix {
      width: 35%; }
    header .point {
      position: absolute;
      top: 0;
      left: 0; }
      header .point .point-inner {
        height: 40px; }
        header .point .point-inner span {
          font-size: 10px;
          text-align: center; }

  /*main*/
  #story {
    padding: 100px 0 200px;
    /*answer公開時100に変更*/ }
    #story .story-wrap {
      width: 100%;
      height: auto; }
      #story .story-wrap .story-left {
        width: 90%; }
        #story .story-wrap .story-left .slider {
          display: block;
          height: 320px; }
  @-webkit-keyframes bgscroll {
    0% {
      background-position: 0 0; }
    100% {
      background-position: -915px 0; } }
  @keyframes bgscroll {
    0% {
      background-position: 0 0; }
    100% {
      background-position: -915px 0; } }
        #story .story-wrap .story-left .slider-badge {
          width: 180px;
          height: 140px;
          top: -100px;
          left: -30px; }
      #story .story-wrap .story-right {
        width: 90%; }
        #story .story-wrap .story-right .cm {
          width: 100%;
          position: relative;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex; }
          #story .story-wrap .story-right .cm .youtube-wrap {
            width: 100%;
            padding-top: 54.5%;
            border: 8px solid #000; }
    #story .akimoto {
      width: 180px;
      bottom: -200px; }
      #story .akimoto img {
        width: 100%;
        margin-left: 0; }

  #news .news-wrap {
    width: 90%; }
  #news .twitter {
    padding: 4px; }
  #news .twitter-act {
    width: 100%;
    max-width: 300px;
    margin: 140px auto 0; }
  #news .sakamoto {
    width: 260px;
    bottom: 82px;
    left: -20px; }
    #news .sakamoto img {
      width: 100%;
      margin-left: 0; }

  #play .play-wrap {
    width: 96%;
    margin: auto;
    margin-bottom: 120px; }
    #play .play-wrap .play-image-wrap {
      flex-wrap: wrap; }
      #play .play-wrap .play-image-wrap .play-image {
        width: 46%; }
        #play .play-wrap .play-image-wrap .play-image img {
          display: block; }
        #play .play-wrap .play-image-wrap .play-image .play-image-text {
          margin-bottom: 20px;
          margin-top: 12px; }
  #play .play-info {
    width: 90%;
    padding-top: 24px; }
    #play .play-info h4 {
      margin-top: -46px;
      margin-bottom: 12px; }
    #play .play-info .play-info-list {
      padding: 30px 0;
      position: relative; }
      #play .play-info .play-info-list .map {
        width: 100%;
        margin: 12px 0; }
      #play .play-info .play-info-list:nth-of-type(3) {
        width: 72%; }
    #play .play-info .sakura {
      width: 200px;
      bottom: -60px;
      right: -130px; }

  #goods .goods-wrap .goods-contents {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: auto; }
    #goods .goods-wrap .goods-contents .goods-sin {
      width: 96%;
      margin: auto;
      max-width: 300px;
      margin-bottom: 50px; }
  #goods .goods-wrap .campain {
    width: 100%;
    margin-top: 60px;
    text-align: center; }
    #goods .goods-wrap .campain h5 {
      line-height: 20px;
      font-size: 16px;
      padding: 5px 30px;
      height: 50px; }
      #goods .goods-wrap .campain h5 br {
        display: block; }
    #goods .goods-wrap .campain .campain-inner {
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column; }
      #goods .goods-wrap .campain .campain-inner .left {
        width: 100%; }
        #goods .goods-wrap .campain .campain-inner .left p {
          text-align: center; }
        #goods .goods-wrap .campain .campain-inner .left .campain-detail p {
          text-align: left; }
      #goods .goods-wrap .campain .campain-inner .right {
        width: 80%;
        max-width: 250px;
        margin-left: 0;
        margin-top: 40px; }

  #enjoy {
    padding-bottom: 180px; }
    #enjoy .enjoy-wrap .enjoy-image-wrap {
      width: 80%;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      flex-direction: column;
      margin: auto; }
      #enjoy .enjoy-wrap .enjoy-image-wrap .enjoy-image {
        width: 96%;
        max-width: 300px;
        margin: auto; }
    #enjoy .enjoy-wrap .enjoy-time {
      width: 100%;
      margin-top: 20px;
      margin-left: 0;
      margin-bottom: 20px; }
      #enjoy .enjoy-wrap .enjoy-time .time {
        width: 90%;
        max-width: 300px;
        padding: 20px 0;
        font-weight: 600; }
    #enjoy .oguro {
      width: 240px;
      position: absolute;
      bottom: -200px;
      display: block;
      left: 0; }

  #caution .caution-wrap {
    width: 90%;
    max-width: 800px;
    margin: auto; }
    #caution .caution-wrap .caution-list-wrap ul li {
      font-size: 14px; }

  footer .rdg {
    background-color: #808080;
    padding: 30px 0; }
    footer .rdg a {
      width: 180px; }
  footer .footer-bottom .footer-bottom-inner {
    width: 94%; }
    footer .footer-bottom .footer-bottom-inner img {
      max-height: 40px;
      margin-bottom: 16px; } }



@media screen and (max-width: 425px) {
  #story {
    padding-top: 40px;
    /*answer公開時、40に変更*/ }
    #story .story-wrap .story-left .slider .slider-badge {
      top: -38px;
      width: 180px;
      height: 130px; }

  #special .spbn-wrap {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column; } }
@media screen and (max-width: 374px) {
  /*shortcut*/
  #shortcut .hint-bt {
    width: 120px; }
  #shortcut .ans-bt {
    width: 160px; }

  .nav-bt {
    width: 70px;
    height: 70px;
    top: 20px; }

  #goods .goods-wrap .campain h5 {
    font-size: 14px; } }
/*# sourceMappingURL=style.css.map */

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