@charset "UTF-8";
/* CSS Document */
/* CSS Document */
/*---------------------
カラム幅設定
----------------------*/
/*---------------------
カラー設定
----------------------*/
/*---------------------
ベンダープレフィックス初期設定
----------------------*/
/*---------------------
透明度　初期設定
----------------------*/
/*---------------------
フォントサイズ初期設定
----------------------*/
/*---------------------
フォントファミリー初期設定
----------------------*/
/*----------------
Retina,高解像度 対策
-----------------*/
/*---------------------
角丸　初期設定
----------------------*/
/*
.box {
     @include circle(100px);
     background: #fc0;
}
*/
/*---------------------
ボックスシャドウ　mixin
----------------------*/
/*
div { @include box-shadow(8px, 8px);}
*/
/*---------------------
グラデーション　mixin
----------------------*/
/* 使用例
 div { @include gradient(#ff00ff, #ff00cc, vertical);}
*/
/*---------------------
デュレーション　mixin
----------------------*/
/*
.move{
    @include transition(0.5s);
}
*/
/*---------------------
キーフレーム　mixin
----------------------*/
@keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #007235;
  }
}
/*---------------------
カラムグリッド mixin
----------------------*/
/*---------------------
カラムグリッド mixin
----------------------*/
/*　使用例 
div { @include ghost-button(“Trebuchet”, 12px, #ffffff, 5px, #34dec6, 4px, 300ms, #000000 );}
*/
/*---------------------
リンクカラー初期設定
----------------------*/
/*---------------------
汎用BOX用　マージンMIXIN リセット
----------------------*/
.m_0 {
  margin: 0 !important;
}

.p_0 {
  padding: 0 !important;
}

#sliderWrap {
  position: relative;
}

#sliderWrap {
  width: 100%; /* スライダーの幅を指定*/
  z-index: 1;
  transition: all 0.3s linear;
}

#sliderWrap .slideRibbon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#sliderWrap .slideRibbon img {
  display: block;
  width: 100%;
  max-width: 500px;
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  #sliderWrap .slideRibbon img {
    max-width: 400px;
  }
}
@media screen and (max-width: 979px) {
  #sliderWrap .slideRibbon img {
    max-width: 300px;
  }
}
#sliderWrap .slideLabel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#sliderWrap .slideLabel img {
  display: block;
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#sliderWrap .mainCatch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#sliderWrap .mainCatch img {
  display: block;
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#sliderWrap .slider {
  width: 100%;
  list-style: none;
}

.slick-arrow {
  z-index: 100;
}

.slick-next {
  right: 10px;
} /*内側に右から10ピクセル移動*/
.slick-prev {
  left: 10px;
} /*内側に左から10ピクセル移動*/
#sliderWrap ul.slider li img {
  display: block;
  width: 100%;
}

.grid-bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  z-index: 10;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li button::before {
  content: "";
  background-image: url("../img/dots.svg");
  height: 1rem;
  width: 1rem;
  vertical-align: middle;
}/*# sourceMappingURL=slide_custom.css.map */