article {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
article:first-child {
  opacity: 1;
}
.keyvisual {
  width: 100%;
  height: 100vh;
  position: relative;
}
.bg {
  width: 100%;
  height: 100vh;
  position: relative;
}
.bg_1 {
  background: url(../../img/brand/life/brand-life-img-01_2x.jpg) no-repeat
    center/cover;
}
.bg_2 {
  background: url(../../img/brand/life/brand-life-img-02_2x.jpg) no-repeat
    center/cover;
}
.bg_3 {
  background: url(../../img/brand/life/brand-life-img-03_2x.jpg) no-repeat
    center/cover;
}
.bg_4 {
  background: url(../../img/brand/life/brand-life-img-04_2x.jpg) no-repeat
    center/cover;
}
.bg_5 {
  background: url(../../img/brand/life/brand-life-img-05_2x.jpg) no-repeat
    center/cover;
}
.bg_6 {
  background: url(../../img/brand/life/brand-life-img-06_2x.jpg) no-repeat
    center/cover;
}
.bg_7 {
  background: url(../../img/brand/life/brand-life-img-07_2x.jpg) no-repeat
    center/cover;
}
.keyvisual_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.keyvisual_wrap * {
  color: #fff;
}
.keyvisual_title * {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
  text-align: center;

  letter-spacing: -0.7px;
}
.keyvisual_text p {
  padding-top: 7px;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  margin-top: 3px;
  letter-spacing: -0.1px;
}
.bg_2 .keyvisual_wrap {
  align-items: flex-start;
}
.bg_3 .keyvisual_wrap {
  align-items: flex-end;
}
.bg_4 .keyvisual_wrap {
  align-items: flex-start;
}
.bg_5 .keyvisual_wrap {
  align-items: flex-end;
}
.bg_6 .keyvisual_wrap {
  align-items: flex-start;
}
.bg_7 .keyvisual_wrap {
  align-items: flex-end;
}
/* bars */
.bars {
  padding: 100px 0;
}

.bars_ul {
  width: 100%;
  overflow: hidden;
}
.bars_ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--width-);
}
.bars_ul li:nth-child(1) .bars_item {
  width: 1350px;
  min-width: 1350px;
  max-width: 1350px;
}
.bars_ul li:nth-child(2) .bars_item {
  width: 2180px;
  min-width: 2180px;
  max-width: 2180px;
}
.bars_ul li:nth-child(3) .bars_item {
  width: 1680px;
  min-width: 1680px;
  max-width: 1680px;
}
.bars_item {
  flex: 1;
  display: flex;
  gap: 20px;
  align-items: center;
}
.bars_ul li img {
  display: inline-block;
  width: 248px;
}
.bars_ul span {
  font-size: 120px;
  color: #fff;
  font-weight: 500;
  line-height: 155px;
  text-shadow: -1px -1px 0 #979797, 1px -1px 0 #979797, -1px 1px 0 #979797,
    1px 1px 0 #979797;
  word-break: break-all;
}
.bars_ul .bars_black {
  color: #333;
  letter-spacing: 0;
  position: relative;
  text-shadow: initial;
}
.bars_black:after {
  content: attr(data-black);
  position: absolute;
  top: -70px;
  left: 0;
  color: #333;
  font-size: 20px;
}
.bars_ul li:first-child,
.bars_ul li:last-child {
  animation: bars 40s infinite linear;
}

.bars_ul li:nth-child(2) {
  animation: bars 60s infinite linear reverse;
}
@keyframes bars {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(-50%, 0%);
  }
}
