.l-main-banner {
  padding: 60px 0;
  background: #f5f5f5;
}
.c-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.c-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.c-banner__item {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-banner .c-banner__item {
    width: calc(50% - 15px); /* ← ここが重要！ */
    max-width: none;
  }
}
.c-banner__item:hover img {
  transform: scale(1.03);
}

.c-text-plan04 {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .c-text-plan04 {
    font-size: 1.6rem;
  }
}
.fixed-banner {
  position: fixed;
  bottom: 110px; /* ← 必要なら top: 180px; にして左中央表示 */
  left: 0;
  z-index: 1000;
  width: 160px; /* お好みのサイズに調整 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* ← 影を追加！ */
}

.fixed-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.fixed-banner.is-show {
  display: block;
}
/* PC表示時のみ表示 */
@media screen and (max-width: 1024px) {
  .fixed-banner {
    display: none !important;
  }
}

html, body {
  overflow-x: hidden;
}

/* ボタンを縦並びにし、間隔を追加 */
.c-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px; /* ボタン間のスペース */
}

/* 資料請求ボタンを無料相談ボタンと同じ幅に */
.c-btn-01--inverted {
  background: #FFF;
  border: 2px solid #F07B29;
}

.c-btn-01--inverted .c-link-01 {
  color: #F07B29;
  background: #FFF;
  border-color: #F07B29;
}

.c-btn-01--inverted:hover {
  background: #FFE3D0;
}

/* 矢印も反転ボタンに表示する */
.c-link-01--inverted::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background: url(../img/icon_arrow05.webp) no-repeat;
  background-size: contain;
}

/* デスクトップ用に調整（任意） */
@media screen and (min-width: 1025px) {
  .c-link-01--inverted::after {
    right: 50px;
  }
  .c-link-01--inverted:hover::after {
    right: 45px;
  }
}
