.floating-price-contents {
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 30px;
  width: 730px;
  padding: 0 24px 0 0;
  box-sizing: border-box;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}

@media all and (max-width: 767px) {
  .floating-price-contents {
    bottom: 15px;
    padding: 0 12px 0 0;
    width: 365px;
  }
}

.floating-price-contents__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  height: 200px;
}

@media all and (max-width: 767px) {
  .floating-price-contents__container {
    height: 100px;
  }
}

.floating-price-contents__content {
  background: #fff;
  overflow: hidden;
  border-radius: 100px;
  border: 6px solid #b81d23;
  height: 100%;
  padding: 0 188px 0 0;
  width: 0;
  transition: width 0.4s ease-out;
}

@media all and (max-width: 767px) {
  .floating-price-contents__content {
    border: 3px solid #b81d23;
    padding: 0 94px 0 0;
  }
}

.floating-price-contents__content img {
  transform: translate(8px, 4px);
}

@media all and (max-width: 767px) {
  .floating-price-contents__content img {
    transform: translate(6px, 0px);
    width: 245px;
    height: auto;
  } 
}

.floating-price-contents__trigger {
  position: absolute;
  top: 0;
  right: 0;
}

.floating-price-contents__trigger .trigger {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}

.floating-price-contents__trigger .trigger img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.floating-price-contents__trigger .trigger img:nth-child(2) {
  opacity: 0;
}

@media all and (max-width: 767px) {
  .floating-price-contents__trigger .trigger {
    width: 100px;
    height: 100px;
  }
}

.floating-price-contents__trigger .trigger__main {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (max-width: 767px) {
  .floating-price-contents__trigger .trigger__main {
    height: 70px;
  }
}

.floating-price-contents__trigger .trigger__main .text {
  font-size: 20px;
  line-height: 1.55;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

@media all and (max-width: 767px) {
  .floating-price-contents__trigger .trigger__main .text {
    font-size: 11px;
  }
}

.floating-price-contents__trigger .trigger__main .text span {
  font-size: 14px;
}

@media all and (max-width: 767px) {
  .floating-price-contents__trigger .trigger__main .text span {
    font-size: 7px;
  }
}

.floating-price-contents__trigger .trigger__note {
  height: calc(100% - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

@media all and (max-width: 767px) {
  .floating-price-contents__trigger .trigger__note {
    height: calc(100% - 70px);
  }
}

.floating-price-contents__trigger .trigger__note .text {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 0;
  font-weight: 600;
  transform: translateY(-4px);
}

@media all and (max-width: 767px) {
  .floating-price-contents__trigger .trigger__note .text {
    font-size: 7.5px;
    transform: translateY(-2px);
  }
}

.floating-price-contents__trigger .trigger__note .text--active {
  display: none;
}

.floating-price-contents.is-active .floating-price-contents__content {
  width: 100%;
}

.floating-price-contents.is-active .floating-price-contents__trigger .trigger .trigger__note .text--default {
  display: none;
}

.floating-price-contents.is-active .floating-price-contents__trigger .trigger .trigger__note .text--active {
  display: block;
}

.floating-price-contents.is-hide {
  opacity: 0;
  visibility: hidden;
}

.floating-price-contents.is-active .floating-price-contents__trigger .trigger img:nth-child(1) {
  opacity: 0;
}

.floating-price-contents.is-active .floating-price-contents__trigger .trigger img:nth-child(2) {
  opacity: 1;
}