/* =========================================================
   HQ Background: Style
   key: ren-band-01
   name: LG ラウンジ蓮
   group: band
   type: Style
   layer: band
   value:
   selector:
   ========================================================= */

/* =========================================================
   LG ラウンジ蓮｜Band（Header下配置版）
   ========================================================= */

.c-band {
  margin-top: 80px;
  background-color: #3d4979;
}

.c-band__inner {
  padding: 40px 0 40px;
}

.c-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image:
    url("../img/lotus_leaf.webp"), url("../img/lotus_right.webp");

  background-repeat: no-repeat, no-repeat;

  background-position:
    left bottom,
    right bottom;

  background-size: auto, auto;
}

.c-band__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 30px;

  font-weight: bold;
  font-size: 35px;
  line-height: 1;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

.c-band {
  animation: bandSlideIn 0.8s ease-out both;
}

@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: 20px 0 20px;
  }

  .c-band__title {
    font-size: 18px;
    text-align: left;
  }

  .c-band__bg {
    background-image: url("../img/lotus_right_sp.webp");
    background-position: right bottom;
    background-size: auto;
  }
}
