@charset "UTF-8";

.titleSub{
  text-align:center;
}

.titleSub p{
  font-size:1.4rem;
}

/* ===========
      Works
   =========== */
.WorksList{
    padding-top:72px;
}
.search{
    display:flex;
    justify-content:space-between;

    font-size:16px;
    line-height:2rem;
    text-align:center;
}
.search_item {
    display: inline-block;
    padding: 3px;
    cursor: pointer;
    width:20%;
    position:relative;
  }
  .is-active::after{
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-width: 14px;
    margin-left: -14px;
  }

  .search_item[data-group=""]{
    color: #FFF462;
    background-color: #4d4d4d;
  }
  .is-active[data-group=""]{
    color: #ffffff;
    background-color: #FFF462;
  }
  .is-active[data-group=""]::after{
    border-top-color: #FFF462;
  }

  .search_item[data-group="w"]{
    color:#61b0ff;
    background-color: #4d4d4d;
  }
  .is-active[data-group="w"]{
    color:#ffffff;
    background-color:#61b0ff;
  }
  .is-active[data-group="w"]::after{
    border-top-color: #61b0ff;
  }
  .search_item[data-group="o"]{
    color:#61ff96;
    background-color:#4d4d4d;
  }
  .is-active[data-group="o"]{
    color:#ffffff;
    background-color:#61ff96;
  }
  .is-active[data-group="o"]::after{
    border-top-color: #61ff96;
  }

  .search_item[data-group="p"]{
    color:#ffcd61;
    background-color:#4d4d4d;
  }
  .is-active[data-group="p"]{
    color:#ffffff;
    background-color:#ffcd61;
  }
  .is-active[data-group="p"]::after{
    border-top-color: #ffcd61;
  }

  .is-hide {
    display: none;
  }

  .list{
      display:flex;
      flex-wrap:wrap;
      justify-content: space-between;
      padding-top:108px;
  }
  .list_item{
      width:25%;
      padding-top:32px;
      padding-bottom:32px;
      margin-bottom:32px;
      box-shadow:0 5px 10px 0 rgba(102, 68, 0, 0.5);
      transition:all 0.5s cubic-bezier(0.58, -0.93, 0.46, 2.38);
      background-color:#ffffff;
      border:1px solid #000000;
  }

  .list_item:hover{
    transform:translateY(-15px);
    box-shadow:0 15px 20px 0 rgba(102, 68, 0, 0.5);
  }
  
  .wIMG{
      width:80%;
      height:164px;
      margin:0 auto;
      background-repeat: no-repeat;
      background-size:cover;
      background-position:center;
  }
  .imgSize{
    width:100%;
    height:100%;
    object-fit: cover;
  }
  .list_item[data-group="w"] img{
    object-position: 0 0;
  }

  .list_item p{
    text-align:center;
    padding-top:32px;
  }

  .list::after{
    content:"";
    display: block;
    width:25%;
  }

  /*==== タブレット ====*/
@media screen and (max-width: 1024px){
  .list_item{
    width:45%;
  }
}

/*==== スマホ ====*/
@media screen and (max-width: 600px){
  .list_item{
    width:100%;
  }
  .wIMG{
    height:calc(100vw * 0.4);
  }
}

/* ===========
      お問い合わせ
   =========== */
   #Contact {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.contactBox{
    padding: 48px 0px 84px;
}

.btnBox{
    padding-top:48px;
}

.c_btn{
    margin:0 auto;
}
/*==== タブレット ====*/
@media (min-width : 600px) {

}
/*==== PC ====*/
@media screen and (min-width: 1024px) {
}

/*==== スマホ ====*/
@media screen and (max-width: 599px) {
    
}