@charset "UTF-8";
/* CSS Document */
.section-works {
  width: auto;
  padding-top: 80px;
  padding-bottom: 40px;
}
.section-works h3 {
  margin-bottom: 16px
}
.section-works h6 {
  margin-bottom: 8px;
}
.section-works ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
	margin-bottom: 120px;
}
.section-works ul::after {
  display: block;
  content: "";
  width: 400px;
}
.section-works ul li {
  width: 100%;
  max-width: 400px;
  flex-direction: column;
  margin-bottom: 40px;
}
.section-works__website-image{
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 6px;	
}
.section-works__website-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 0% 50%;
}
.section-works__tag {
  display: flex;
  flex-wrap: wrap;
	margin-bottom: 10px;
	gap:4px;
}

@media (max-width: 1312px) {
  .section-works {
    margin: 0 16px;
		padding-top: 40px;
    padding-bottom: 24px;
  }
	.section-works h3 {
  margin-bottom: 8px
}
	.section-works h6 {
  margin-bottom: 6px;
}
  .section-works ul {
    flex-flow: column;
    margin-bottom: 96px;
  }
  .section-works ul li {
    width: 100%;
    max-width: 1312px;
		margin-bottom: 40px;
  }
  .section-works__website-image {
    margin-bottom: 6px;
  }
  .section-works__tag {
    margin-bottom: 8px;
  }

}