@charset "UTF-8";
/* アンカーナビ */
.anchor-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1e3a5f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.anchor-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
}
.anchor-nav a {
  color: #f7f7f7;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.anchor-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.anchor-nav .cta-btn {
  background: #f97316;
  color: white;
  border-right: none;
}

/* カードホバー */
.card-hover:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
          box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}/*# sourceMappingURL=tb-deco-style.css.map */