@charset 'utf-8';
/* 下部固定CTA 共通スタイル */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(80, 186, 202, 0.80);
  box-shadow: 0 -2px 6px rgba(0,0,0,0.15);
  font-size: 1.4rem;
}

.fixed-cta-inner {
  max-width: 1100px; /* 既存レイアウト幅に合わせて調整 */
  margin: 0 auto;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
}
.fixed-cta-btn {
  flex: 0 0 auto;
  display: inline-block;
  padding: 11px;
  background: #FFF;
  color: #50baca;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  white-space: nowrap;
  font-size: 1.5rem;
  text-align: center;
  min-width: 300px;
  margin:0 auto;
}

.fixed-cta-btn:hover {
  opacity: 0.9;
}

/* スマホ用レイアウト調整 */
@media only screen and (max-width: 767px) {
  .fixed-cta-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
  }
  .fixed-cta-btn {
    text-align: center;
    /*width: 100%;*/
    font-size: 1.4rem;
    margin:0 60px 0 0;
    padding: 16px;
  }
}

.nav-top.js-nav-fixed {
  z-index: 10010;    /* CTA より大きい値にする */
}
