.logo img{
   height: 130px;
   width: auto;
  object-fit: contain;
  
}

.hero-visual.tilt {
    position: relative;
    width: 100%;            
    margin: 0 auto;
  }
  
  .hero-visual.tilt img {
    width: 100%;
    height: auto;
    object-fit: cover; 
    object-position: center;
  }
  
  .hero-visual {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    position: relative;
}

.hero-visual img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#formStatus {
  margin-top: 12px;
  color: #a9a9a9;
  opacity: 1;
  transition: opacity 0.8s ease;
}
 
@media ( max-width: 768px){

.hero-visual{
        height: 300px;
}

.hero-box {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, var(--bg-2), #000);
    padding: 40px;
}