@charset "UTF-8";



/*****************
共通
*****************/
.works_list {}
.works_list h2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  letter-spacing: 5px;
}
.works_list h2 i {
  display: inline-block;
  font-size: 7.5rem;
  margin-right: 50px;
  letter-spacing: normal;
}

.works_list ul {
  padding: 0;
  margin: 0;
  list-style: none;

  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.works_list ul li {
  width: 32%;
  padding: 0;
  margin: 0;
  margin-bottom: 35px;
  margin-right: 2%;
}
.works_list ul li:nth-child(3n){
  margin-right: 0;
}
.works_list ul li picture {
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
  border: 1px solid #ccc;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.works_list ul li picture::before {
  display: block;
  content: '';
  padding-top: 70%;
}
.works_list ul li picture img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s all;
}
.works_list ul li picture img:hover {
  transform:scale(1.2,1.2);
  transition:0.8s all;
}
.works_list ul li picture img.wide {
  width: auto;
  height: 100%;
}
.works_list ul li p {}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 600px) {
  .works_list h2 i {
    font-size: 5rem;
    margin-right: 20px;
  }
  .works_list ul li {
    width: 49%;
    margin-right: 2%;
  }
  .works_list ul li:nth-child(3n){
    margin-right: 2%;
  }
  .works_list ul li:nth-child(2n){
    margin-right: 0;
  }
}
@media screen and (max-width: 450px){
  .works_list ul {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
  }
  .works_list ul li {
    width: 100%;
    margin-right: 0;
  }
  .works_list ul li:nth-child(3n){
    margin-right: 0;
  }
}




/* =====================
   works_construction
======================== */
#works_construction {
  position: relative;
}
#works_construction::before {
  content: '';
  width: 20%;
  height: 100%;
  background-color: #E9E9E9;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 60px 0 0;
}

@media screen and (min-width: 1250px) {
  #works_construction::before {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 600px) {
  #works_construction::before {
    width: 40%;
  }
}
@media screen and (max-width: 450px) {
}
