@charset "utf-8";
/*-----------------------------------
 Grid CSS
 レスポンシブ対応グリッドスタイル
-----------------------------------*/
/* レスポンシブレイアウト */
/* PC、タブレット */
/* タブレット大 */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  #scrlConts {
    padding-left: 0px !important;
  }

  #scrlConts img {
    max-width: 442px;
  }
}
/* タブレット小 */
/* スマートフォン大 */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  #scrlContsWrap {
    overflow: none !important;
    height: auto !important;
    max-height: none !important;
  }

  #scrlConts {
    padding-left: 10px !important;
  }

  .ps-scrollbar-y, .ps-scrollbar-y-rail {
    display: none !important;
  }

  #scrlConts img {
    max-width: 430px;
  }
}
/* スマートフォン小 */
@media only screen and (max-width: 479px) {
  #scrlContsWrap {
    overflow: none !important;
    height: auto !important;
    max-height: none !important;
  }

  #scrlConts {
    padding-left: 10px !important;
    width: 80% !important;
  }

  .ps-scrollbar-y, .ps-scrollbar-y-rail {
    display: none !important;
  }

  #scrlConts img {
    max-width: 270px;
  }
}
