:root {
  --cnt-convo-height: 320px;
}
@media (min-width: 390px) {
  :root {
    --cnt-convo-height: 480px;
  }
}
@media (min-width: 699px) and (min-height: 800px) {
  :root {
    --cnt-convo-height: 600px;
  }
}
@media (max-width: 390px) and (min-height: 560px) {
  :root {
    --cnt-convo-height: 320px;
  }
}
@media (max-width: 320px) and (max-height: 560px) {
  :root {
    --cnt-convo-height: 300px;
  }
}

body {
  background: #f4f2e9;
}

.v-s-ji-convo {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.v-s-ji-convo__timeline {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 699px) and (min-height: 800px) {
  .v-s-ji-convo__timeline {
    margin-top: 30px;
  }
}
@media (max-width: 490px) and (min-height: 700px) {
  .v-s-ji-convo__timeline {
    margin-top: 50px;
  }
}
@media (max-width: 390px) and (min-height: 560px) {
  .v-s-ji-convo__timeline {
    margin-top: 80px;
  }
}
@media (max-width: 320px) and (max-height: 560px) {
  .v-s-ji-convo__timeline {
    margin-top: 100px;
  }
}
.v-s-ji-convo__timeline-days {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 10px;
}
.v-s-ji-convo__timeline-days > span {
  display: block;
  font: 18px/1 "Basier Square Semibold";
  text-transform: uppercase;
  color: #000;
}
.v-s-ji-convo__timeline-days > span > span {
  margin-top: 6px;
  display: block;
  font: 14px/1 "Basier Square Regular";
  color: #000;
}
@media (max-width: 390px) {
  .v-s-ji-convo__timeline-days > span {
    font-size: 14px;
  }
  .v-s-ji-convo__timeline-days > span > span {
    font-size: 12px;
  }
}
.v-s-ji-convo__timeline-days > span:nth-child(1) {
  text-align: left;
}
.v-s-ji-convo__timeline-days > span:nth-child(2) {
  text-align: center;
}
.v-s-ji-convo__timeline-days > span:nth-child(3) {
  text-align: right;
}
.v-s-ji-convo__timeline-bar {
  position: relative;
  width: 100%;
  height: 8px;
  margin-top: 4px;
  background: #D9D9D9;
  overflow: hidden;
}
.v-s-ji-convo__timeline-bar-active {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #E30613;
  z-index: 1;
  transition: width 0.3s ease;
}

.v-s-ji-convo__cnt {
  position: relative;
  width: 100%;
  height: var(--cnt-convo-height);
  margin-top: 30px;
  box-sizing: content-box;
  overflow: hidden;
}
@media (max-width: 699px) {
  .v-s-ji-convo__cnt {
    width: calc(100% + 50px);
  }
}
.v-s-ji-convo__cnt:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(244, 242, 233) 100%);
  z-index: 5;
}
@media (min-width: 699px) {
  .v-s-ji-convo__cnt:before {
    height: 100px;
  }
}
.v-s-ji-convo__cnt:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(244, 242, 233) 100%);
  z-index: 1;
}
@media (min-width: 699px) {
  .v-s-ji-convo__cnt:after {
    height: 20px;
  }
}

.v-s-ji-convo__pjs {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 699px) {
  .v-s-ji-convo__pjs {
    gap: 100px;
  }
}

.v-s-ji-convo__pj {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.v-s-ji-convo__pj img {
  height: calc(var(--cnt-convo-height));
  width: auto;
  margin: 0 auto;
  opacity: 0.4;
}
@media (min-width: 699px) {
  .v-s-ji-convo__pj img {
    height: calc(var(--cnt-convo-height) - 10%);
  }
}

.v-s-ji-convo__pj--1 .name {
  position: absolute;
  bottom: 50px;
  left: unset;
  margin-left: 0px;
  z-index: 1;
  font: 20px / 1 'Basier Square Semibold';
  background: #FFF;
  padding: 8px 16px;
  border-radius: 8px;
  border-left: 5px solid black;
  border-bottom: 3px solid black;
}
.v-s-ji-convo__pj--2 .name {
  position: absolute;
  bottom: 50px;
  right: unset;
  margin-right: 0px;
  z-index: 1;
  font: 20px / 1 'Basier Square Semibold';
  background: #FFF;
  padding: 8px 16px;
  border-radius: 8px;
  border-right: 5px solid black;
  border-bottom: 3px solid black;
}

@media (max-width: 699px) {
  .v-s-ji-convo__pj--1 .name {
    margin-left: 50px;
  }

  .v-s-ji-convo__pj--2 .name {
    margin-right: 50px;
  }
}
.v-s-ji-convo__chat {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 4;
}
@media (min-width: 699px) {
  .v-s-ji-convo__chat {
    padding: 0 25px;
  }
}
.v-s-ji-convo__chat-i {
  position: relative;
  max-width: 220px;
  width: 100%;
  padding: 16px 12px;
  background: #000;
  border-radius: 10px;
  color: #FFF;
  font: 18px/21px "Basier Square Regular";
}
@media (max-width: 390px) and (max-height: 560px) {
  .v-s-ji-convo__chat-i {
    max-width: 160px;
  }
}
@media (max-width: 420px) {
  .v-s-ji-convo__chat-i { 
    max-width: 160px;
    font-size: 16px;
    line-height: 18px;
    padding: 12px;
  }
}
.v-s-ji-convo__chat-i:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 420px) {
  .v-s-ji-convo__chat-i:not(:last-child) {
    margin-bottom: 20px;
  }
}
.v-s-ji-convo__chat-i.left {
  right: 50px;
}
@media (min-width: 699px) {
  .v-s-ji-convo__chat-i.left {
    right: 40%;
  }
}
@media (max-width: 390px) and (max-height: 560px) {
  .v-s-ji-convo__chat-i.left {
    right: 30px;
  }
}
.v-s-ji-convo__chat-i.left:after {
  content: "";
  position: absolute;
  top: 10px;
  left: -16px;
  width: 17px;
  height: 21px;
  border-bottom-left-radius: 100%;
  background: #000;
}
.v-s-ji-convo__chat-i.right {
  left: 50px;
}
@media (min-width: 699px) {
  .v-s-ji-convo__chat-i.right {
    left: 40%;
  }
}
@media (max-width: 390px) and (max-height: 560px) {
  .v-s-ji-convo__chat-i.right {
    left: 30px;
  }
}
.v-s-ji-convo__chat-i.right:after {
  content: "";
  position: absolute;
  top: 10px;
  right: -16px;
  width: 17px;
  height: 21px;
  border-bottom-right-radius: 100%;
  background: #000;
}
.v-s-ji-convo__chat-i.center {
  max-width: 340px;
  padding: 16px;
  background: #FFF;
  color: #000;
  width: 260px;
}
@media (min-width: 699px) {
  .v-s-ji-convo__chat-i.center {
    padding: 30px;
    width: auto;
  }
}
.v-s-ji-convo__chat-i i {
  font-style: italic;
}/*# sourceMappingURL=styles-convo.css.map */

@media (min-width: 699px) {
  div[class="voc-advertising"] {
      height: 540px;
  }
}