@charset "UTF-8";

.l-section {
  padding: 100px 0;
  position: relative;
}

/*----------------------------------------------------
  l
----------------------------------------------------*/

.l-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.l-col {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.l-col--3 .l-col__item {
  width: 32%;
}

.l-col--column,
.l-col__item--column {
  display: flex;
  flex-direction: column;
}

.l-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/*----------------------------------------------------
  header
----------------------------------------------------*/
.l-header {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0);
  z-index: 999;
  letter-spacing: .05em;
  box-sizing: border-box;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.l-header-inner {
  width: 90%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/*------------------------------------
 .footer
------------------------------------*/
.l-footer {
  width: 100%;
  background: #33445E;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.l-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.l-footer a:hover {
  color: #fff;
}



@media screen and (max-width:1280px) {}

@media screen and (max-width:1024px) {
  .l-col {
    flex-wrap: wrap;
  }

  .l-col__item {
    width: 49%;
  }

  /*---header---*/
  .l-header {
    position: fixed;
    height: 60px;
  }

  .scroll.l-header {
    background: none;
  }

  .l-header-inner {
    max-width: initial;
    padding-left: 0;
  }

  /*---cta---*/
  .p-cta {
    padding: 100px 0;
  }

}

@media screen and (max-width:896px) {

  /*---cta---*/
  .p-cta .l-inner {
    width: 80%;
  }
}

@media screen and (max-width:787px) {
  .l-section {
    padding: 100px 0;
    position: relative;
  }

  /*---cta---*/
  .p-cta .l-inner {
    width: 80%;
    padding: 0;
  }
}

@media screen and (max-width:680px) {
  .l-inner {
    width: 90%;
  }

  /*---cta---*/
  .p-cta .l-inner {
    width: 85%;
  }

  .c-lead__cta .u-sp-only {
    display: block;
  }

}

@media screen and (max-width:480px) {
  .l-section {
    padding: 80px 0;
    position: relative;
  }

  /*---header---*/
  .l-header {
    height: 72px;
  }

  .l-header-inner {
    width: 92%;
  }

  /*---cta---*/
  .p-cta {
    margin-bottom: 80px;
  }

  .p-cta__img {
    margin-bottom: var(--space-s);
  }

  p.c-lead__cta {
    font-size: 1.8rem;
  }

  .p-cta__text br:nth-of-type(1) {
    display: none;
  }

  .p-cta__link {
    flex-direction: column;
  }

  .p-cta__link .c-btn {
    width: 100%;
  }

  .p-cta__link .c-btn:nth-of-type(n+2) {
    margin-top: var(--space-xs);
  }
}