@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
----------------------*/
@-webkit-keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #0094d5;
  }
}

@keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #0094d5;
  }
}

/*---------------------
カラムグリッド 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;
}

/*---------------------
汎用ボタンリンク用　
----------------------*/
.btn {
  -moz-user-select: none;
  background-image: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857;
  margin-bottom: 0;
  padding: 6px 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.btn-info {
  background-color: #5bc0de;
  border-color: #46b8da;
  color: #fff;
}

#sliderWrap {
  position: relative;
}

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

#sliderWrap .mainCatch {
  padding: 0 7%;
}

#sliderWrap .mainCatch {
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#sliderWrap .mainCatch img {
  display: block;
  width: 100%;
  max-width: 480px;
  max-height: 398px;
  pointer-events: none;
}

@media screen and (min-width: 1920px) {
  #sliderWrap .mainCatch img {
    display: block;
    width: 100%;
    max-width: 502px;
    max-height: 416px;
    pointer-events: none;
  }
}

@media screen and (max-width: 979px) {
  #sliderWrap {
    position: relative;
    margin-top: 118px;
  }
}

@media screen and (max-width: 767px) {
  #sliderWrap {
    position: relative;
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  #sliderWrap .mainCatch {
    top: 45%;
    -webkit-transform: translateY(-55%);
            transform: translateY(-55%);
  }
  #sliderWrap .mainCatch img {
    display: block;
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 480px) {
  #sliderWrap .mainCatch {
    padding: 0 7%;
    top: 45%;
    -webkit-transform: translateY(-55%);
            transform: translateY(-55%);
  }
  #sliderWrap .mainCatch img {
    display: block;
    width: 100%;
    max-width: 270px;
  }
}

/*===================================
 スライダーの指定だけならここから下だけでOK
===================================*/
/*==// スライダーのコンテナ //==*/
#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 */