.fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #def0ff;
  padding: 15px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  text-align: center;
}

.fixed-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

}

.fixed-banner img {
  height: 40px;
}

.fixed-banner p {
  font-size: 16px;
  color: #001144;
}

.banner-button {
  background-color: #e69200;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
}

.smart-banner {
  display: flex;
  background-color: #182C85;
  color: #fff;
  font-family: sans-serif;
  padding: 0;
  overflow: hidden;
}

.banner-left,
.banner-right {
  padding: 40px 30px;
  box-sizing: border-box;
}

.banner-left {
  width: 66.6%;
  background-color: #fff;
  color: #333;
}

.banner-left h2 {
  color: #182C85;
  font-size: 16px;
  margin-bottom: 12px;
}

.banner-left .h2-re {
  color: #26AFB8;
}

.banner-left .h2-dpe {
  color: #003959;
}
.banner-left .h2-ibm{
  color: #4B8511;
}

.lead-text {
  font-size: 14px;
  margin-bottom: 12px;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits li {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 12px;
}

.check {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #FFB84D;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 18px;
  margin-right: 12px;
  aspect-ratio: 1 / 1;
  /* ← 比率を固定 */
}


.banner-right {
  position: relative;
  background-color: #fff;
  width: 33.3%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px;
  box-sizing: border-box;
  padding-left: 50px;
}

.banner-right::before,
.banner-right::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #182C85;
}

.banner-right::before {
  left: 0;
  width: 10px;
  /* 太い線 */
  background-color: #182C85;
}

.banner-right::after {
  left: 15px;
  /* 太線との間隔 */
  width: 5px;
  /* 細い線 */
  background-color: #182C85;
  ;
  /* 少し薄めの青にしておしゃれ感 */
}

.banner-right-re::before {
  background-color: #26AFB8;
}

.banner-right-re::after {
  background-color: #26AFB8;
}

.banner-right-dpe::before {
  background-color: #5BCBF3;
}

.banner-right-dpe::after {
  background-color: #5BCBF3;
}

.banner-right-as::before {
  background-color: #3FB9DC;
}

.banner-right-as::after {
  background-color: #3FB9DC;
}
.banner-right-ibm::before{
  background-color: #A4CE7A;
}
.banner-right-ibm::after{
  background-color: #A4CE7A;
}

.bold {
  font-weight: bold;
}

.in-btn {
  margin-top: 15px;
}

.right-text {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
}

.logo {
  max-width: 80%;
  margin: 0 auto 20px;
}

.cta-button {
  display: inline-block;
  background-color: #F26A2C;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #e0551f;
}

.smart-banner-wrapper {
  background-color: #182C85;
  padding: 15px;
}

.smart-banner {
  background-color: #fff;
  display: flex;
  overflow: hidden;
}

.banner-img {
  width: 200px;
  margin-left: 10px;
}

.banner-text {
  align-items: center;
  margin-top: 10px;
}

.fixed-btn {
  margin-right: 40px;
}

.service-title {
  font-size: 24px;
}
.service-title-ibm{
  font-size: 20px;
}

.blue-btn {
  background-color: #5DB9FF;
}
.green-text {
  font-weight: bold;
  color: #26AFB8;
}

.fixed-banner-inner .green-text {
  font-weight: bold;
  color: #26AFB8;
}

.blue-text {
  font-weight: bold;
  color: #003959;
}

.fixed-banner .sky-text {
  font-weight: bold;
  color: #3FB9DC;
}

.fixed-banner .fix-title {
  margin-left: 20px;
  font-size: 20px;
  margin-top: 10px;
}

.fixed-banner .ibm-green-text{
    font-weight: bold;
  color: #4B8511;
  font-size: 16px;
}

@media (max-width: 768px) {
  .smart-banner {
    flex-direction: column;
  }

  .banner-left,
  .banner-right {
    width: 100%;
  }

  .banner-left {
    padding-bottom: 0;
  }

  .banner-right::before,
  .banner-right::after {
    display: none;
  }

  .fixed-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    /* SPで折り返し可能に */
  }

  .banner-img {
    order: 0;
  }

  .banner-text {
    order: 1;
  }

  .banner-button {
    order: 2;
  }


  .fixed-banner-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding-right: 20px;
  }

  .banner-img {
    order: 0;
  }

  .banner-button {
    order: 1;
    margin-left: 10px;
  }

  .banner-text {
    order: 2;
    width: 100%;
    margin-top: 10px;
  }

  .benefits {
    margin-bottom: 10px;
    /* ← ここを追加または調整 */
  }

  .right-text {
    margin-top: 0;
    /* ← ここを追加して余白を詰める */
  }

  .banner-right {
    padding: 40px 30px;
  }

}