@charset "UTF-8";
/* CSS Document */
.body {
  background-color: #F9F7F6;
}
.title {
  font-size: 3.6rem;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.title span {
  font-size: 1.4rem;
  color: #615143;
  padding-left: 10px;
}
@media (max-width:1200px) {
  .title {
    padding-left: 40px;
  }
}
@media (max-width:630px) {
  .title {
    padding-left: 0px;
  }
}
.works {
  text-align: left;
}
.works_cont_inner {
  margin: 90px auto 150px;
  max-width: 1200px;
}
.btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 90px;
  gap: 10px;
}
.btn li {
  background: #F9F7F6;
  list-style: none;
  margin-top: 10px;
}
.btn li a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  border-radius: 43px;
  border: solid 0.5px #000;
  cursor: pointer;
  padding: 8px 21px;
}
.btn li a.active { /*ボタンに現在地＝activeというクラス名がついたら背景色を変更*/
  background: #000;
  color: #fff;
}
.list {
  margin: 80px 0px;
  list-style: none;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.list li {
  max-width: calc((100% - 40px)/3);
}
.list li a {
  text-decoration: none;
  color: #000;
}
.list li a:hover img {
  transform: scale(1.05, 1.05);
  transition: 0.5s all;
}
.list li a:hover .works_image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.10);
  background-image: radial-gradient(rgba(153, 153, 153, 0.52) 33%, transparent 36%);
  background-size: 2px 2px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 1;
  transition: 0.5s all;
}
.works_image {
  overflow: hidden;
  position: relative;
}
.works_image img {
  width: 100%;
  transition: 0.5s all;
  vertical-align: top;
}
.list li a p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  color: #C0A79C;
  font-size: 1.4rem;
}
.works_location {
  display: flex;
  align-items: flex-end;
  margin-top: 10px;
}
.works_location img {
  width: 14px;
  margin-right: 2px;
}
.visibiliry-hidden {
  visibility: hidden;
}
.list li a h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
  margin-left: 2px;
}
.works_text {
  display: flex;
  justify-content: space-between;
}
.viewmore_button {
  display: none;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: solid 0.5px #000;
  line-height: 120px;
  text-align: center;
  margin: 0 auto;
}
.viewmore_button a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
  color: #000;
  transition: 0.4s;
}
.viewmore_button a:hover {
  background-color: #000;
  color: #fff;
  transition: 0.4s;
}
@media (max-width:1200px) {
  .btn {
    margin: 80px 40px;
  }
  .list {
    margin: 80px 40px;
  }
}
@media (max-width:630px) {
  .works_cont_inner {
    margin: 50px 15px 100px;
  }
  .btn {
    margin: 80px 0px;
  }
  .list {
    flex-direction: column;
    align-items: center;
    margin: 80px 0;
  }
  .list li {
    max-width: 600px;
  }
}