@charset 'UTF-8';

/**
 * Project Settings
 * ================================================================================
 * Table of Contents:
 *
 * Floating Button / Banner
 * Shop
 * ================================================================================
 */



/**
 * Floating Button / Banner
 * -------------------------------
 */

.p-flo {
  position: fixed;
  left: 50%;
  z-index: 20;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width-container);
  box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.25);
}

/* -- CTA Button -- */
.p-flo-ctabtn {
  bottom: -110px;
  padding: 1.5rem 1.2rem 2.1rem 1.2rem;
  border-top-left-radius: 1.0rem;
  border-top-right-radius: 1.0rem;
  background-color: var(--color-white);
  transition: bottom 0.2s ease-out;
}

.p-flo-ctabtn.is-active {
  bottom: 0;
}

.p-flo-ctabtn__list {
  display: flex;
  margin-top: -1.0rem;
  margin-left: -1.0rem;
}

.p-flo-ctabtn__list-item {
  padding-top: 1.0rem;
  padding-left: 1.0rem;
}


/**
 * Shop
 * -------------------------------
 */

.p-shop {
  text-align: center;
}

.p-shop__ttl {
  margin-bottom: 2.5rem;
  color: var(--color-idbrown);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.2;
}

.p-shop__img {
  position: relative;
  z-index: 1;
}

.p-shop__img::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url('/csguide/assets/common/img/shop_img_bg.svg');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  content: '';
}

.p-shop__btn {
  margin-top: 0.5rem;
}