@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  height: 100%;
  width: 100%;
  background-attachment: fixed;
}

html::before {
  content: '';
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #dbedaf;
}

@keyframes bgloop {
  from {
    background-position: -2000px 0;
  }
  to {
    background-position: 0 0;
  }
}

@font-face {
  font-family: 'sourceHansSans-jp';
  src: url('https://www.capcom-games.com/common/font/SourceHanSansJP-VF.otf.woff2') format('woff2-variations');
}


body {
  max-width: 750px;
  min-width: 375px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px 0;
  margin: 0 auto;
  padding-bottom: 106px;
  color: #FFFFFF;
  
  font-family: 'sourceHansSans-jp', sans-serif;
  font-feature-settings: "palt";
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  background-attachment: fixed;
}

body::before {
  content: '';
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 750px;
  height: 100vh;
  background-image: url("../img/sd/dot.png");
  background-repeat: repeat;
  background-size:10%;

  @media (480px <= width <= 750px) { background-size: 720px; }
  @media (750px < width) { background-size: 960px; }
  margin: 0 auto;
  background-size:10%;
}

header{
  position: relative;
  padding: 0px 0px 0;
  margin-top: -44px;
}

header img{
  display: block;
  margin: 0 auto;
  width: 90%;
  margin-top: 34px;
  margin-bottom: 14px;
}

header h2{
  position: absolute;
  top: 10%;
  right: 16px;
  font-size: 16px;
  font-weight: 700;
  width: 40%;
  @media (480px <= width <= 560px) { font-size: 20px; }
  @media (560px < width) { font-size: 24px; }
}

section{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}

a{
  text-decoration: none;
}

a.appliInstall{
  display: block;
  height: auto;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;  
}
a.appliInstall img{
    width: 86%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 6px;
}

@media screen and (min-width:769px) {/* ウィンドウ幅が0〜769pxの場合に適用するCSS */
  a.appliInstall img {
    width: 94%;
    margin-top: 20px;
  }
  }
  a.appliInstall2 img{
    width: 94%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 10px;
    margin-bottom: -26px;
}
@media screen and (min-width:769px) {/* ウィンドウ幅が0〜769pxの場合に適用するCSS */
  a.appliInstall2 img {
    width: 95%;
    margin-top: 20px;
  }
  }

a.getItem{
  display: block;
  height: auto;
}
a.getItem img{
    width: 220px;
}

a.termAndPP{
  display: block;
  height: auto;
  margin: 0 auto;
}
a.termAndPP img{
    width: 240px;
}

img.directImg{
  width: 100%;
  max-width: 512px;
}

img.directImg2{
  width: 100%;
  max-width: 600px;
}

img.directTitleImg{
  width: 100%;
  max-width: 512px;
  margin-bottom: 20px;
}


a.noticeLink{
  color: #FFFFFF;
  font-size: 22px;
  line-height: 100%;
}


footer{
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer div.innerFooter{
    display: flex;
    padding: 16px 0px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 600px;

    border-radius: 16px;
    background: #4da736;
}

footer img{
    width: 53%;
    /*min-width: 200px;*/
    max-width: 360px;
}
footer p{
    color: #FFFFFF;
    line-height: 120%;
    text-align: center;
}
footer p.copy{
    color: #FFFFFF;
    line-height: 120%;
    text-align: center;
}


button.btnInstallFixed{
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 750px;
  height: 64px;
  padding: 0;

  background: url(../img/sd/installAppli.png) center;
  background-size: auto 64px;
  cursor: pointer;
  border: none;
}

.bottom-fixed-button button a {
  text-decoration: none;
}



/* ハンバーガーメニュー */

#nav-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  z-index: 999;
  background: #77c963;
  border: 3px solid #FFFFFF;
  border-radius: 8px;
}

#nav-toggle span {
  display: inline-block;
  position: absolute;
  right: 0;
  left: 0;
  height: 5px;
  width: 32px;
  margin: auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 10.5px;
}
#nav-toggle span:nth-child(2) {
  top: 21.5px;
}
#nav-toggle span:nth-child(3) {
  top: 32.5px;
}

.open #nav-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 14px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

#gloval-nav {
  background-color: rgba(3, 31, 5, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  transform: translateX(-100%);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#gloval-nav a {
  display: block;
  color: #fff;
  padding: 24px 0;
  transition: color 0.6s ease;
  text-decoration: none;
}
#gloval-nav ul li {
  list-style: none;
  opacity: 0;
  transform: translateX(-200px);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
#gloval-nav ul li:nth-child(2) {
  transition-delay: 0.15s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(4) {
  transition-delay: 0.45s;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.6s;
}
.open #gloval-nav li {
  font-weight: bold;
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

#nav-toggle {
  z-index: 100;
}

#gloval-nav {
  z-index: 10;
}





/* 枠 */
.box_period {
  position: relative;
  color: #ffffff;
  font-size: 90px;
  border-width: 16px;
  text-align: center;
  padding: 14px;/* 内側の余白 */
  margin: 0px;/* 外側の余白 */

  background:#fef5e6;  
  background-image: url("../img/sd/mesh.png");
  background-repeat: repeat;

  box-shadow:
  0 0 0 5px #77c963;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
}
.box_period p {
    font-size: 16px;
    text-align: left;
}
.box_period .height {
    margin-top: 56px;
}
.box_period .height02 {
    margin-top: 16px;
}
.box_period .height03 {
    margin-top: 10px;
}
.box_period img {
    width: 100%;
    margin-top: 0px;
}
.box_period .ImgStep1 {
    width: 100%;
    margin-top: max(14.4vw, 54px);
}
.box_period .ImgStep2 {
    width: 100%;
    margin-top: 14px;
}
.box_period .ImgBtnInstall {
    width: 100%;
    margin-top: 14px;
}
.box_period .ImgTitle{
    position: absolute;
    width: 110%;
    left: -20px;
    right: -20px;
    margin: auto;
    margin-top: -32px;
    z-index: 2;
}
.box_period .ImgBtnDetail {
    width: 80%;
    display: block;
    margin: 0 auto;
    margin-top: 6px;
}
.box_period .ImgShop {
    width: 100%;
    border-radius: 10px;
}
.box_period p.brown {
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    color: #912f2c;
    margin-top: 16px;
    margin-bottom: 6px;
    }



.box_period .cap-box {
  width: 100%;
  margin: 0 auto;
  border: 5px solid #4da736;
  border-radius: 10px;
  }

.box_period .cap-box .cap-box-title {
  align-items: center;
  padding: 0.36em;
  background: #4da736;
  color: #fff;
  font-size: 16px;
}
.box_period .cap-box .cap-box-title p.indent  {
  font-size: 16px;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 20px;
  margin-top: 10px;
  margin-bottom: 6px;
}
.box_period .cap-box .cap-box-title p.title  {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}
.box_period .cap-box .cap-box-content {
  padding: 12px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
}
.box_period .cap-box .cap-box-content p {
  margin: 0;
  color: #000;
}
.box_period .cap-box .cap-box-content p.usual  {
  font-size: 16px;
  text-align: center;
  line-height: 22px;
}

.box_period .cap-box .cap-box-content p.order {
  margin: 0;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  width:30%;
  border-radius: 8px;
  background-color: #4da736;
  border: 3px solid #4da736;
}
.box_period .cap-box .cap-box-content p.indent {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 4px;
}
.box_period .cap-box .cap-box-content p.caution {
font-size: 13px;
line-height: 20px;
text-indent: -1em;
padding-left: 1em;
}
.box_period .cap-box .cap-box-content p.date {
  margin: 0;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  width:100%;
  border-radius: 6px;
  background-color: #ff7c00;
  border: 4px solid #ff7c00;
  line-height: 26px;
  font-size: 20px;  
}
.box_period .cap-box .cap-box-content p.place {
text-align: center;
font-size: 16px;
font-weight: bold;
color: #912f2c;
margin-top: 8px;
}
.box_period .cap-box .cap-box-content p.shop {
text-align: center;
font-size: 19px;
font-weight: bold;
color: #912f2c;
line-height: 25px;
margin-top: 0px;
margin-bottom: 10px;
}

.box_period .cap-box .cap-box-title p.titleSchedule  {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-top: -26px;
  margin-left: 52px;
  margin-bottom: 2px;
}
.box_period .cap-box .cap-box-content .time-box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 10px;
}
.box_period .cap-box .cap-box-content .time-box p.time {
  margin: 0;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  width:29%;
  border-radius: 8px;
  background-color: #4da736;
  border: 4px solid #4da736;
  line-height: 26px;  
}
/*会場の様子 SP用*/
.box_period .cap-box .cap-box-content .state{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 4px;
    margin-bottom: 14px;
}
.box_period .cap-box .cap-box-content .state .ImgState{
    width: 46%;
    border-radius: 8px;
}

/*枠グレー SP用*/
.box_period .cap-boxGray {
  width: 100%;
  margin: 0 auto;
  border: 5px solid #6c6c6c;
  border-radius: 10px;
  }

.box_period .cap-boxGray .cap-box-title {
  align-items: center;
  padding: 0.4em;
  background: #6c6c6c;
  color: #fff;
  font-size: 16px;
}
.box_period .cap-boxGray .cap-box-content {
  padding: 12px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
}
.box_period .cap-boxGray .cap-box-title p.titleSchedule  {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  margin-top: -26px;
  margin-left: 52px;
  margin-bottom: 2px;
}
.box_period .cap-boxGray .cap-box-content p.shop {
text-align: center;
font-size: 19px;
font-weight: bold;
color: #6c6c6c;
line-height: 25px;
margin-top: 0px;
margin-bottom: 10px;
}
.box_period .cap-boxGray .cap-box-content .time-box {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 10px;
}
.box_period .cap-boxGray .cap-box-content .time-box p.time {
  margin: 0;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  width:28%;
  border-radius: 8px;
  background-color: #6c6c6c;
  border: 3px solid #6c6c6c;
  line-height: 26px;  
}

/*タイトル緑枠なしの枠 SP用*/
.box_period .cap-box02 {
  width: 100%;
  margin: 0 auto;
  border: 5px solid #4da736;
  border-radius: 10px;
  }
.box_period .cap-box02 .cap-box-content02 {
  padding: 12px;
  background: #fff;
  border-radius: 10px 10px 10px 10px;
}
.box_period .cap-box02 .cap-box-content02 p.usual  {
  font-size: 16px;
  text-align: center;
  color: #000;
  font-weight: 500;
  line-height: normal;
}
.box_period .cap-box02 .cap-box-content02 .sns  {
  width: 22%;
  margin-top: 6px;
  margin-bottom: 6px;
}
/*タイトル緑枠なしの枠 詳細ページ 日時場所見出し SP用*/
.box_period .cap-box03 {
  width: 100%;
  margin: 0 auto;
  border: 2px solid #4da736;
  border-radius: 10px;
  margin-bottom: 16px;
  background: #4da736;
  }
.box_period .cap-box03 .cap-box-content {
  padding: 10px;
}
.box_period .cap-box03 .cap-box-content p.location  {
  font-size:35px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.box_period .cap-box03 .cap-box-content p.location span  {
font-size:40px;
}
.box_period .cap-box03 .cap-box-content p.location .month  {
font-size:28px;
}

/*枠 オレンジ SP用*/
.box_period .cap-boxOrange {
  width: 100%;
  margin: 0 auto;
  border: 5px solid #ff7c00;
  border-radius: 10px;
  margin-top: 16px;
  margin-bottom: 16px;
  }
.box_period .cap-box .cap-boxOrange {
  width: 100%;
  margin: 0 auto;
  border: 5px solid #ff7c00;
  border-radius: 10px;
  margin-top: 16px;
}
.box_period .cap-boxOrange .cap-box-title {
  align-items: center;
  padding: 0.4em;
  background: #ff7c00;
  color: #fff;
  font-size: 16px;
}
.box_period .cap-boxOrange .cap-box-title p.title  {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

.box_period .cap-boxOrange .cap-box-content {
  padding: 12px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
}
.box_period .cap-boxOrange .cap-box-content p {
  margin: 0;
  color: red;
  font-size: 14px;
}
.box_period .cap-boxOrange .cap-box-content p.usual  {
  font-size: 16px;
  text-align: center;
  line-height: 22px;
  color: red;
  margin-bottom: 8px;
}

/* 開催中 大阪梅田×３ */
.box_period .cap-box-wrapper {
  position: relative;
  margin-top: max(18.6667vw, 70px);
}
.box_period .cap-box-wrapper::before {
  content: "";
  position: absolute;
  width: 77%;
  height: 100%;
  background-color: #77C964;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.box_period .cap-box-wrapper .cap-box {
  margin-top: 8px;
  position: relative;
}
.box_period .cap-box-wrapper img {  
  width: 80%;
  display: block;
  margin:0 auto;
  position: sticky;
}
.box_period .cap-box-wrapper .mark {  
  width: 20%;
  margin-left: 2px;
  margin-bottom: 4px;
}



/*スライダー*/
.box_period .slider {
  margin: 0 auto;
  width: 100%;
  margin-top: 16px;
  position: sticky;
}
.box_period .slider img {  
  width: 80%;
  display: block;
  margin:0 auto;
  position: sticky;
}
.box_period .slider .mark {  
  width: 20%;
  margin-left: 2px;
  margin-bottom: 4px;
}
/*-----------デフォルトの矢印を消す----------*/
  .slick-arrow:before{
	content:""!important;
  width: 100%!important;
  height: 100%!important;
  position: absolute;
  top: 0;
  left: 0;
  }
/*-----------ボタンカスタマイズ----------*/
.slick-next:before{
    background: url(../img/sd/arrow02.png)!important;
    background-size: contain!important;
}
.slick-prev:before{
    background: url(../img/sd/arrow01.png)!important;
    background-size: contain!important;
}
/*-----------矢印のサイズと位置を調整----------*/
.slick-arrow{
    z-index:2!important;
    width:46px!important;
    height:46px!important;
}
.slick-next{
    right:-30px!important;
}
.slick-prev{
    left:-30px!important;
}
/*-----------余白----------*/
.slider .slick-slide{
    margin-right: 0.2vw!important;
    margin-left: 0.2vw!important;
}
/*-----------半透明消し----------*/
.slick-arrow:before{
    opacity:1!important;
}

/*X幅調整*/
.box_period .twitter-tweet {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px!important;
}
iframe#twitter-widget-0 {
    max-width: 100%!important;
}








@media screen and (min-width:769px) {/* ウィンドウ幅が0〜769pxの場合に適用するCSS */
  .box_period {
    position: relative;
    width: 80%;

  box-shadow:
  0 0 0 8px #77c963;
  }
  .box_period p {
    font-size: 26px;
    font-weight: bold;
    line-height: 42px;
  }
  .box_period .height {
    margin-top: 114px;
}
  .box_period .height02 {
    margin-top: 20px;
}
  .box_period .height03 {
    margin-top: 8px;
}
  .box_period .ImgStep1 {
    width: 99%;
    margin-top: 114px;
}
.box_period .ImgStep2 {
    width: 99%;
    margin-top: 18px;
}
.box_period .ImgBtnInstall {
    width: 100%;
    margin-top: 18px;
}
.box_period .ImgTitle{
    left: -30px;
    right: -20px;
}
.box_period .ImgShop {
    width: 99%;
    border-radius: 16px;
}
.box_period p.brown {
    font-size: 24px;
    line-height: 34px;    
    }


.box_period .cap-box {
  width: 99%;
  margin: 0 auto;
  border: 8px solid #4da736;
  border-radius: 16px;
}
.box_period .cap-box .cap-box-title {
  padding: 0.6em;
}
.box_period .cap-box .cap-box-title p.indent  {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}
.box_period .cap-box .cap-box-title p.title  {
  font-size: 24px;
}
.box_period .cap-box .cap-box-content {
  padding: 20px;
  font-weight: 500;
}
.box_period .cap-box .cap-box-content p {
  margin: 0;
  color: #000;
  margin-top: 4px;
  font-weight: 500;
}
.box_period .cap-box .cap-box-content p.usual  {
  font-size: 22px;
  line-height: 30px;
}
.box_period .cap-box .cap-box-content p.order {
  border-radius: 8px;
  border: 6px solid #4da736;  
}
.box_period .cap-box .cap-box-content p.caution {
font-size: 18px;
line-height: 26px;
}
.box_period .cap-box .cap-box-content p.date {
  border: 12px solid #ff7c00;
  font-size: 30px;  
}
.box_period .cap-box .cap-box-content p.place {
font-size: 20px;
font-weight: bold;
}
.box_period .cap-box .cap-box-content p.shop {
font-size: 30px;
margin-bottom: 20px;
line-height: 38px;
}
.box_period .cap-box .cap-box-title p.titleSchedule  {
  font-size: 30px;
  text-align: center;
  margin-top: -46px;
}
.box_period .cap-box .cap-box-content .time-box {
  margin-bottom: 10px;
}
.box_period .cap-box .cap-box-content .time-box p.time {
  border: 12px solid #4da736;
  margin-bottom: 8px; 
}


/*枠グレー PC用*/
.box_period .cap-boxGray {
  width: 100%;
  margin: 0 auto;
  border: 8px solid #6c6c6c;
  border-radius: 16px;
  }
.box_period .cap-boxGray .cap-box-title {
  align-items: center;
  padding: 0.4em;
  background: #6c6c6c;
  color: #fff;
  font-size: 16px;
}
.box_period .cap-boxGray .cap-box-content {
  padding: 20px;
  font-weight: 500;
}
.box_period .cap-boxGray .cap-box-title p.titleSchedule  {
  font-size: 30px;
  text-align: center;
  margin-top: -46px;
  margin-left: 70px;
}
.box_period .cap-boxGray .cap-box-content p.shop {
font-size: 30px;
margin-bottom: 20px;
line-height: 38px;
}
.box_period .cap-boxGray .cap-box-content .time-box {
  margin-bottom: 10px;
}
.box_period .cap-boxGray .cap-box-content .time-box p.time {
  border: 12px solid #6c6c6c;
  margin-bottom: 8px; 
}

  /*タイトル緑枠なしの枠　PC用*/
.box_period .cap-box02 {
  width: 99%;
  border: 8px solid #4da736;
  border-radius: 16px;
  margin-top: 6px;
  margin-bottom: 16px;
  }
.box_period .cap-box02 .cap-box-content02 {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}
.box_period .cap-box02 .cap-box-content02 p.usual  {
  font-size: 22px;
}
/*タイトル緑枠なしの枠 詳細ページ 日時場所見出し PC用*/
.box_period .cap-box03 {
  width: 99%;
  margin: 0 auto;
  border: 8px solid #4da736;
  border-radius: 16px;
  margin-bottom: 16px;
  background: #4da736;
  }
.box_period .cap-box03 .cap-box-content {
  padding: 6px;
}
.box_period .cap-box03 .cap-box-content p.location  {
  font-size:43px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.box_period .cap-box03 .cap-box-content p.location span  {
font-size:50px;
}
.box_period .cap-box03 .cap-box-content p.location .month  {
font-size:34px;
}
/*枠 オレンジ PC用*/
.box_period .cap-boxOrange {
  width: 99%;
  margin: 0 auto;
  border: 8px solid #ff7c00;
  border-radius: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  }
.box_period .cap-box .cap-boxOrange {
  width: 100%;
  margin: 0 auto;
  border: 5px solid #ff7c00;
  border-radius: 10px;
  margin-top: 16px;
}
.box_period .cap-boxOrange .cap-box-title {
  align-items: center;
  padding: 0.4em;
  background: #ff7c00;
  color: #fff;
  font-size: 16px;
}
.box_period .cap-boxOrange .cap-box-title p.title  {
  font-size: 24px;
}

.box_period .cap-boxOrange .cap-box-content {
  padding: 20px;
  background: #fff;
  border-radius: 0px 0px 10px 10px;
}
.box_period .cap-boxOrange .cap-box-content p {
  font-size: 21px;
  font-weight: 500;
  line-height: 34px;
  margin-top: 8px;
}
.box_period .cap-boxOrange .cap-box-content p.usual  {
  font-size: 22px;
  line-height: 30px;
  color: red;
  margin-top: 8px;
}

/* 開催中 大阪梅田×３ */
.box_period .cap-box-wrapper {
  position: relative;
  margin-top: 138px;
}
.box_period .cap-box-wrapper .cap-box {
  margin-top: 8px;
  position: relative;
}
.box_period .cap-box-wrapper .mark {  
  margin-left: 24px;
}

/*スライダー*/
.box_period .slider {
  /* margin-top: 138px; */
  margin-top: 20px;
}
.box_period .slider .mark {  
  margin-left: 24px;
}
/*-----------スライダー　矢印のサイズと位置を調整PC版----------*/
.slick-arrow{
    z-index:2!important;
    width:70px!important;
    height:70px!important;
}
.slick-next{
    right:-40px!important;
}
.slick-prev{
    left:-40px!important;
}



  }




