/* =========================================================
   LIFE X Dealer
   SP Fixed CTA

   資料請求 / プラン確認 / 来場予約
========================================================= */


/* =========================================================
   BASE
========================================================= */

.lifex-dealer-sp-fixed-cta,
.lifex-dealer-sp-fixed-cta *,
.lifex-dealer-sp-fixed-cta *::before,
.lifex-dealer-sp-fixed-cta *::after {
  box-sizing: border-box;
}


/*
 * PCでは完全非表示
 */

.lifex-dealer-sp-fixed-cta {
  display: none;
}


/* =========================================================
   SP
========================================================= */

@media screen and (max-width: 767px) {


  /* -------------------------------------------------------
     BODY

     固定CTAの高さ分だけ余白を確保し、
     ページ最下部のコンテンツが隠れないようにする
  ------------------------------------------------------- */

  body {
    padding-bottom:
      calc(68px + env(safe-area-inset-bottom));
  }


  /* -------------------------------------------------------
     WRAPPER
  ------------------------------------------------------- */

  .lifex-dealer-sp-fixed-cta {
  position: fixed;

  right: 0;
  bottom: 0;
  left: 0;

  z-index: 9980;

  display: block;

  width: 100%;

  margin: 0;
  padding: 0 0 env(safe-area-inset-bottom);

  background: #fff;

  box-shadow:
    0 -4px 18px rgba(38, 63, 73, .12);

  opacity: 0;
  visibility: hidden;

  transform: translateY(100%);

  pointer-events: none;

  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
}


.lifex-dealer-sp-fixed-cta.is-visible {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);

  pointer-events: auto;
}


  /* -------------------------------------------------------
     INNER
  ------------------------------------------------------- */

  .lifex-dealer-sp-fixed-cta__inner {
    display: grid;

    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    width: 100%;
    height: 68px;

    margin: 0;
    padding: 0;
  }


  /* -------------------------------------------------------
     ITEM
  ------------------------------------------------------- */

  .lifex-dealer-sp-fixed-cta__item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 0;
    height: 68px;

    margin: 0;
    padding: 7px 4px 6px;

    color: #fff;

    text-align: center;
    text-decoration: none;

    -webkit-tap-highlight-color: transparent;

    transition:
      opacity .2s ease;
  }


  .lifex-dealer-sp-fixed-cta__item:hover,
  .lifex-dealer-sp-fixed-cta__item:focus,
  .lifex-dealer-sp-fixed-cta__item:active {
    color: #fff;
    text-decoration: none;
  }


  .lifex-dealer-sp-fixed-cta__item:active {
    opacity: .82;
  }




  /* -------------------------------------------------------
     COLORS
  ------------------------------------------------------- */

  /* 資料請求 */

  .lifex-dealer-sp-fixed-cta__item--request {
    background: #527B88;
  }


  /* プラン確認 */

  .lifex-dealer-sp-fixed-cta__item--plan {
    background: #416571;
  }


  /* 来場予約 */

  .lifex-dealer-sp-fixed-cta__item--visit {
    background: #ca5c62;
  }


  /* -------------------------------------------------------
     ICON
  ------------------------------------------------------- */

  .lifex-dealer-sp-fixed-cta__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 23px;

    margin: 0 0 4px;

    color: #fff;

    line-height: 1;
  }


  .lifex-dealer-sp-fixed-cta__icon i {
    display: block;

    margin: 0;
    padding: 0;

    font-size: 18px;
    line-height: 1;
  }


  /* -------------------------------------------------------
     LABEL
  ------------------------------------------------------- */

  .lifex-dealer-sp-fixed-cta__label {
    display: block;

    margin: 0;
    padding: 0;

    color: #fff;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .04em;

    white-space: nowrap;
  }

}