/*==================================================
スライダーのためのcss
===================================*/
.gll img {
  width:100%;/*スライダー内の画像を横幅100%に*/
  height:auto;
  max-width: 320px;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.gll {
  margin:0 10px;/*スライド左右の余白調整*/
  padding: 0;
  display: flex;
  justify-content: center;
}

.gll li{
    list-style: none;
}


/*==================================================
ギャラリーの追加要素css
===================================*/

.gah{
  height: 260px;
}

@media screen and (max-width:730px)  {
  .gah{
  height: auto;
}
  
}

/*==================================================
コンテンツ用css
===================================*/

.is-pc{
  display: block;
}

@media screen and (max-width:730px)  {
  .is-pc{
  display: none;
}
  
}

.is-sp{
  display: none;
}

@media screen and (max-width:730px)  {
  .is-sp{
  display: block;
}
  
}


/*==================================================
プランの調整css
===================================*/

.planh{
  height: 450px;
}

@media screen and (max-width:730px)  {
  .planh{
  height: auto;
}
  
}