/*==================================================
スライダーのためのcss
===================================*/
#reform_fullrenovation .reform_befor_slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 0 auto;
}

#reform_fullrenovation .reform_befor_slider img {
    width: 30vw;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: 20vw;
    object-fit: cover;
}

#reform_fullrenovation .reform_befor_slider .slick-slide {
    transform: scale(0.8);
    /*左右の画像のサイズを80%に*/
    transition: all .5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;
    /*透過50%*/
}

#reform_fullrenovation .reform_befor_slider .slick-slide.slick-center {
    transform: scale(1);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;
    /*透過なし*/
}

#reform_fullrenovation h4 {
    margin: 50px 0 15px;
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
#reform_fullrenovation .slick-prev,
#reform_fullrenovation .slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;
    /*矢印の色*/
    border-right: 2px solid #666;
    /*矢印の色*/
    height: 15px;
    width: 15px;
}

#reform_fullrenovation .slick-prev {
    /*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

#reform_fullrenovation .slick-next {
    /*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

#reform_fullrenovation .slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
    bottom: -30px;
}

#reform_fullrenovation .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

#reform_fullrenovation .slick-dots button {
    color: transparent;
    outline: none;
    width: 10px;
    /*ドットボタンのサイズ*/
    height: 10px;
    /*ドットボタンのサイズ*/
    display: block;
    border-radius: 50%;
    background: #ccc;
    /*ドットボタンの色*/
}

#reform_fullrenovation .slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}

.slick-dots li button:before {
    display: none;
}

.slick-prev:before,
.slick-next:before {
    opacity: -0.25;
}




#reform_fullrenovation .reform_befor_slider { 
  list-style: none;
  padding: 0;
  margin: 10px 0 30px;
}

#reform_fullrenovation .reform_befor_slider img{
  width: 100%;
  height: 32vw;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px){
  #reform_fullrenovation .reform_befor_slider img{ height: 240px; }
}

/* 中央強調 */
#reform_fullrenovation .slick-slide{
  opacity: .35;
  transform: scale(.88);
  transition: .25s ease;
}
#reform_fullrenovation .slick-center{
  opacity: 1;
  transform: scale(1);
}
