@charset "utf-8";

.kv-stage {
  position: relative;
  width: 100%;
  max-width: 751px;
  aspect-ratio: 1 / 1;
  margin: 20px auto 0;
  overflow: hidden;
  background: #e8d5cf;
}

.kv-stage__main-title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 10.3862%;
  margin: 0;
}

.kv-stage__bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 10.3862%;
  height: 100%;
  background: #000;
}

.kv-stage__sub {
  position: absolute;
  bottom: 0;
  left: 22%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  line-height: 0;
}

.kv-stage__triangle {
  position: absolute;
  width: 9.4541%;
  height: auto;
}

.kv-stage__subtitle {
  width: 32.8895%;
  height: auto;
  margin: 0;
}

.kv-stage__grid {
  position: absolute;
  top: 2.6%;
  right: 5%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 31.723%);
  gap: 2.4155%;
  width: 82.6901%;
}

.kv-stage__box {
  width: 100%;
  height: auto;
  aspect-ratio: 197 / 212;
}

.kv-stage img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .kv-stage {
    width: 100%;
    margin: 5px auto 0;
  }
}



