/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}

/* スクロールフェードインアニメーション */
.nexa-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.nexa-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* サービスカードホバー効果 */
.nexa-service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nexa-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ブログカードホバー効果 */
.nexa-blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nexa-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* 記事コンテンツのスタイリング */
.nexa-article-content h2 {
  border-bottom: 3px solid #0a56c9;
  padding-bottom: 0.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.nexa-article-content h3 {
  border-left: 4px solid #0a56c9;
  padding-left: 0.75rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* Contact Form 7 フォームスタイリング */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.2s ease;
  background: #fff;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: #0a56c9;
  box-shadow: 0 0 0 3px rgba(10, 86, 201, 0.1);
}

.wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

.wpcf7 input[type="submit"] {
  background-color: #0a56c9;
  color: #fff;
  border: none;
  padding: 0.85rem 3rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #084ba8;
}

.wpcf7 label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.wpcf7 p {
  margin-bottom: 1.25rem;
}

/* ナビゲーション モバイル調整 */
@media (max-width: 768px) {
  .wp-block-columns {
    gap: 1.5rem;
  }
}
