@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*========================
メディアクエリ
========================*/
/*========================
// px → vw
// 指定px ÷ Viewport × 100
========================*/
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

body * {
  box-sizing: border-box;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.container,
.wrapper {
  position: relative;
  margin: auto;
  width: 100%;
}

a {
  text-decoration: none;
  display: inline-block;
}

@media all and (-ms-high-contrast: none) {
  a {
    display: block;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

video {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
  width: 100%;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: inherit;
  font-family: inherit;
}

html {
  margin: 0;
  padding: 0;
  border: none;
}

body,
.wrap {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.wrap {
  background: url(../images/page/bg.jpg) no-repeat top center;
  background-size: cover;
}

body.page {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #665230;
}

body.page img {
  pointer-events: none;
}

body.page a:focus,
body.page *:focus {
  outline: none;
}

@media screen and (min-width: 769px) {
  body.page a,
  body.page .image:hover {
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
  }
  body.page a:hover,
  body.page .image:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  body.page .linecp:hover,
  body.page .twittercp:hover {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
}

header {
  margin-bottom: 5vw;
}

header h1 {
  margin-top: 5vw;
}

@media (min-width: 1281px) {
  header h1 {
    margin-top: 64px;
  }
}

header h1 img {
  display: block;
  margin: 0 auto;
  width: 112.73438vw;
}

@media (min-width: 1281px) {
  header h1 img {
    width: 1443px;
  }
}

header .logo_loto {
  display: block;
  position: fixed;
  z-index: 999;
  left: 1.5625vw;
  top: 1.5625vw;
  width: 13vw;
  height: 17vw;
}

@media (min-width: 1281px) {
  header .logo_loto {
    left: 10px;
    top: 10px;
  }
}

@media (min-width: 1281px) {
  header .logo_loto {
    width: 7%;
    max-width: 149px;
    height: auto;
  }
}

@media (min-width: 1281px) {
  header {
    margin-bottom: 64px;
  }
}

.movieCol {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 5vw;
}

.movieCol .movieInner {
  position: relative;
  background: url(../images/page/bg_movie.png) no-repeat top center;
  background-size: 100%;
  max-width: 100%;
  width: 1283px;
  height: 48.28125vw;
  max-height: 618px;
}

.movieCol .movieInner .chara {
  display: block;
  position: absolute;
  bottom: 0;
  left: -4.0625vw;
  width: 21.5625vw;
  max-width: 276px;
  -webkit-animation: ch_movie 2s infinite;
          animation: ch_movie 2s infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes ch_movie {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(8deg);
            transform: translate(0px, 0px) rotateZ(8deg);
  }
  100% {
    -webkit-transform: translate(1px, 0px) rotateZ(0deg);
            transform: translate(1px, 0px) rotateZ(0deg);
  }
}

@keyframes ch_movie {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(8deg);
            transform: translate(0px, 0px) rotateZ(8deg);
  }
  100% {
    -webkit-transform: translate(1px, 0px) rotateZ(0deg);
            transform: translate(1px, 0px) rotateZ(0deg);
  }
}

@media (min-width: 1281px) {
  .movieCol .movieInner .chara {
    left: -52px;
  }
}

.movieCol .movieEmbed {
  width: 62.8125vw;
  max-width: 804px;
  margin: 7.96875vw auto 0;
}

@media (min-width: 1281px) {
  .movieCol .movieEmbed {
    margin: 102px auto 0;
  }
}

.movieCol .movieBox {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movieCol .movieBox iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media (min-width: 1281px) {
  .movieCol {
    margin-bottom: 64px;
  }
}

.bnrGame {
  display: block;
  width: 1107px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 1.25vw;
}

.bnrGame img {
  width: 100%;
}

@media (min-width: 1281px) {
  .bnrGame {
    margin-bottom: 32px;
  }
}

.anchorCol {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  flex-wrap: wrap-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
  max-width: 90%;
  margin: 0 auto;
  margin-top: 0;
  margin-bottom: 2.5vw;
  width: 700px;
}

.anchorCol a {
  display: block;
  width: 25vw;
  height: 25vw;
  max-width: 180px;
  max-height: 180px;
  overflow: hidden;
  text-indent: -9999px;
  margin: 0 0.39063vw 1.5625vw;
}

@media (min-width: 1281px) {
  .anchorCol a {
    margin: 0 5px 20px;
  }
}

.anchorCol .item {
  background: url(../images/page/cp/btn_item.png) no-repeat center;
  background-size: 100%;
  -webkit-box-ordinal-group: 6;
          order: 5;
}

.anchorCol .gallery {
  background: url(../images/page/cp/btn_gallery.png) no-repeat center;
  background-size: 100%;
  -webkit-box-ordinal-group: 5;
          order: 4;
}

.anchorCol .line {
  background: url(../images/page/cp/btn_line.png) no-repeat center;
  background-size: 100%;
  -webkit-box-ordinal-group: 4;
          order: 3;
}

.anchorCol .twitter {
  background: url(../images/page/cp/btn_twitter.png) no-repeat center;
  background-size: 100%;
  -webkit-box-ordinal-group: 3;
          order: 2;
}

.anchorCol .dcc {
  background: url(../images/page/cp/btn_dcc.png) no-repeat center;
  background-size: 100%;
  -webkit-box-ordinal-group: 2;
          order: 1;
}

@media (min-width: 1281px) {
  .anchorCol {
    margin-top: 0;
    margin-bottom: 32px;
    width: 1000px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.dateCol {
  margin-bottom: 12.96875vw;
}

.dateCol .dateInner {
  position: relative;
  background: url(../images/page/bg_date.png?v2) no-repeat top center;
  background-size: 100%;
  max-width: 100%;
  width: 1100px;
  height: 65vw;
  max-height: 711px;
  margin: 0 auto;
}

.dateCol .dateInner .txt {
  display: block;
  margin: 0 auto;
  padding-top: 5.46875vw;
  width: 55vw;
  max-width: 621px;
}

@media (min-width: 1281px) {
  .dateCol .dateInner .txt {
    padding-top: 68px;
  }
}

.dateCol .dateInner a {
  display: block;
  margin: 0 auto;
  width: 70.3125vw;
  max-width: 694px;
  margin-top: 3.125vw;
}

@media (min-width: 1281px) {
  .dateCol .dateInner a {
    margin-top: 40px;
  }
}

.dateCol .dateInner .btnOnline {
  margin-top: 1.5625vw;
}

@media (min-width: 1281px) {
  .dateCol .dateInner .btnOnline {
    margin-top: 20px;
  }
}

@media (min-width: 1281px) {
  .dateCol {
    margin-bottom: 166px;
  }
}

h2 {
  display: block;
  height: 10.15625vw;
  max-height: 90px;
  width: 100vw;
}

h2 img {
  display: block;
  height: 100%;
  margin: 0 auto;
}

.itemCol {
  display: block;
  margin-bottom: 15.46875vw;
}

.itemCol .itemInner {
  margin: 0 auto;
  position: relative;
  background: url(../images/page/bg_item.png) no-repeat top center;
  background-size: 100%;
  max-width: 100%;
  width: 1100px;
  height: 118.75vw;
  max-height: 1286px;
}

.itemCol .itemInner h3 {
  margin: 0 auto;
  width: 46.875vw;
  max-width: 400px;
  padding-top: 7.03125vw;
}

@media (min-width: 1281px) {
  .itemCol .itemInner h3 {
    padding-top: 80px;
  }
}

.itemCol .itemInner .chara {
  width: 23.82813vw;
  max-width: 245px;
}

@-webkit-keyframes ch_item {
  0% {
    -webkit-transform: scale(1) rotateZ(0deg);
            transform: scale(1) rotateZ(0deg);
  }
  100% {
    -webkit-transform: scale(1.03) rotateZ(0deg);
            transform: scale(1.03) rotateZ(0deg);
  }
}

@keyframes ch_item {
  0% {
    -webkit-transform: scale(1) rotateZ(0deg);
            transform: scale(1) rotateZ(0deg);
  }
  100% {
    -webkit-transform: scale(1.03) rotateZ(0deg);
            transform: scale(1.03) rotateZ(0deg);
  }
}

.itemCol .itemInner .ch_item_span {
  display: block;
  position: absolute;
  bottom: -2.34375vw;
  left: -4.0625vw;
  display: block;
  -webkit-animation: ch_item_span 3s infinite -2s ease-in-out;
          animation: ch_item_span 3s infinite -2s ease-in-out;
}

@media (min-width: 1281px) {
  .itemCol .itemInner .ch_item_span {
    bottom: -50px;
    left: -52px;
  }
}

@-webkit-keyframes ch_item_span {
  0% {
    -webkit-transform: translateY(3vw);
            transform: translateY(3vw);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(3vw);
            transform: translateY(3vw);
  }
}

@keyframes ch_item_span {
  0% {
    -webkit-transform: translateY(3vw);
            transform: translateY(3vw);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(3vw);
            transform: translateY(3vw);
  }
}

@media (min-width: 1281px) {
  @-webkit-keyframes ch_item_span {
    0% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    50% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
    100% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
  }
  @keyframes ch_item_span {
    0% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
    50% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
    }
    100% {
      -webkit-transform: translateY(10px);
              transform: translateY(10px);
    }
  }
}

.itemCol .itemBox {
  width: 75%;
  margin-left: 13.5%;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scale(1);
          transform: scale(1);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: start;
          align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 2.8125vw;
}

@media screen and (max-width: 768px) {
  .itemCol .itemBox {
    margin-left: 6.5%;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@media (min-width: 1281px) {
  .itemCol .itemBox {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media (min-width: 1281px) {
  .itemCol .itemBox {
    margin-top: 36px;
  }
}

.itemCol .itemBox a {
  margin-right: 2.1875vw;
  margin-bottom: 2.96875vw;
}

@media (min-width: 1281px) {
  .itemCol .itemBox a {
    margin-right: 28px;
    margin-bottom: 38px;
  }
}

.itemCol .itemBox a:nth-child(4) {
  margin-right: 0;
}

.itemCol .itemBox a img {
  width: 100%;
}

.itemCol .itemBox .itemA {
  width: 14.45313vw;
  max-width: 185px;
}

.itemCol .itemBox .itemB {
  width: 13.90625vw;
  max-width: 178px;
}

.itemCol .itemBox .itemC {
  width: 15.54687vw;
  max-width: 199px;
}

.itemCol .itemBox .itemD {
  width: 13.59375vw;
  max-width: 174px;
}

.itemCol .itemBox .itemE {
  width: 32.10938vw;
  max-width: 411px;
}

.itemCol .itemBox .itemF {
  width: 24.0625vw;
  max-width: 308px;
}

.itemCol .itemBox .itemG {
  width: 35vw;
  max-width: 448px;
}

.itemCol .itemBox .itemLO {
  width: 22.26563vw;
  max-width: 285px;
}

@media (min-width: 1281px) {
  .itemCol {
    margin-bottom: 198px;
  }
}

.galleryCol {
  display: block;
  margin-bottom: 17.1875vw;
}

.galleryCol h2 {
  margin-bottom: 2.96875vw;
}

@media (min-width: 1281px) {
  .galleryCol h2 {
    margin-bottom: 38px;
  }
}

.galleryCol .galleryInner {
  margin: 0 auto;
  position: relative;
  background: url(../images/page/bg_gallery.png) no-repeat top center;
  background-size: 100%;
  max-width: 100%;
  width: 1100px;
  height: 89.84375vw;
  max-height: 975px;
  padding-top: 6.09375vw;
}

@media (min-width: 1281px) {
  .galleryCol .galleryInner {
    padding-top: 78px;
  }
}

.galleryCol .galleryInner .chara {
  display: block;
  position: absolute;
  bottom: 3.90625vw;
  right: -4.84375vw;
  width: 21.5625vw;
  max-width: 276px;
  -webkit-animation: ch_gallery 2s infinite;
          animation: ch_gallery 2s infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes ch_gallery {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(8deg);
            transform: translate(0px, 0px) rotateZ(8deg);
  }
  100% {
    -webkit-transform: translate(1px, 0px) rotateZ(0deg);
            transform: translate(1px, 0px) rotateZ(0deg);
  }
}

@keyframes ch_gallery {
  0% {
    -webkit-transform: translate(0px, 0px) rotateZ(8deg);
            transform: translate(0px, 0px) rotateZ(8deg);
  }
  100% {
    -webkit-transform: translate(1px, 0px) rotateZ(0deg);
            transform: translate(1px, 0px) rotateZ(0deg);
  }
}

@media (min-width: 1281px) {
  .galleryCol .galleryInner .chara {
    bottom: 50px;
    right: -62px;
  }
}

.galleryCol .slider-wrap {
  margin: 0 auto;
  width: 62.5vw;
  max-width: 650px;
}

@media screen and (max-width: 401px) {
  .galleryCol .slider-wrap {
    width: 66.40625vw;
  }
}

.galleryCol .slider-wrap .slider-nav {
  margin-top: 0.46875vw;
}

@media (min-width: 1281px) {
  .galleryCol .slider-wrap .slider-nav {
    margin-top: 16px;
  }
}

.galleryCol .slider-wrap .slider-nav li {
  cursor: pointer;
  margin: 0 0.625vw;
}

@media (min-width: 1281px) {
  .galleryCol .slider-wrap .slider-nav li {
    margin: 0 8px;
  }
}

.galleryCol button {
  cursor: pointer;
  top: -3%;
  bottom: 0;
  margin: auto;
  position: absolute;
  width: 3.4375vw;
  height: 3.4375vw;
  border: none;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .galleryCol button {
    width: 6.875vw;
    height: 6.875vw;
  }
}

@media (min-width: 1281px) {
  .galleryCol button {
    width: 44px;
    height: 44px;
  }
}

.galleryCol button.slick-prev {
  left: -4%;
  right: auto;
  text-indent: -0.3em;
  line-height: 1;
  background: url(../images/page/gallery/btn_prev.png) no-repeat center center;
  background-size: 100%;
}

@media (min-width: 1281px) {
  .galleryCol button.slick-prev {
    background: none;
    left: -3%;
  }
}

.galleryCol button.slick-next {
  right: -4%;
  left: auto;
  text-indent: 0.3em;
  line-height: 1;
  background: url(../images/page/gallery/btn_next.png) no-repeat center center;
  background-size: 100%;
}

@media (min-width: 1281px) {
  .galleryCol button.slick-next {
    background: none;
    right: -3%;
  }
}

.galleryCol button img {
  opacity: 0;
}

@media (min-width: 1281px) {
  .galleryCol button img {
    opacity: 1;
  }
}

@media (min-width: 1281px) {
  .galleryCol {
    margin-bottom: 220px;
  }
}

.campaignCol {
  display: block;
}

.campaignCol h2 {
  margin-bottom: 2.96875vw;
}

@media (min-width: 1281px) {
  .campaignCol h2 {
    margin-bottom: 38px;
  }
}

.campaignCol .linecp,
.campaignCol .twittercp {
  position: relative;
  z-index: 2;
  max-width: 90%;
  width: 1002px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: block;
  margin: 0 auto;
  border-radius: 2.34375vw;
  margin-bottom: 2.96875vw;
}

.campaignCol .linecp img,
.campaignCol .twittercp img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1281px) {
  .campaignCol .linecp,
  .campaignCol .twittercp {
    border-radius: 30px;
    margin-bottom: 38px;
  }
}

.campaignCol .campaignInner {
  margin: 0 auto;
  position: relative;
  background: url(../images/page/bg_campaign.png) no-repeat top center;
  background-size: 100%;
  max-width: 100%;
  width: 1100px;
  height: 93.75vw;
  max-height: 1012px;
  padding-top: 6.09375vw;
}

@media (min-width: 1281px) {
  .campaignCol .campaignInner {
    padding-top: 68px;
  }
}

.campaignCol .campaignInner img {
  display: block;
  margin: 0 auto;
  width: 62.5vw;
  max-width: 677px;
}

.btnShop,
.btnTop,
.btnFOnline {
  position: fixed;
  z-index: 999;
  width: 20%;
  max-width: 120px;
  bottom: 1.5625vw;
}

@media (min-width: 1281px) {
  .btnShop,
  .btnTop,
  .btnFOnline {
    bottom: 10px;
  }
}

.btnShop img,
.btnTop img,
.btnFOnline img {
  width: 100%;
}

.btnTop {
  right: 1.09375vw;
}

@media (min-width: 1281px) {
  .btnTop {
    right: 7px;
  }
}

.btnShop {
  left: 1.5625vw;
}

@media (min-width: 1281px) {
  .btnShop {
    left: 10px;
  }
}

.btnFOnline {
  left: 22vw;
}

@media screen and (min-width: 800px) {
  .btnFOnline {
    left: 135px;
  }
}

@media (min-width: 1281px) {
  .btnFOnline {
    left: 135px;
  }
}

.btnOff {
  pointer-events: none;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.fancybox-content img {
  padding: 4vw;
}

@media (min-width: 1281px) {
  .fancybox-content img {
    padding: 0;
  }
}

#btn-play {
  cursor: pointer;
  z-index: 999;
  width: 8vw;
  padding: 2.2vw;
  position: absolute;
  right: 2vw;
  top: 2.7vw;
  height: auto;
  border-radius: 11px;
  font-size: inherit;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border: none;
  background: #665230;
}

@media (min-width: 1281px) {
  #btn-play {
    width: 75px;
    max-width: 100px;
    padding: 18px;
    border-radius: 11px;
  }
}

.scrollNone {
  overflow: hidden;
}

.opCol {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/page/bg.jpg) repeat-y top center;
}

.opCol .txt {
  position: relative;
  z-index: 999;
  width: 90%;
  max-width: 650px;
  padding-bottom: 40vw;
}

@media screen and (min-width: 768px) {
  .opCol .txt {
    padding: 0;
  }
}

.opCol .btnSkip {
  cursor: pointer;
  background: #665230;
  color: #ffffff;
  font-weight: 900;
  border-radius: 10px;
  padding: 10px 20px;
  position: absolute;
  z-index: 1000;
  top: 1.5625vw;
  right: 1.5625vw;
}

@media (min-width: 1281px) {
  .opCol .btnSkip {
    top: 20px;
    right: 20px;
  }
}

.opCol .rightF {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.opCol .rightF img {
  width: 54.6875vw;
  max-width: 350px;
  display: block;
  position: absolute;
  opacity: 0;
}

.opCol .rightF img:nth-child(4) {
  bottom: -2vw;
  right: 0;
  opacity: 1;
}

.opCol .rightF img:nth-child(3) {
  bottom: 20vw;
  right: -5vw;
  -webkit-animation: fadeIn 2s 1 1s forwards;
          animation: fadeIn 2s 1 1s forwards;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.opCol .rightF img:nth-child(2) {
  bottom: 40vw;
  right: 0vw;
  -webkit-animation: fadeIn 2s 1 2s forwards;
          animation: fadeIn 2s 1 2s forwards;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.opCol .rightF img:nth-child(1) {
  bottom: 55vw;
  right: 0;
  -webkit-animation: fadeIn 2s 1 3s forwards;
          animation: fadeIn 2s 1 3s forwards;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@media screen and (min-width: 768px) {
  .opCol .rightF img:nth-child(4) {
    bottom: -20px;
    right: 0;
  }
  .opCol .rightF img:nth-child(3) {
    bottom: 150px;
    right: 0;
  }
  .opCol .rightF img:nth-child(2) {
    bottom: 350px;
    right: 0;
  }
  .opCol .rightF img:nth-child(1) {
    bottom: 550px;
    right: 0;
  }
}

.opCol .leftF {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.opCol .leftF img {
  opacity: 0;
  width: 54.6875vw;
  max-width: 350px;
  display: block;
  position: absolute;
}

.opCol .leftF img:nth-child(4) {
  opacity: 1;
  bottom: -2vw;
  left: 0;
}

.opCol .leftF img:nth-child(3) {
  bottom: 20vw;
  left: -5vw;
  -webkit-animation: fadeIn 2s 1 1s forwards;
          animation: fadeIn 2s 1 1s forwards;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.opCol .leftF img:nth-child(2) {
  bottom: 40vw;
  left: 0vw;
  -webkit-animation: fadeIn 2s 1 2s forwards;
          animation: fadeIn 2s 1 2s forwards;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.opCol .leftF img:nth-child(1) {
  bottom: 55vw;
  left: 0;
  -webkit-animation: fadeIn 2s 1 3s forwards;
          animation: fadeIn 2s 1 3s forwards;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@media screen and (min-width: 768px) {
  .opCol .leftF img:nth-child(4) {
    bottom: -20px;
    left: 0;
  }
  .opCol .leftF img:nth-child(3) {
    bottom: 150px;
    left: 0;
  }
  .opCol .leftF img:nth-child(2) {
    bottom: 350px;
    left: 0;
  }
  .opCol .leftF img:nth-child(1) {
    bottom: 550px;
    left: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.twittercpOff{
  pointer-events: none;
}

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