/* =========================================================
   HQ Background: Style
   key: band-01
   name: 表示項目を調整できるマスター的な帯（solidcontacts）
   group: band
   type: Style
   layer: band
   value:
   selector:
   ========================================================= */

/* =========================================================
   Band
   ========================================================= */

.c-band {
  margin-top: 80px;
  background: transparent;
  animation: bandSlideIn 0.8s ease-out both;
}

.c-band__inner {
  padding: 16px 0 14px;
}

.c-band__title {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* =========================================================
   Animation
   ========================================================= */

@keyframes bandSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================================================
   SP
   ========================================================= */

@media (max-width: 767px) {
  .c-band {
    margin-top: 70px;
  }

  .c-band__inner {
    padding: 14px 0 12px;
  }

  .c-band__title {
    font-size: 18px;
    text-align: left;
    letter-spacing: 0.1em;
  }
}
