/* ============================================================
   【追加】追従フッターバー
   2026.03.13　added by AT
   ============================================================ */

.fixed-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.05);
  padding: 16px 0;
  gap: 8px;
}

.fixed-cta-bar .fixed-cta-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 200px;
  height: 46px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  outline: none;
  transition: opacity 0.2s ease;
}

.fixed-cta-bar .fixed-cta-btn--line {
  color: #06C655;
  border: 1px solid #06C655;
}

.fixed-cta-bar .fixed-cta-btn--mail {
  color: #CE222C;
  border: 1px solid #CE222C;
}

.fixed-cta-bar .fixed-cta-btn--doc {
  color: #12337A;
  border: 1px solid #12337A;
}

.fixed-cta-bar .fixed-cta-btn:hover {
  background: #fff !important;
  opacity: 0.7;
}

.fixed-cta-bar .fixed-cta-btn--line:hover {
  color: #fff !important;
}

.fixed-cta-bar .fixed-cta-btn--mail:hover {
  color: #fff !important;
}

.fixed-cta-bar .fixed-cta-btn--doc:hover {
  color: #fff !important;
}

.fixed-cta-bar .fixed-cta-btn__icon {
  width: 21px;
  height: 20px;
}

.fixed-cta-bar .fixed-cta-btn__sp-text { display: none; }
.fixed-cta-bar .fixed-cta-btn__pc-text { display: inline; }

/* body余白 */
body {
  padding-bottom: 78px;
}

/* ページトップボタン */
.goTop {
  bottom: 94px;
}

/* =====================
   TB/SP
   ===================== */
@media screen and (max-width: 575px) {
  .fixed-cta-bar {
    padding: 0;
    gap: 0;
    border-top: 1px solid #E1E1E1;
  }

  .fixed-cta-bar .fixed-cta-btn {
    flex: 1;
    width: auto;
    height: 40px;
    border-radius: 0;
    border: none;
    border-right: 1px solid #E1E1E1;
    font-size: 14px;
    padding: 0;
  }

  .fixed-cta-bar .fixed-cta-btn:last-child {
    border-right: none;
  }

  .fixed-cta-bar .fixed-cta-btn__icon {
    width: 17px;
    height: 16px;
  }

  .fixed-cta-bar .fixed-cta-btn__sp-text { display: inline; }
  .fixed-cta-bar .fixed-cta-btn__pc-text { display: none; }

  body {
    padding-bottom: 40px;
  }

  .goTop {
    bottom: 56px;
  }
}