/* ===== 固定CTAボタン（PC版・右下） ===== */

/* コンテナ - 767px以下は非表示 */
.lp-pc-cta-fixed {
  display: none;
}

/* 768px以上: タブレット・PC */
@media (min-width: 768px) {
  .lp-pc-cta-fixed {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: row;
    gap: 8px;
  }

  /* 各ボタン */
  .lp-pc-cta-btn {
    position: relative;
    width: 160px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .lp-pc-cta-btn__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .lp-pc-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* LINE */
  .lp-pc-cta-btn--line {
    background-color: #7ed957;
  }

  /* WEB */
  .lp-pc-cta-btn--web {
    background-color: #017ac6;
  }

  /* 電話 */
  .lp-pc-cta-btn--phone {
    background-color: #45adef;
  }

  /* アイコン */
  .lp-pc-cta-btn__icon {
    display: block;
    width: 28px;
    height: 24px;
    flex-shrink: 0;
  }

  .lp-pc-cta-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* テキスト */
  .lp-pc-cta-btn__text {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
  }

  /* 矢印 */
  .lp-pc-cta-btn__arrow {
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 20px;
    height: 20px;
  }

  .lp-pc-cta-arrow-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* 1024px以上: デスクトップ - 少し大きく */
@media (min-width: 1024px) {
  .lp-pc-cta-btn {
    width: 200px;
    height: 65px;
  }

  .lp-pc-cta-btn__text {
    font-size: 18px;
  }

  .lp-pc-cta-btn__icon {
    width: 32px;
    height: 28px;
  }

  .lp-pc-cta-btn__arrow {
    width: 24px;
    height: 24px;
  }
}
