@charset "utf-8";
/* CSS Document */
div.box {
  font-family:Arial, Helvetica, sans-serif;
}

p {
  margin: 0;
}

strong.blue {
  margin-top: 10px;
	color: #222222;
	font-size: 110%;
}
#works img{
  display:inline-block;
}
#works{
  text-align:center;
  margin:35px;
}

.works-wrapper {
  
}

.works-outer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 100px auto;
}

.works-outer a {
  text-decoration: none;
}

.works-item {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: 50px;
}

.works-url {
  margin-top: 10px;
  font-size: 15px;
  color: #707070;
}

.works-item img {
  max-width: 300px;
  width: 100%;
  transition: all .3s ease-in-out;
}
.works-item img:hover {
  transform: scale(1.2);
}

.works-tag{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.works-tag-item {
  display: inline-block;
  background-color: black;
  color: white;
  border-radius: 5px;
  padding: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.works-tag-item p {
  line-height: 16px;
  font-size: 12px;
}

.works-footer {
  background-color: black;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works-footer a {
  color: white;
  text-decoration: none;
  position: relative;
}

.works-footer a:before {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  left: -60px;
  bottom: 5px;
  border-bottom: 1px solid white;
}

.works-footer a:after {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  left: -60px;
  bottom: 5px;
  border-bottom: 1px solid white;
  transform: rotate(-30deg) translateY(-5px);
}