@charset "utf-8";

@media screen and (min-width: 1441px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: calc(100vw / 102.4); /* base width 1024px */
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw / 37.5); /* base width 375px */
  }
}

/* ==============================
  Safari用
  ============================== */
@supports (-webkit-hyphens:none) {
  :root {
    --zoom-invert: 1;
  }
  html {
    width: 100%;
    font-size: calc((100vw / 144.0) * var(--zoom-invert));
    overflow-x: hidden;
  }
  body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: block;
  }
  @media screen and (min-width: 1441px) {
    html {
      font-size: calc((100vw / 144.0) * var(--zoom-invert));
    }
  }
  @media screen and (max-width: 1024px) {
    html {
      font-size: calc((100vw / 102.4) * var(--zoom-invert));
    }
  }
  @media screen and (max-width: 767px) {
    html {
      font-size: calc((100vw / 37.5) * var(--zoom-invert));
    }
  }
}

/* ==============================
  p-kv
  ============================== */
.p-kv {
  position: relative;
}
.p-kv .l-section__inner--top {
  max-width: 118.0rem;
}
.p-kv__image img {
  width: 100%;
}
.p-kv__contents-wrapper {
  position: absolute;
  top: 10.7rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.p-kv__subtitle {
  padding-left: 3.0rem;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 140%;
  text-shadow: 0 0.5003rem 5.5033rem rgba(16, 75, 119, 0.45);
  color: #FFF;
}
.p-kv__title {
  margin-top: 0.3rem;
  padding-left: 1.0rem;
  font-size: 8.0rem;
  font-weight: 700;
  line-height: 140%;
  text-shadow: 0 0.3rem 2.4rem rgba(11, 78, 149, 0.20);
  color: #FFF;
}
.p-kv__title-decoration {
  position: relative;
  padding: 0 2.2rem 0 1.2rem;
}
.p-kv__title-decoration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 10.4rem;
  background: rgba(23, 117, 179, 0.40);
  transform: translate(-50%, -50%) skewX(-10deg);
  z-index: -1;
}
.p-kv__title-spacing--01 {
  letter-spacing: -1.04rem;
}
.p-kv__title-spacing--02 {
  letter-spacing: -0.96rem;
}
.p-kv__description {
  margin-top: 1.3rem;
  padding-left: 2.8rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.088rem;
  text-shadow: 0 0.2rem 0.6rem rgba(4, 38, 77, 0.30), 0 0.4rem 8.0rem rgba(3, 20, 32, 0.80);
  color: #FFF;
}
.p-kv__btn-group {
  padding-left: 0.8rem;
}
.p-kv__btn {
  position: relative;
  display: inline-block;
  width: 34.3rem;
  margin-top: 2.9rem;
  padding: 2.4rem 7.8rem 2.4rem 4.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 160%;
  border-radius: 0.2rem;
  text-align: center;
  background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
  transform: skewX(-10deg);
  color: #FFF;
}
.p-kv__btn:hover {
  background: linear-gradient(0deg, rgba(13, 50, 89, 0.70) 0%, rgba(13, 50, 89, 0.70) 100%), #1462AA;
}
.p-kv__btn > span {
  display: inline-block;
  transform: skewX(10deg);
}
.p-kv__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2rem;
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  background: url(/leverage/images/index/icon_kv_btn.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transform: translate(0, -50%) skewX(10deg);
}
@media screen and (min-width: 1441px) {
  .p-kv__contents-wrapper {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1024px) {
  .p-kv .l-section__inner--top {
    max-width: 94.0rem;
  }
  .p-kv__contents-wrapper {
    top: 10.0rem;
  }
  .p-kv__subtitle {
    padding-left: 2.2rem;
    font-size: 2.4rem;
  }
  .p-kv__title {
    margin-top: 0.5rem;
    padding-left: 0.759rem;
    font-size: 6.0rem;
  }
  .p-kv__title-decoration {
    padding: 0 2.0rem 0 1.0rem;
  }
  .p-kv__title-decoration::before {
    height: 8.4rem;
  }
  .p-kv__title-spacing--01 {
    letter-spacing: -0.78rem;
  }
  .p-kv__title-spacing--02 {
    display: inline-block;
    margin-top: 1.6rem;
    letter-spacing: -0.72rem;
  }
  .p-kv__description {
    margin-top: 1.728rem;
    padding-left: 1.7rem;
    font-size: 1.8rem;
  }
  .p-kv__btn-group {
    padding-left: 0.741rem;
  }
  .p-kv__btn {
    margin-top: 2.0rem;
  }
}
@media screen and (max-width: 767px) {
  .p-kv .l-section__inner--top {
    max-width: 34.3rem;
  }
  .p-kv__contents-wrapper {
    top: 6.9rem;
  }
  .p-kv__subtitle {
    padding-left: 1.3rem;
    font-size: 1.4rem;
  }
  .p-kv__title {
    margin-top: 0;
    padding-left: 0;
    font-size: 3.6rem;
  }
  .p-kv__title-decoration {
    position: relative;
    padding: 0 2.2rem 0 1.2rem;
  }
  .p-kv__title-decoration::before {
    height: 5.2rem;
  }
  .p-kv__title-spacing--01 {
    letter-spacing: -0.468rem;
  }
  .p-kv__title-spacing--02 {
    margin-top: 0.4rem;
    letter-spacing: -0.468rem;
  }
  .p-kv__title-spacing--03 {
    margin-top: 0.4rem;
    letter-spacing: -0.468rem;
  }
  .p-kv__description {
    margin-top: 14.1rem;
    padding-left: 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.064rem;
    text-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.25), 0 0.4954rem 5.0rem rgba(6, 75, 153, 0.70);
  }
  .p-kv__btn-group {
    padding-left: 0;
    text-align: center;
  }
  .p-kv__btn {
    width: 32.0rem;
    margin-top: 1.2rem;
    padding: 2.4rem 7.4rem 2.4rem 4.0rem;
    font-size: 2.109rem;
    background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
    box-shadow: 0 0.2rem 1.0rem 0 rgba(4, 24, 35, 0.16);
    transform: skewX(-10deg);
  }
  .p-kv__btn::after {
    right: 3.4rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}

/* ==============================
  p-feature
  ============================== */
.p-feature {
  padding: 8.0rem 0 12.0rem;
}
.p-feature__item {
  position: relative;
}
.p-feature__image-wrapper {
  position: relative;
}
.p-feature__item--01 .p-feature__image-wrapper {
  padding-top: 6.0rem;
}
.p-feature__item--01 .p-feature__image-add {
  position: absolute;
  top: 0;
  right: 30.4rem;
}
.p-feature__item--01 .p-feature__image-add img {
  width: 61.6rem;
}
.p-feature__item--01 .p-feature__image img {
  width: 84.0rem;
}
.p-feature__item--02 .p-feature__image img {
  width: 84.0rem;
}
.p-feature__item--03 .p-feature__image img {
  width: 84.0rem;
}
.p-feature__item:nth-child(even) .p-feature__image img {
  margin-left: auto;
}
.p-feature__contents-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-feature__contents {
  max-width: 39.0rem;
}
.p-feature__item:nth-child(even) .p-feature__contents {
  margin: 0;
}
.p-feature__item:nth-child(odd) .p-feature__contents {
  margin: 0 0 0 auto;
}
.p-feature__title-group {
  display: flex;
  gap: 3.1rem;
}
.p-feature__number {
  position: relative;
  width: 6.3rem;
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 140%;
  background: linear-gradient(144deg, #35A7DB 38.81%, #1056A0 94.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-feature__number::after {
  content: "";
  position: absolute;
  top: 1.8rem;
  right: -0.9rem;
  width: 0.2rem;
  height: 13.6rem;
  background: linear-gradient(180deg, #35A7DB -9.73%, #1056A0 50%);
  transform: rotate(10deg);
}
.p-feature__title {
  margin-top: 3.5rem;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 130%;
  opacity: 0.9;
  background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-feature__description {
  margin-top: 2.0rem;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.08rem;
  color: #393939;
}
.p-feature__description > sup {
  font-size: 1.0rem;
}
.p-feature__notes {
  width: fit-content;
  margin: 0.8rem 0 0;
  padding-left: 1.6rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.048rem;
  color: #4D4D4D;
}
.p-feature__notes > li {
  position: relative;
}
.p-feature__notes > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: -1.6rem;
}
.p-feature__btn-group {
  width: max-content;
  margin: 2.4rem 0 0 0;
}
.p-feature__btn {
  position: relative;
  display: block;
  width: 100%;
  min-width: 30.0rem;
  margin-top: 1.6rem;
  padding: 1.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.056rem;
  text-align: center;
  border: 0.1rem solid #1462AA;
  border-radius: 0.2rem;
  background: #FFF;
  box-shadow: 0 0.2rem 0.5rem 0 rgba(104, 106, 108, 0.16);
  color: #1462AA;
}
.p-feature__btn--adjust {
  padding: 1.6rem 4.4rem 1.6rem 1.6rem;
}
.p-feature__btn:hover {
  border: 0.1rem solid rgba(0, 0, 0, 0);
  background: #1462AA;
  color: #FFF;
}
.p-feature__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  width: 2.4rem;
  height: 2.4rem;
  background: url(/leverage/images/index/icon_feature_btn_01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transform: translate(0, -50%);
}
.p-feature__btn:hover::after {
  background: url(/leverage/images/index/icon_feature_btn_02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.p-feature__btn:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1441px) {
  .p-feature__item {
    max-width: 144.0rem;
    margin-inline: auto;
  }
  .p-feature__item--01 .p-feature__image-wrapper {
    padding-bottom: 7.478rem;
  }
  .p-feature__item--01 .p-feature__image::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -41.7rem;
    width: 61.47rem;
    height: 24.0rem;
    opacity: 0.3;
    background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
    transform: skewX(-10deg);
    z-index: -1;
  }
  .p-feature__item--02 .p-feature__image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -48.2rem;
    width: 61.47rem;
    height: 24.0rem;
    opacity: 0.3;
    background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
    transform: skewX(-10deg);
    z-index: -1;
  }
}
@media screen and (min-width: 1025px) {
  .p-feature__item--01 .p-feature__contents-wrapper {
    max-width: 100%;
    left: 16.0rem;
    transform: translate(0, -50%);
  }
  .p-feature__item--02 {
    margin-top: 4.0rem;
  }
  .p-feature__item--02 .p-feature__contents-wrapper {
    max-width: 100%;
    left: auto;
    right: 16.0rem;
    transform: translate(0, -50%);
  }
  .p-feature__item--03 {
    margin-top: 1.6rem;
  }
  .p-feature__item--03 .p-feature__contents-wrapper {
    margin-top: 5.4rem;
    max-width: 100%;
    left: 16.0rem;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 1024px) {
  .p-feature {
    padding: 6.0rem 0 8.0rem;
  }
  .p-feature .l-section__inner--top {
    max-width: 94.4rem;
  }
  .p-feature__item--02 {
    margin-top: 3.2rem;
  }
  .p-feature__item--03 {
    margin-top: 2.4rem;
  }
  .p-feature__item--01 .p-feature__image-wrapper {
    padding-top: 5.3rem;
  }
  .p-feature__item--01 .p-feature__image-add {
    right: 13.4rem;
  }
  .p-feature__item--01 .p-feature__image-add img {
    width: 47.7rem;
  }
  .p-feature__item--01 .p-feature__image img {
    width: 53.3rem;
  }
  .p-feature__item--02 .p-feature__image img {
    width: 56.7rem;
  }
  .p-feature__item--03 .p-feature__image img {
    width: 58.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding: 9.9rem 0 4.9rem;
  }
  .p-feature .l-section__inner--top {
    max-width: 34.2rem;
  }
  .p-feature__section-title {
    font-size: 2.8rem;
    letter-spacing: 0.112rem;
  }
  .p-feature__image-wrapper {
    position: relative;
  }
  .p-feature__item--01 .p-feature__image-wrapper {
    position: absolute;
    top: 14.6rem;
    right: 0;
    padding-top: 0;
  }
  .p-feature__item--02 .p-feature__image-wrapper {
    position: absolute;
    top: 11.7rem;
    left: 0;
    padding-top: 0;
  }
  .p-feature__item--03 .p-feature__image-wrapper {
    position: absolute;
    top: 10.4rem;
    right: 0;
    padding-top: 0;
  }
  .p-feature__item--01 .p-feature__image-add {
    position: absolute;
    top: -3.6rem;
    right: 2.9rem;
  }
  .p-feature__item--01 .p-feature__image-add img {
    width: 30.0rem;
  }
  .p-feature__item--01 .p-feature__image img {
    width: 32.9rem;
  }
  .p-feature__item--02 .p-feature__image img {
    width: 32.9rem;
  }
  .p-feature__item--03 .p-feature__image img {
    width: 32.9rem;
  }
  .p-feature__item:nth-child(even) .p-feature__image img {
    margin-left: auto;
  }
  .p-feature__contents-wrapper {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
  .p-feature__contents {
    max-width: 100%;
  }
  .p-feature__item:nth-child(even) .p-feature__contents {
    margin: 0;
  }
  .p-feature__item:nth-child(odd) .p-feature__contents {
    margin: 0;
  }
  .p-feature__number {
    width: 4.5rem;
    font-size: 4.0rem;
  }
  .p-feature__number::after {
    top: 1.6rem;
    right: -0.2rem;
    width: 0.2rem;
    height: 9.0rem;
  }
  .p-feature__title {
    margin-top: 2.5rem;
    font-size: 3.2rem;
  }
  .p-feature__title-group {
    gap: 1.8rem;
  }
  .p-feature__item--02 .p-feature__title-group {
    display: flex;
    justify-content: right;
    margin-right: 2.1rem;
  }
  .p-feature__description {
    font-size: 1.8rem;
    letter-spacing: 0.072rem;
  }
  .p-feature__item--01 .p-feature__description {
    margin-top: 27.7rem;
  }
  .p-feature__item--02 .p-feature__description {
    margin-top: 27.7rem;
  }
  .p-feature__item--03 .p-feature__description {
    margin-top: 24.0rem;
  }
  .p-feature__btn-group {
    width: max-content;
  }
  .p-feature__item--01 .p-feature__btn-group {
    margin: 2.0rem auto 0;
  }
  .p-feature__item--02 .p-feature__btn-group {
    margin: 2.0rem auto 0;
  }
  .p-feature__item--03 .p-feature__btn-group {
    margin: 2.0rem auto 0;
  }
  .p-feature__btn {
    min-width: 28.3rem;
    margin-top: 1.6rem;
    margin-inline: 0 auto;
    padding: 1.2rem 1.6rem;
  }
  .p-feature__btn--adjust {
    padding: 1.2rem 4.6rem 1.2rem 1.6rem;
  }
  .p-feature__btn::after {
    right: 1.6rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}

/* ==============================
  p-service
  ============================== */
.p-service {
  position: relative;
  margin: 7.6rem 0 6.6rem;
  padding: 6.0rem 0 9.5rem;
  background: #EFF1F5;
}
.p-service::before {
  content: "";
  position: absolute;
  top: -7.6rem;
  left: -40.7rem;
  width: 65.6rem;
  height: 24.0rem;
  opacity: 0.3;
  background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
  transform: skewX(-10deg);
  z-index: -1;
}
.p-service::after {
  content: "";
  position: absolute;
  bottom: -6.6rem;
  right: -43.7rem;
  width: 65.6rem;
  height: 24.0rem;
  opacity: 0.3;
  background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
  transform: skewX(-10deg);
}
.p-service__item {
  position: relative;
  margin-top: 4.0rem;
}
.p-service__section-title {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 130%;
  opacity: 0.9;
  color: #111;
}
.p-service__section-description {
  margin-top: 0.8rem;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.08rem;
  color: #393939;
}
.p-service__image img {
  width: 84.0rem;
}
.p-service__contents-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-service__contents {
  margin-left: 73.0rem;
}
.p-service__name-group {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-top: 4.0rem;
}
.p-service__contents > .p-service__name-group:first-child {
  margin-top: 0;
}
.p-service__name {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.112rem;
  color: #111;
}
.p-service__name-description {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.056rem;
  color: #111;
}
.p-service__description {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.064rem;
  color: #393939;
}
.p-service__btn-group {
  width: max-content;
  margin: 1.6rem 0 0 0;
}
.p-service__btn {
  position: relative;
  display: block;
  width: 100%;
  min-width: 30.0rem;
  margin-top: 1.6rem;
  padding: 1.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.056rem;
  text-align: center;
  border: 0.1rem solid #1462AA;
  border-radius: 0.2rem;
  background: #FFF;
  box-shadow: 0 0.2rem 0.5rem 0 rgba(104, 106, 108, 0.16);
  color: #1462AA;
}
.p-service__btn:hover {
  border: 0.1rem solid rgba(0, 0, 0, 0);
  background: #1462AA;
  color: #FFF;
}
.p-service__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  width: 2.4rem;
  height: 2.4rem;
  background: url(/leverage/images/index/icon_service_btn_01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transform: translate(0, -50%);
}
.p-service__btn:hover::after {
  background: url(/leverage/images/index/icon_service_btn_02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.p-service__btn:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1441px) {
  .p-service {
    margin: 5.3rem 0 6.635rem;
  }
  .p-service::before {
    top: -5.3rem;
    left: calc(50% - 56.0rem - 61.47rem + 9.9rem);
    width: 61.47rem;
  }
  .p-service::after {
    bottom: -6.635rem;
    right: calc(50% - 56.0rem - 61.47rem - 2.1rem);
    width: 61.47rem;
  }
  .p-service__item {
    max-width: 144.0rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1024px) {
  .p-service {
    margin: 7.6rem 0 12.6rem;
    padding: 6.0rem 0 7.6rem;
  }
  .p-service::before {
    top: -7.6rem;
    left: -50.5rem;
    width: 65.6rem;
    height: 24.0rem;
  }
  .p-service::after {
    bottom: -10.6rem;
    right: -53.868rem;
    width: 65.6rem;
    height: 24.0rem;
  }
  .p-service__image img {
    margin-left: -13rem;
    width: 65.5rem;
    height: 34.9rem;
  }
  .p-service__contents {
    margin-left: 51.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service {
    margin: 4.3rem 0 5.8rem;
    padding: 4.0rem 0 6.0rem;
  }
  .p-service::before {
    top: -4.3rem;
    left: -19.884rem;
    width: 32.8rem;
    height: 12.0rem;
  }
  .p-service::after {
    bottom: -5.8rem;
    right: -23.0rem;
    width: 32.8rem;
    height: 12.0rem;
    z-index: -1;
  }
  .p-service__inner {
    max-width: 34.2rem;
  }
  .p-service__item {
    margin-top: 1.2rem;
  }
  .p-service__section-title {
    font-size: 3.6rem;
  }
  .p-service__section-description {
    margin-top: 2.0rem;
    font-size: 1.8rem;
    letter-spacing: 0.072rem;
  }
  .p-service__image img {
    margin-left: 0;
    width: 32.8rem;
    height: auto;
  }
  .p-service__contents-wrapper {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    max-width: 34.2rem;
  }
  .p-service__contents {
    margin-top: 3.0rem;
    margin-left: 0;
  }
  .p-service__name-group {
    display: block;
    margin-top: 4.0rem;
  }
  .p-service__name-description {
    margin-top: 0.4rem;
  }
  .p-service__description {
    font-size: 1.4rem;
    letter-spacing: 0.056rem;
  }
  .p-service__btn-group {
    margin: 1.6rem auto 0;
  }
  .p-service__btn {
    min-width: 28.3rem;
    margin-top: 1.6rem;
    margin-inline: 0 auto;
    padding: 1.2rem 1.6rem;
  }
  .p-service__btn::after {
    right: 1.6rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}