html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; -webkit-font-smoothing: antialiased; }
.logo { height: 50px; }
.mw_wp_form { display: none; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form focus */
.form-input:focus { border-color: #0080be !important; outline: none; }

/* Product button hover */
.product-btn:hover {
  background-color: #0080be !important;
  color: #fff !important;
  border-color: #0080be !important;
}

/* Flow connector (horizontal line between steps) */
.flow-connector { display: none; }
@media (min-width: 768px) {
  .flow-connector {
    display: block;
    position: absolute;
    top: 3rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #cce9f7;
    z-index: 0;
  }
}
