@charset "UTF-8";

/**
 * 平方根で計算されたCSS変数をセットします。
 */

.p-container {
  position: relative;
}

.p-container__illust-1 {
  position: absolute;
  z-index: 1;
  width: 1.25rem;
  right: -0.25rem;
  bottom: -0.45rem;
  pointer-events: none;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.p-container__illust-1.is-entry {
  -webkit-animation: scale-to-normal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  animation: scale-to-normal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.p-container__illust-2 {
  position: absolute;
  z-index: 1;
  width: 2.25rem;
  right: 0rem;
  bottom: -1.45rem;
  pointer-events: none;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.p-container__illust-2.is-entry {
  -webkit-animation: scale-to-normal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  animation: scale-to-normal 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@media screen and (max-width: 767px) {
  .p-container__illust-1 {
    width: 0.8rem;
    right: 0;
    bottom: -0.9rem;
  }

  .p-container__illust-2 {
    width: 1.51rem;
    right: 0;
  }
}