@charset "utf-8";

/* works.html */
.works-heading {
  font-family: "Zen Old Mincho";
  margin-top: 1rem;
  font-size: clamp(2rem, -1.5556rem + 7.4074vw, 4rem);
}
.works-img-display {
  display: block;

  width: 100%;
  height: auto;
}
.right-text{
  width: 50%;
}
.left-text {
  width: 20%;
  margin-right: 20%;
  white-space: nowrap;
}

.works-img-inner {
  position: relative;
  overflow: hidden;
  width: 60vw;
  height: auto;
  margin-inline: auto;
}

.works-img-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); 
  transition: background 0.3s ease;
  z-index: 1;
}

.hover-text {
  position: absolute;
  top: 50%;
  right: 50%;
  left: 50%;
  transform: translate(0%, -50%);
  color: #fff;
  font-size: clamp(1rem, 0.6656rem + 1.5287vw, 2.5rem);
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.works-img-inner:hover::before {
  background: rgba(0, 0, 0, 0.5); 
}

.works-img-inner:hover .hover-text {
  opacity: 1;
}



@media screen and (max-width: 768px) {
  .works-img-display {
    width: 80%;
  }
}
.main-txt-inner {
  display: flex;
  max-width: 50rem;
  margin:5rem auto;
}
.more-works {
  font-size: clamp(2rem, -1rem + 7.4074vw, 3rem);
  text-align: right;
}