@charset "UTF-8";
body {
  background-color: #fff;
}

.kmp20th p {
  font-family: "游ゴシック Medium","游ゴシック体","Yu Gothic Medium",YuGothic,"メイリオ",Meiryo,Lato,"Noto Sans JP","ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

.kmp20th img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.content {
  max-width: 1070px;
  padding: 0 15px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content {
    padding: 0 6vw;
  }
}

.fadeIn {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1.5s;
}

.fadeNow {
  opacity: 1;
  transform: translate(0, 0);
}

.leftIn {
  opacity: 0;
  transform: translate(-200px, 0px);
  transition: all 1.5s;
}

.leftInNow {
  opacity: 1;
  transform: translate(0, 0);
}

.rightIn {
  opacity: 0;
  transform: translate(200px, 0px);
  transition: all 1.5s;
}

.rightInNow {
  opacity: 1;
  transform: translate(0, 0);
}

.logoIn {
  animation: bounce 3s ease infinite , logoEffect 3s ease;
}

@keyframes logoEffect {
  0% {
    transform: translate(-50%, -50%) scale(5, 5);
    opacity: 0;
    transform-origin: center;
  }
  10% {
    transform: translate(-50%, -50%) scale(0.7, 0.7);
    opacity: 0.8;
    transform-origin: center;
  }
  20% {
    transform: translate(-50%, -50%) scale(1.2, 1.2);
    opacity: 1;
    transform-origin: center;
  }
  25% {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
    transform-origin: center;
  }
  30% {
    transform: translate(-50%, -50%) scale(1.1, 1.1);
    opacity: 1;
    transform-origin: center;
  }
  35% {
    transform: translate(-50%, -50%) scale(0.98, 0.98);
    opacity: 1;
    transform-origin: center;
  }
  38% {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
    transform-origin: center;
  }
  100% {
    opacity: 1;
    transform-origin: center;
    transform: translate(-50%, -50%) scale(1, 1);
  }
}

@keyframes bounce {
  0% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -52%);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  img.lg-image {
    max-width: 90% !important;
  }
}

#lg-download {
  display: none;
}

#lg-counter span {
  color: #fff;
}

#google_translate_element img {
  width: auto;
}

#modal img {
  width: auto;
}

.siteLink {
  width: 80%;
  border: 2px solid #fff;
  background-image: url(../img/btn_gold.jpg);
  background-size: cover;
  position: relative;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

.siteLink a {
  display: block;
  text-align: center;
  font-size: 35px;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  .siteLink a {
    font-size: 20px;
  }
}

.siteLink::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.siteLink:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.buyLink {
  width: 80%;
  border: 2px solid #fff;
  background-image: url(../img/btn_orange.jpg);
  background-position: right;
  position: relative;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

.buyLink a {
  display: block;
  text-align: center;
  font-size: 35px;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
}

@media screen and (max-width: 768px) {
  .buyLink a {
    font-size: 20px;
  }
}

.buyLink::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.buyLink:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.border {
  position: relative;
  display: inline-block;
  border: 3px solid #ff0000;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all .2s;
}

.border::before, .border::after {
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  border: 3px solid transparent;
  box-sizing: content-box;
}

.border:hover {
  color: #ffffff;
}

.border:hover::before, .border:hover::after {
  width: 100%;
  height: 100%;
}

.border:hover::before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  transition: width .3s, height .3s .3s;
}

.border:hover::after {
  border-bottom-color: #ffffff;
  border-left-color: #ffffff;
  transition: height .3s, width .3s .3s;
}

.borderRed {
  position: relative;
  display: inline-block;
  border: 3px solid #ffffff;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all .2s;
}

.borderRed::before, .borderRed::after {
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 2;
  content: '';
  width: 0;
  height: 0;
  border: 3px solid transparent;
  box-sizing: content-box;
}

.borderRed:hover {
  color: #ff0000;
}

.borderRed:hover::before, .borderRed:hover::after {
  width: 100%;
  height: 100%;
}

.borderRed:hover::before {
  border-top-color: #ff0000;
  border-right-color: #ff0000;
  transition: width .3s, height .3s .3s;
}

.borderRed:hover::after {
  border-bottom-color: #ff0000;
  border-left-color: #ff0000;
  transition: height .3s, width .3s .3s;
}

.topImage {
  position: relative;
}

.topImage #kamihubukiTop {
  z-index: -1;
  width: 100%;
  height: 92vh;
  background-color: #f3f3f3;
  background-image: url(../img/topBg.jpg);
}

@media screen and (max-width: 768px) {
  .topImage #kamihubukiTop {
    background-size: cover;
  }
}

.topImage__logo {
  max-width: 700px;
  width: 30%;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .topImage__logo {
    width: 70%;
  }
}

.topImage__scroll {
  position: relative;
  height: 8vh;
  background-color: #ffffff;
}

.topImage__scroll img {
  width: 214px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.new, .schedule, .campaign {
  padding: 8vh 0;
}

.schedule {
  padding-bottom: 0;
}

.new {
  background-image: url(../img/sunBg.jpg);
  background-size: cover;
  background-position: bottom;
}

.new__gradation {
  margin: -8vh 0;
  padding: 8vh;
  background: linear-gradient(25deg, rgba(255, 187, 0, 0.5), rgba(255, 0, 0, 0.5), rgba(255, 0, 200, 0.5));
  background-size: 200% 200%;
  /*サイズを大きくひきのばす*/
  animation: bggradient 4s ease infinite;
}

@media screen and (max-width: 768px) {
  .new__gradation {
    padding: 8vh 0;
  }
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.new__title {
  max-width: 700px;
  width: 70%;
  margin: 0 auto 70px;
}

.new .content {
  display: flex;
}

@media screen and (max-width: 768px) {
  .new .content {
    display: block;
  }
}

.new__imgWrap {
  max-width: 300px;
  margin-right: 40px;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .new__imgWrap {
    width: 60%;
    margin: 0 auto 10vw;
  }
}

.new__text {
  max-width: 700px;
}

.new__text h2 {
  font-size: 31px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3em;
}

@media screen and (max-width: 768px) {
  .new__text h2 {
    font-size: 5vw;
    line-height: 7vw;
  }
}

.new__text span {
  font-weight: bold;
  color: #fff;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .new__text span {
    font-size: 4.2vw;
  }
}

.new__text p {
  font-size: 16px;
  line-height: 1.4em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .new__text p {
    font-size: 4vw;
  }
}

.new__text .siteLink {
  margin: 45px auto 15px;
}

.new__text .siteLink a {
  font-size: 30px;
}

.new__text .buyLink {
  margin: 0 auto;
}

.new__text .buyLink a {
  font-size: 30px;
}

.schedule {
  background-color: #ffffff;
  position: relative;
  z-index: 0;
}

.schedule__title {
  max-width: 600px;
  width: 70%;
  margin: 0 auto 20px;
}

@media screen and (max-width: 768px) {
  .schedule__title {
    margin: 0 auto 1.2vw;
  }
}

.schedule__title20th {
  max-width: 450px;
  width: 42%;
  margin: 0 auto 20px;
}

@media screen and (max-width: 768px) {
  .schedule__title20th {
    margin: 0 auto 1.2vw;
    max-width: initial;
    width: 63%;
  }
}

.schedule__title_sub {
  max-width: 460px;
  width: 35%;
  margin: 0 auto 70px;
}

@media screen and (max-width: 768px) {
  .schedule__title_sub {
    margin: 0 auto 60px;
    width: 60%;
  }
}

.schedule .tabWrap {
  margin-bottom: 15px;
}

.schedule .tabWrap .tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100% !important;
}

.schedule .tabWrap .tab li {
  width: 24%;
}

.schedule .tabWrap .tab li a {
  display: block;
  background: #ddd;
  border: 3px solid #ffffff;
}

.schedule .tabWrap .slick-prev:before, .schedule .tabWrap .slick-next:before {
  color: #ff0000;
}

.schedule .area {
  background-image: url(../img/sunBg.jpg);
  background-size: cover;
  background-position: bottom;
  padding: 25px 30px;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .schedule .area {
    padding: 20px 25px;
  }
}

.schedule .area h2 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 3rem;
}

@media screen and (max-width: 768px) {
  .schedule .area h2 {
    font-size: 4.2vw;
    line-height: 6vw;
  }
}

.schedule .area span {
  font-weight: bold;
  color: #fff;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .schedule .area span {
    font-size: 3.5vw;
  }
}

.schedule .area p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .schedule .area p {
    font-size: 3.5vw;
    word-break: break-all;
  }
}

.schedule .area p.commingSoon {
  font-weight: bold;
  text-align: center;
  padding: 35px 0 10px;
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .schedule .area p.commingSoon {
    font-size: 5vw;
  }
}

.schedule .area .linkWrap {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .schedule .area .linkWrap {
    display: block;
  }
}

.schedule .area .linkWrap .siteLink {
  width: 46%;
  font-size: 25px;
  margin: 0 2%;
}

@media screen and (max-width: 768px) {
  .schedule .area .linkWrap .siteLink {
    margin: 25px auto 15px;
    width: 100%;
  }
}

.schedule .area .linkWrap .buyLink {
  width: 46%;
  font-size: 25px;
  margin: 0 2%;
}

@media screen and (max-width: 768px) {
  .schedule .area .linkWrap .buyLink {
    margin: 0 auto;
    width: 100%;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.schedule__20th {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.schedule__20th div {
  width: 400px;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .schedule__20th div {
    width: 60%;
  }
}

.schedule__20thYellow {
  left: -100px;
  top: 10%;
  animation: neon 4s infinite;
}

.schedule__20thGreen {
  right: -100px;
  top: 20%;
  animation: neonTwo 4s infinite;
}

.schedule__20thRed {
  left: -100px;
  bottom: 19%;
  animation: neonTwo 4s infinite;
}

.schedule__20thOrange {
  right: -100px;
  bottom: 10%;
  animation: neon 4s infinite;
}

.schedule__20thRed_event {
  left: -100px;
  top: 35%;
  animation: neonTwo 4s infinite;
}

.schedule__20thOrange_event {
  right: -100px;
  top: 50%;
  animation: neon 4s infinite;
}

.schedule__20thYellow_event {
  left: -100px;
  bottom: 35%;
  animation: neon 4s infinite;
}

.schedule__20thGreen_event {
  right: -100px;
  bottom: 28%;
  animation: neonTwo 4s infinite;
}

@keyframes neon {
  0% {
    opacity: 0.5;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 0.8;
  }
  30% {
    opacity: 0.2;
  }
  40% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.8;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0.8;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes neonTwo {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.3;
  }
  20% {
    opacity: 0.8;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.2;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.5;
  }
}

.message {
  position: relative;
}

@media screen and (min-width: 769px) {
  .message .content {
    padding: 8vh 15px;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .message .content {
    padding: 8vh 6vw;
  }
}

.message__newWrap {
  width: 97%;
  margin: 0 auto;
  border-top: 5px solid #ff4040;
  border-bottom: 5px solid #ff4040;
  background-color: #ff4040;
}

@media screen and (max-width: 768px) {
  .message__newWrap {
    width: 114%;
    margin-left: -6vw;
  }
}

.message__title {
  max-width: 500px;
  width: 70%;
  margin: 0 auto 20px;
}

@media screen and (max-width: 768px) {
  .message__title {
    margin: 0 auto 1.2vw;
  }
}

.message__title_sub {
  max-width: 215px;
  width: 70%;
  margin: 0 auto 70px;
}

@media screen and (max-width: 768px) {
  .message__title_sub {
    margin: 0 auto 60px;
    width: 37%;
  }
}

.message .areaCampaignSoon {
  padding: 25px 30px;
  border-radius: 10px;
  border: 3px solid #ff0000;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .message .areaCampaignSoon {
    padding: 20px 25px;
  }
}

.message__slideWrap {
  position: relative;
}

@media screen and (max-width: 768px) {
  .message__slideWrap {
    border-radius: 0px;
    border: none;
  }
}

.message__slideWrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.message__listWrap {
  margin-top: 50px;
}

.message__listWrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.message__listWrap ul li {
  width: 23%;
  position: relative;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .message__listWrap ul li {
    width: 30%;
    margin-bottom: 5.33vw;
    border-radius: 0px;
    border: none;
  }
}

.message__listWrap ul li iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.slick-dotted.slick-slider {
  width: 86% !important;
}

.kamihubukiWrap {
  position: relative;
}

#kamihubukiMessage {
  z-index: -1;
  width: 100%;
  background-color: #fff;
  top: 0;
  position: absolute;
  height: 100%;
}

.campaign {
  position: relative;
  z-index: 0;
}

.campaign__title {
  max-width: 600px;
  width: 70%;
  margin: 0 auto 70px;
}

.campaign .content {
  text-align: center;
}

.campaign .tabCampaign {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.campaign .tabCampaign li {
  width: 30%;
}

.campaign .tabCampaign li:nth-child(1) {
  background-image: url(../img/campaignBg01.jpg);
}

.campaign .tabCampaign li a {
  display: block;
  background: rgba(0, 0, 0, 0.3);
  border: 3px solid #ffffff;
}

.campaign .tabCampaign li.active a {
  border: 3px solid #ff0000;
}

.campaign .areaCampaignSoon {
  padding: 25px 30px;
  border-radius: 10px;
  border: 3px solid #ff0000;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .campaign .areaCampaignSoon {
    padding: 20px 25px;
  }
}

.campaign .areaCampaign {
  display: none;
  opacity: 0;
  padding: 25px 30px;
  border-radius: 10px;
  border: 3px solid #ff0000;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .campaign .areaCampaign {
    padding: 20px 25px;
  }
}

.campaign .areaCampaign.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.campaign .areaCampaign h2 {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ff0000;
  line-height: 1.9rem;
}

@media screen and (max-width: 768px) {
  .campaign .areaCampaign h2 {
    font-size: 5vw;
    line-height: 7vw;
  }
}

.campaign .areaCampaign .imgWrap {
  margin-bottom: 20px;
}

.campaign .areaCampaign p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 25px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .campaign .areaCampaign p {
    font-size: 4vw;
    word-break: break-all;
  }
}

.campaign .areaCampaign p.commingSoon {
  font-weight: bold;
  text-align: center;
  padding: 35px 0 10px;
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .campaign .areaCampaign p.commingSoon {
    font-size: 5vw;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.campaign .schedule__20th {
  z-index: -1;
}

.newRelease {
  padding: 8vh 0;
  margin: auto;
  background-image: url(../img/releaseBg.jpg);
  background-size: contain;
}

.newRelease__gradation {
  margin: -8vh 0;
  padding: 8vh;
  background: linear-gradient(25deg, rgba(255, 187, 0, 0.5), rgba(255, 0, 0, 0.5), rgba(255, 0, 200, 0.5));
  background-size: 200% 200%;
  /*サイズを大きくひきのばす*/
  animation: bggradient 4s ease infinite;
}

@media screen and (max-width: 768px) {
  .newRelease__gradation {
    padding: 8vh 0;
  }
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media screen and (max-width: 768px) {
  .newRelease {
    padding: 8vh 0;
  }
}

.newRelease__titleWrap {
  width: 70%;
  margin: 0 auto 70px;
}

@media screen and (max-width: 768px) {
  .newRelease__titleWrap {
    width: 90%;
  }
}

.newRelease__newList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.newRelease__newList ul li {
  width: 35.5vw;
  margin-right: 10vw;
  margin-bottom: 6vw;
}

@media screen and (min-width: 769px) {
  .newRelease__newList ul li {
    width: 14%;
    margin-right: 3% !important;
    margin-bottom: 47px;
  }
}

.newRelease__newList ul li:nth-child(even) {
  margin-right: 0;
}

@media screen and (min-width: 769px) {
  .newRelease__newList ul li:nth-child(even) {
    margin-right: 3% !important;
  }
}

.newRelease__newList ul li .newRelease__label a {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 2vw;
  color: #fff;
  font-weight: bold;
  padding: 2px 0.8em;
}

@media screen and (min-width: 769px) {
  .newRelease__newList ul li .newRelease__label a {
    font-size: 10px;
  }
}

.newRelease__newList ul li .newRelease__title {
  margin-bottom: 15px;
}

.newRelease__newList ul li .newRelease__title a {
  color: #ffffff;
  font-size: 3.2vw;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .newRelease__newList ul li .newRelease__title a {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}

.newRelease__newList ul li dt {
  font-size: 3.2vw;
  float: left;
  clear: both;
  margin-right: 2vw;
  margin-bottom: 1.5vw;
  font-weight: bold;
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .newRelease__newList ul li dt {
    font-size: 10px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

.newRelease__newList ul li dd {
  font-size: 3.2vw;
  margin-bottom: 1.5vw;
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .newRelease__newList ul li dd {
    font-size: 10px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

.newRelease__newList ul li a {
  transition: all 0.5s;
}

.newRelease__newList ul li a:hover {
  opacity: 0.5;
}

.newRelease__newList ul li a img {
  margin-bottom: 5px;
}

@media screen and (min-width: 769px) {
  .newRelease__newList ul li:nth-child(6n) {
    margin-right: 0px !important;
  }
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}

#main {
  margin-bottom: -100px;
}

@media screen and (max-width: 768px) {
  #main {
    margin-bottom: -6vh;
  }
}

@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: -10px !important;
  }
}

@media screen and (max-width: 768px) {
  .slick-next {
    right: -6.3vw !important;
  }
}

@media screen and (max-width: 768px) {
  .slick-prev {
    left: -6.3vw !important;
  }
}

@media screen and (max-width: 768px) {
  .slick-prev:before, .slick-next:before {
    font-size: 6vw !important;
  }
}
