/* ヘッダー */
.header {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #446648;
}

.header__left {
  position: relative;
  z-index: 8;
  background-color: #DCA680;
}

.header__right{
  position: relative;
  z-index: 10;
  margin-left: -9%;
}

/* メイン */
.main {
  padding-bottom: 20%;
}

.fv {
  margin-top: -1px;
}

/* セクション */
.solution {
  margin-top: -2px;
}

.cta__container {
  position: relative;
  z-index: 10;
}

.cta__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
}

.cta-btn {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  padding-block: 20px;
  background-color: #fff;
}
.cta-btn-text {
  display: flex;
  justify-content: center;
  width: 30%;
  margin-inline: auto;
  margin-bottom: 20px;
}
.cta-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  margin-inline: auto;
}


/* --------------------------------
レスポンシブ
-------------------------------- */
@media (max-width: 750px){

  .main{
    padding-bottom: 30%;
  }

  .solution {
    margin-top: 0;
  }

  .cta__btn {
    top: 55%;
  }

  .cta__btn {
    width: 83%;
  }


  /* 追従CTA */
  .cta-btn {
    padding-block: 10px;
  }
  .cta-btn-text {
    width: 72%;
    margin-bottom: 5px;
  }
  .cta-btn-wrapper {
    width: 100%;
  }
}