/*# sourceMappingURL=add.css.map */

@charset "UTF-8";

/* ===== 外枠（青背景） ===== */
.fixed-cta-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(31, 78, 140, 0.9);
  z-index: 9999;
  padding: 10px 0;
}

/* ===== 中身（中央寄せ） ===== */
.fixed-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 10px; /* ← ボタン間の余白 */
  padding: 0 10px;
}

/* ===== ボタン ===== */
.fixed-btn {
  flex: 1;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 12px 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
}

/* テキスト */
.fixed-btn .sub {
  font-size: 12px;
  color: #FCEBA5;
}

.fixed-btn .main {
  font-size: 22px;
  font-weight: bold;
}

/* 色 */
.fixed-orange {
  background: #ff8c1a;
}

.fixed-green {
  background: #22b14c;
}

/* ===== 下に隠れないように ===== */
body {
  padding-bottom: 90px;
}

.fixed-btn {
  flex: 1;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 2px 2px;
  
  display: flex;
  flex-direction: row; /* ← ここ変更 */
  justify-content: center;
  align-items: center;
  gap: 2px; /* ← 文字の間の余白 */
}

/* デフォルト（スマホ）＝縦並び */
.fixed-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 10px;
}

/* lg以上で横並び */
@media (min-width: 992px) {
  .fixed-cta-inner {
    flex-direction: row;
  }
  .fixed-btn {
    padding: 12px 10px;
  }

}

/* デフォルト（スマホ）＝縦 */
.fixed-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



/* lg以上で横並び */
@media (min-width: 992px) {
  .fixed-btn .sub {
    font-size: 16px;
    color: #FCEBA5;
  }

  .fixed-btn .main {
    font-size: 30px;
    font-weight: bold;
  }

  .fixed-btn {
    flex-direction: row;
    gap: 10px;
  }

  .fixed-btn .sub {
    margin-bottom: 0;
  }
}

.header-nav.change-color {
    top: 0px;
    background-color: rgba(255, 255, 255, 0.5);
}


.bg-sub {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
    height: 150px;
    z-index: 0;
    background-image: url(../../assets/img/bg-sub.png);
}
@media (min-width: 782px){
  .bg-sub {
    background-size: cover;
    background-position: left top;
    height: 224px;
  }
}

@media (min-width: 992px){
  .bg-sub {
    background-size: cover;
    background-position: left top;
    height: 224px;
  }
}