.page_title_wrapper{
  position: relative;
  height: 500px;
}
.page_title{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  position: absolute;
  color:#915C1A;
  font-size: 40px;
  font-family: 'Quicksand', sans-serif;
 font-weight: bold;
}

/* 作品一覧 */
.works_items{
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 814px;
  margin-bottom: 360px;
}
.block_relative{
  position: relative;
  margin: 0 auto;
}
.works_item{
  display: block;
  margin-top: 100px;
  height: 280px;
}
.works_item a{
  display: block;
}

.works_item a img{
  transition: .3s;
}

.works_item a:hover{
  opacity: .8;
}

.works_item a:hover img{
  transform: scale(1.05,1.05);
}


.works_item a :hover .works-img-wrapper{
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,.08);
}
.works_img_wrapper{
  margin-bottom: 8px;
  background-color: #fff;
  transition: .3s;
  border: 6px solid #915C1A;
  width: 348px;
  height: 224px;
  z-index: 10;
  border-radius: 8%;
  position: relative;
  border-radius: 8%;
}

.text_block{
  width: 360px;
  height: 224px;
  position: absolute;
  top: 65px;
  background-color:#F8F3EE;
  z-index: 1;
  border-radius: 8%;
  
}

.works_title{
  bottom: -12px;
  left: 50%;
  transform: translate(-50%,-50%);
  position: absolute;
  width: 99px;
  height: 36px;
  font-family: "M PLUS Rounded 1c";
  display: block;
  font-weight: bold;
  text-align: center;
}
.works_title_MAKO{
  bottom: -12px;
  left: 50%;
  transform: translate(-50%,-50%);
  position: absolute;
  width: 122px;
  height: 36px;
  font-family: "M PLUS Rounded 1c";
  display: block;
  font-weight: bold;
  text-align: center;
}
.works_title_TECH{
  bottom: -12px;
  left: 50%;
  transform: translate(-50%,-50%);
  position: absolute;
  width: 126px;
  height: 36px;
  font-family: "M PLUS Rounded 1c";
  display: block;
  font-weight: bold;
}
.works_title_koba_choco{
  bottom: -12px;
  left: 50%;
  transform: translate(-50%,-50%);
  position: absolute;
  width: 126px;
  height: 36px;
  font-family: "M PLUS Rounded 1c";
  display: block;
  font-weight: bold;
  text-align: center;
}

.works_title_kaigo{
  bottom: -12px;
  left: 50%;
  transform: translate(-50%,-50%);
  position: absolute;
  width: 196px;
  height: 36px;
  font-family: "M PLUS Rounded 1c";
  display: block;
  font-weight: bold;
  text-align: center;
}

.works_category{
  margin-top: 10px;
  display: block;
  text-align: center;
  color: #915C1A;
  font-weight: 400;
}
@media screen and (max-width:768px){
  body{
    width: 768px;
  }
  .header{
    width: 768px;
  }
  .works_items{
    /* flex-direction: column; */
    display: block;
    flex-wrap: none;
    width: 360px;
    margin: 0 auto;
  }
  .works_item:last-of-type{
    margin-bottom: 250px
  }
}
@media screen and (max-width:375px){
  body{
    width: 375px;
  }
  .header{
    width: 375px;
  }
}