@media print,screen and (min-width: 768px) {
  #header .logo {
    line-height: 1;
  }
}
@media only screen and (max-width: 767px) {
  .hero-bg {
    background-color: #33383A;
  }
}

.catch .flex {
  flex-wrap: wrap;
}
.catch h2 {
  width: fit-content;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 5px;
}
.catch .catch-deco {
  flex: 1;
  margin-left: auto;
}
.catch p {
  letter-spacing: 3.5px;
  line-height: 2;
}
@media print,screen and (min-width: 768px) {
  .catch .catch-deco {
    width: 365px;
    flex: 1;
    max-width: 35vw;
    margin-top: -4vw;
  }
}
@media only screen and (max-width: 767px) {
  .catch h2 {
    width: fit-content;
    letter-spacing: min(0.65vw, 3px);
  }
  .catch .catch-deco {
    width: 70vw;
    max-width: 300px;
  }
  .catch p {
    letter-spacing: 2.5px;
  }
}


.results h3 {
  font-weight: normal;
}
.card:nth-child(even) {
  flex-direction: row-reverse;
}
.card .card-text {
  background-color: #fff;
  color: #3C3C3B;
}
.card-text.flex {
  justify-content: center;
  align-items: center;
}
.card-btn {
  border: 1px solid #3C3C3B;
  padding: 7px 13px 7px 8px;
  display: block;
}
.card-btn::after {
  content: '→';
  margin-left: 10px;
}
@media print,screen and (min-width: 768px) {
  .card img {
    width: 50%;
  }
  .card .card-text {
    width: 50%;
  }
  .card-outer {
    margin-bottom: 10px;
  }
  .card-outer:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .card-outer {
    margin-bottom: 0;
  }
  .card .card-text-inner {
    line-height: 2.2;
  }
}


/* ▼ 建築実例 アニメーション関連 ▼ */

/* PC版用: 右からスライドイン */
@media screen and (min-width: 768px) {
  .fade-slide {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1.5s ease, transform 1s ease;
  }
  .fade-slide.visible {
    opacity: 1;
    transform: translateX(0);
  }
}
/* SP用: 下からスライドイン */
@media screen and (max-width: 767px) {
  .fade-slide, .fade-slide img, .fade-slide .card-text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.3s ease, transform 1.3s ease;
  }
  .fade-slide.visible, .fade-slide.visible img, .fade-slide.visible .card-text {
    opacity: 1;
    transform: translateY(0);
  }
}
/* PC・SP共通：hover / focus 時は即座に opacity: 0.7 */
.fade-slide.visible a:hover,
.fade-slide.visible a:focus {
  transition: none;
  opacity: 0.7;
}
/* PC・SP共通：hover / focus を外した直後は即座に opacity: 1 */
.fade-slide.visible a.unhovered {
  transition: none;
  opacity: 1;
}


/*# sourceMappingURL=page_top.css.map */
