@charset "utf-8";

/* ==============================
  Base
  ============================== */
  
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}
html {
  position: relative;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto !important;
  font-size: calc(100vw / 144); /* base width 1440px */
  overflow-x: hidden;
}
body {
  font-family: 'Barlow', 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style-type: none;
}
:target {
  scroll-margin-top: 100vh;
}
@media screen and (min-width: 768px) {
  .only-pc {
    display: inline-block !important;
  }
  .only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
  .only-sp {
    display: inline-block !important;
  }
}

/* ==============================
  Font
  ============================== */
/* Zen Kaku Gothic New */
@font-face { font-family: 'Zen Kaku Gothic New'; src: url('/leverage/fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zen Kaku Gothic New'; src: url('/leverage/fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zen Kaku Gothic New'; src: url('/leverage/fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zen Kaku Gothic New'; src: url('/leverage/fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zen Kaku Gothic New'; src: url('/leverage/fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }

/* Barlow */
@font-face { font-family: 'Barlow'; src: url('/leverage/fonts/Barlow/Barlow-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow'; src: url('/leverage/fonts/Barlow/Barlow-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow'; src: url('/leverage/fonts/Barlow/Barlow-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Barlow'; src: url('/leverage/fonts/Barlow/Barlow-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }

.font-zen {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.font-barlow {
  font-family: 'Barlow', sans-serif;
}

/* ==============================
  Text
  ============================== */
.c-text {
  font-style: normal;
}
/* --- Headings --- */
.c-text--h1 { font-size: 4.8rem; font-weight: 700; line-height: 1.3; }
.c-text--h2 { font-size: 3.6rem; font-weight: 700; line-height: 1.3; letter-spacing: 0.144rem; }
.c-text--h3 { font-size: 2.8rem; font-weight: 700; line-height: 1.3; letter-spacing: 0.112rem; }
.c-text--h4 { font-size: 2.4rem; font-weight: 700; line-height: 1.3; }
.c-text--h5 { font-size: 1.8rem; font-weight: 700; line-height: 1.3; letter-spacing: 0.072rem; }
/* --- Body & Others --- */
.c-text--l         { font-size: 2.0rem; font-weight: 500; line-height: 1.6; letter-spacing: 0.08rem; }
.c-text--l-regular { font-size: 2.0rem; font-weight: 400; line-height: 1.6; letter-spacing: 0.08rem; }
.c-text--m         { font-size: 1.6rem; font-weight: 500; line-height: 1.6; letter-spacing: 0.064rem; }
.c-text--m-regular { font-size: 1.6rem; font-weight: 400; line-height: 1.6; letter-spacing: 0.064rem; }
.c-text--s         { font-size: 1.4rem; font-weight: 500; line-height: 1.6; letter-spacing: 0.056rem; }
.c-text--s-regular { font-size: 1.4rem; font-weight: 400; line-height: 1.6; letter-spacing: 0.056rem; }
.c-text--note      { font-size: 1.2rem; font-weight: 400; line-height: 1.6; letter-spacing: 0.048rem; }

/* ==============================
  Margin
  ============================== */
.mt-0 {
  margin-top: 0 !important;
}

/* ==============================
  Padding
  ============================== */
.pt-0 {
  padding-top: 0 !important;
}

/* ==============================
  Section
  ============================== */
.l-section {
  position: relative;
}
.l-section__inner {
  position: relative;
  width: 100%;
  max-width: 102.4rem;
  margin-inline: auto;
}
.l-section__inner--top {
  position: relative;
  width: 100%;
  max-width: 112.0rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .l-section__inner--top {
    max-width: 94.4rem;
  }
}

/* ==============================
  Header
  ============================== */
.l-header {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.8rem;
  padding: 0 4.0rem;
}
.l-header__logo a:hover {
  opacity: 0.5;
}
.l-header__logo img {
  width: 25.0rem;
}
.menu-checkbox,
.menu-btn {
  display: none;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-list > li > a {
  position: relative;
  padding: 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  color: #FFF;
}
.nav-list > li > a::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  display: block;
  width: 0;
  border-top: 0.1rem solid #FFF;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  @media (hover: hover) {
  .nav-list > li > a::before {
      transition: width .3s cubic-bezier(0.76,0,0.24,1);
      will-change: width;
  }
  .nav-list > li > a:hover::before {
      width: 100%;
  }
}
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    height: 8.5rem
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 5.4rem;
    padding: 0.8rem 1.6rem;
  }
  .l-header__logo img {
    width: 16.0rem;
  }
  .hamburger-menu {
    width: 3.6rem;
    text-align: center;
    cursor: pointer;
  }
  .menu-btn {
    display: flex;
    height: 2.4rem;
    width: 2.4rem;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  .menu-btn span, .menu-btn span::before, .menu-btn span::after {
    content: "";
    display: block;
    height: 0.2rem;
    width: 1.8rem;
    background-color: #fff;
    position: absolute;
    transition: 0.3s;
  }
  .menu-btn span::before { bottom: 0.5rem; }
  .menu-btn span::after { top: 0.5rem; }
  .menu-checkbox:checked + .menu-btn span { background: transparent; }
  .menu-checkbox:checked + .menu-btn span::before { bottom: 0; transform: rotate(45deg); }
  .menu-checkbox:checked + .menu-btn span::after { top: 0; transform: rotate(-45deg); }
  .menu-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 5.4rem;
    padding: 3.2rem 1.6rem 2.0rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.40);
    background: rgba(13, 61, 112, 0.80);
    backdrop-filter: blur(0.5rem);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 90;
  }
  .menu-checkbox:checked ~ .menu-content {
    opacity: 1;
    visibility: visible;
    max-height: calc(100dvh - 5.4rem);
    overflow: scroll;
  }
  html:has(.menu-checkbox:checked) {
    overflow: hidden;
  }
  .l-header:has(.menu-checkbox:checked) {
    background: rgba(13, 61, 112, 0.80);
    backdrop-filter: blur(0.5rem);
  }
  .menu-text {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 160%;
    color: #fff;
  }
  .menu-text-close {
    display: none !important;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 160%;
    color: #fff;
  }
  .menu-checkbox:checked ~ .menu-text {
    display: none !important;
  }
  .menu-checkbox:checked ~ .menu-text-close {
    display: block !important;
  }
  .nav-list {
    position: relative;
    display: block;
  }
  .nav-list > li {
    display: block !important;
  }
  .nav-list > li > a {
    position: relative;
    display: block;
    width: 100%;
    padding: 2.4rem 5.4rem 2.4rem 2.8rem;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.40);
    color: #FFF;
  }
  .nav-list > li > a::before {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    display: block;
    width: 0;
    border-top: 0.1rem solid #FFF;
    opacity: 1;
  }
  .nav-list > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 2.8rem;
    height: 2.8rem;
    background: url(/leverage/images/common/icon_hamburger_menu.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    transform: translate(0, -50%);
  }
  .nav-list > li:first-child > a {
    margin-top: -2.4rem;
  }
  .nav-close {
    width: 28.7rem;
    margin: 3.2rem auto 0;
    padding: 2.0rem 1.6rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.032rem;
    border-radius: 0.2rem;
    border: 0.1rem solid #1462AA;
    background: #FFF;
    box-shadow: 0 0.2rem 0.5rem 0 rgba(104, 106, 108, 0.16);
    color: #1462AA;
  }
}

/* ==============================
  Header Lower
  ============================== */
.l-header--lower {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
  background: #FFF;
  box-shadow: 0 0.3rem 1.5rem 0 rgba(0, 0, 0, 0.06);
}
.l-header__inner--lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.8rem;
  padding: 0 0 0 4.0rem;
}
.l-header__menu--lower {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 3.2rem;
}
.l-header__logo--lower a:hover {
  opacity: 0.5;
}
.l-header__logo--lower img {
  width: 25.0rem;
}
.menu-checkbox--lower,
.menu-btn--lower {
  display: none;
}
.nav-list--lower {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.nav-list--lower > li > a {
  position: relative;
  padding: 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  color: #111;
}
.nav-list--lower > li > a::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  display: block;
  width: 0;
  border-top: 0.1rem solid #1462AA;
  opacity: 1;
}
.menu-contact--lower {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21.6rem;
  height: 100%;
  background: url(/leverage/images/common/img_header_lower_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.menu-contact--lower > a {
  position: relative;
  padding: 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.064rem;
  color: #FFF;
}
.menu-contact--lower > a::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  display: block;
  width: 0;
  border-top: 0.1rem solid #FFF;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  @media (hover: hover) {
    .nav-list--lower > li > a:hover {
      color: #1462AA;
    }
    .nav-list--lower > li > a::before,
    .menu-contact--lower > a::before {
        transition: width .3s cubic-bezier(0.76,0,0.24,1);
        will-change: width;
    }
    .nav-list--lower > li > a:hover::before,
    .menu-contact--lower > a:hover::before {
        width: 100%;
    }
  }
}
@media screen and (max-width: 1024px) {
  .l-header__inner--lower {
    height: 8.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner--lower {
    height: 5.4rem;
    padding: 0.8rem 1.6rem;
  }
  .l-header__menu--lower {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.8rem;
  }
  .l-header__logo--lower img {
    width: 16.0rem;
  }
  .hamburger-menu--lower {
    width: 3.6rem;
    text-align: center;
    cursor: pointer;
    order: 2;
  }
  .menu-btn--lower {
    display: flex;
    height: 2.4rem;
    width: 2.4rem;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  .menu-btn--lower span, .menu-btn--lower span::before, .menu-btn--lower span::after {
    content: "";
    display: block;
    height: 0.2rem;
    width: 1.8rem;
    background-color: #1462AA;
    position: absolute;
    transition: 0.3s;
  }
  .menu-btn--lower span::before { bottom: 0.5rem; }
  .menu-btn--lower span::after { top: 0.5rem; }
  .menu-checkbox--lower:checked + .menu-btn--lower span { background: transparent; }
  .menu-checkbox--lower:checked + .menu-btn--lower span::before { bottom: 0; transform: rotate(45deg); }
  .menu-checkbox--lower:checked + .menu-btn--lower span::after { top: 0; transform: rotate(-45deg); }
  .menu-content--lower {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 5.4rem;
    padding: 3.2rem 1.6rem 2.0rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.40);
    background: rgba(13, 61, 112, 0.80);
    backdrop-filter: blur(0.5rem);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 90;
  }
  .menu-checkbox--lower:checked ~ .menu-content--lower {
    opacity: 1;
    visibility: visible;
    max-height: calc(100dvh - 5.4rem);
    overflow: scroll;
  }
  html:has(.menu-checkbox--lower:checked) {
    overflow: hidden;
  }
  .l-header:has(.menu-checkbox--lower:checked) {
    background: rgba(13, 61, 112, 0.80);
    backdrop-filter: blur(0.5rem);
  }
  .menu-text--lower {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 160%;
    color: #1462AA;
  }
  .menu-text-close--lower {
    display: none !important;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 160%;
    color: #1462AA;
  }
  .menu-checkbox--lower:checked ~ .menu-text--lower {
    display: none !important;
  }
  .menu-checkbox--lower:checked ~ .menu-text-close--lower {
    display: block !important;
  }
  .nav-list--lower {
    position: relative;
    display: block;
  }
  .nav-list--lower > li {
    display: block !important;
  }
  .nav-list--lower > li > a {
    position: relative;
    display: block;
    width: 100%;
    padding: 2.4rem 5.4rem 2.4rem 2.8rem;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.40);
    color: #FFF;
  }
  .nav-list--lower > li > a::before {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    display: block;
    width: 0;
    border-top: 0.1rem solid #FFF;
    opacity: 1;
  }
  .nav-list--lower > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 2.8rem;
    height: 2.8rem;
    background: url(/leverage/images/common/icon_hamburger_menu.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    transform: translate(0, -50%);
  }
  .nav-list--lower > li:first-child > a {
    padding-top: 0;
  }
  .menu-contact--lower {
    width: 9.6rem;
    height: 3.5rem;
    border-radius: 0.2rem;
    background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
    order: 1;
  }
  .menu-contact--lower > a {
    font-size: 1.2rem;
    line-height: 160%;
    letter-spacing: 0;
  }
  .menu-contact--lower > a::before {
    content: none;
  }
  .nav-close--lower {
    width: 28.7rem;
    margin: 3.2rem auto 0;
    padding: 2.0rem 1.6rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.032rem;
    border-radius: 0.2rem;
    border: 0.1rem solid #1462AA;
    background: #FFF;
    box-shadow: 0 0.2rem 0.5rem 0 rgba(104, 106, 108, 0.16);
    color: #1462AA;
  }
}

/* ==============================
  Header Float
  ============================== */
.l-header--float {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  background: #FFF;
  box-shadow: 0 0.3rem 1.5rem 0 rgba(0, 0, 0, 0.06);
}
.l-header--float.is-show {
  opacity: 1;
  visibility: visible;
}
.l-header__inner--float {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6.8rem;
  padding: 0 0 0 4.0rem;
}
.l-header__menu--float {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 3.2rem;
}
.l-header__logo--float a:hover {
  opacity: 0.5;
}
.l-header__logo--float img {
  width: 25.0rem;
}
.menu-checkbox--float,
.menu-btn--float {
  display: none;
}
.nav-list--float {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.nav-list--float > li > a {
  position: relative;
  padding: 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  color: #111;
}
.nav-list--float > li > a::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  display: block;
  width: 0;
  border-top: 0.1rem solid #1462AA;
  opacity: 1;
}
.menu-contact--float {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21.6rem;
  height: 100%;
  background: url(/leverage/images/common/img_header_lower_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
.menu-contact--float > a {
  position: relative;
  padding: 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.064rem;
  color: #FFF;
}
.menu-contact--float > a::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  display: block;
  width: 0;
  border-top: 0.1rem solid #FFF;
  opacity: 1;
}
@media (hover: hover) {
  .nav-list--float > li > a:hover {
    color: #1462AA;
  }
  .nav-list--float > li > a::before,
  .menu-contact--float > a::before {
      transition: width .3s cubic-bezier(0.76,0,0.24,1);
      will-change: width;
  }
  .nav-list--float > li > a:hover::before,
  .menu-contact--float > a:hover::before {
      width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__inner--float {
    height: 8.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner--float {
    height: 5.4rem;
    padding: 0.8rem 1.6rem;
  }
  .l-header__menu--float {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0.8rem;
  }
  .l-header__logo--float img {
    width: 16.0rem;
  }
  .hamburger-menu--float {
    width: 3.6rem;
    text-align: center;
    cursor: pointer;
    order: 2;
  }
  .menu-btn--float {
    display: flex;
    height: 2.4rem;
    width: 2.4rem;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  .menu-btn--float span, .menu-btn--float span::before, .menu-btn--float span::after {
    content: "";
    display: block;
    height: 0.2rem;
    width: 1.8rem;
    background-color: #1462AA;
    position: absolute;
    transition: 0.3s;
  }
  .menu-btn--float span::before { bottom: 0.5rem; }
  .menu-btn--float span::after { top: 0.5rem; }
  .menu-checkbox--float:checked + .menu-btn--float span { background: transparent; }
  .menu-checkbox--float:checked + .menu-btn--float span::before { bottom: 0; transform: rotate(45deg); }
  .menu-checkbox--float:checked + .menu-btn--float span::after { top: 0; transform: rotate(-45deg); }
  .menu-content--float {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 5.4rem;
    padding: 3.2rem 1.6rem 2.0rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.40);
    background: rgba(13, 61, 112, 0.80);
    backdrop-filter: blur(0.5rem);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 90;
  }
  .menu-checkbox--float:checked ~ .menu-content--float {
    opacity: 1;
    visibility: visible;
    max-height: calc(100dvh - 5.4rem);
    overflow: scroll;
  }
  html:has(.menu-checkbox--float:checked) {
    overflow: hidden;
  }
  .l-header:has(.menu-checkbox--float:checked) {
    background: rgba(13, 61, 112, 0.80);
    backdrop-filter: blur(0.5rem);
  }
  .menu-text--float {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 160%;
    color: #1462AA;
  }
  .menu-text-close--float {
    display: none !important;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 160%;
    color: #1462AA;
  }
  .menu-checkbox--float:checked ~ .menu-text--float {
    display: none !important;
  }
  .menu-checkbox--float:checked ~ .menu-text-close--float {
    display: block !important;
  }
  .nav-list--float {
    position: relative;
    display: block;
  }
  .nav-list--float > li {
    display: block !important;
  }
  .nav-list--float > li > a {
    position: relative;
    display: block;
    width: 100%;
    padding: 2.4rem 5.4rem 2.4rem 2.8rem;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.08rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.40);
    color: #FFF;
  }
  .nav-list--float > li > a::before {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    display: block;
    width: 0;
    border-top: 0.1rem solid #FFF;
    opacity: 1;
  }
  .nav-list--float > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 2.8rem;
    height: 2.8rem;
    background: url(/leverage/images/common/icon_hamburger_menu.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    transform: translate(0, -50%);
  }
  .nav-list--float > li:first-child > a {
    padding-top: 0;
  }
  .menu-contact--float {
    width: 9.6rem;
    height: 3.5rem;
    border-radius: 0.2rem;
    background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
    order: 1;
  }
  .menu-contact--float > a {
    font-size: 1.2rem;
    line-height: 160%;
    letter-spacing: 0;
  }
  .menu-contact--float > a::before {
    content: none;
  }
  .nav-close--float {
    width: 28.7rem;
    margin: 3.2rem auto 0;
    padding: 2.0rem 1.6rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.032rem;
    border-radius: 0.2rem;
    border: 0.1rem solid #1462AA;
    background: #FFF;
    box-shadow: 0 0.2rem 0.5rem 0 rgba(104, 106, 108, 0.16);
    color: #1462AA;
  }
}

/* ==============================
  Main
  ============================== */
.main--lower {
  margin-top: 6.8rem;
}
@media screen and (max-width: 1024px) {
  .main--lower {
    margin-top: 8.5rem;
  }
}
@media screen and (max-width: 767px) {
  .main--lower {
    margin-top: 5.4rem;
  }
}

/* ==============================
  BackToTop
  ============================== */
.l-back-to-top {
  position: fixed;
  bottom: 3.0rem;
  right: 6.0rem;
  width: 7.2rem;
  height: 7.2rem;
  border: 0.1rem solid #1462AA;
  border-radius: 50%;
  background: #FFF;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
}
.l-back-to-top::after {
  content: "";
  position: absolute;
  top: 1.8rem;
  left: 50%;
  width: 1.8rem;
  height: 1.8rem;
  background: url(/leverage/images/common/icon_back_to_top_01.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transform: translate(-50%, 0);
}
.l-back-to-top.is-active {
  opacity: 1;
  visibility: visible;
}
.l-back-to-top__text {
  position: absolute;
  top: 3.2rem;
  left: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.056rem;
  color: #1462AA;
  transform: translate(-50%, 0);
}
@media (hover: hover) {
  .l-back-to-top:hover {
    background: #1462AA;
  }
  .l-back-to-top:hover::after {
    background: url(/leverage/images/common/icon_back_to_top_02.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
  }
  .l-back-to-top:hover .l-back-to-top__text {
    color: #FFF;
  }
}
@media screen and (max-width: 767px) {
  .l-back-to-top {
    bottom: 4.8rem;
    right: 1.6rem;
    width: 6.4rem;
    height: 6.4rem;
  }
  .l-back-to-top:active {
    background: #1462AA;
  }
  .l-back-to-top::after {
    top: 1.6rem;
    width: 1.6rem;
    height: 1.6rem;
  }
  .l-back-to-top:active::after {
    background: url(/leverage/images/common/icon_back_to_top_02.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
  }
  .l-back-to-top__text {
    position: absolute;
    top: 2.8rem;
    font-size: 1.2rem;
    letter-spacing: 0.048rem;
  }
  .l-back-to-top:active .l-back-to-top__text {
    color: #FFF;
  }
}

/* ==============================
  Breadcrumb
  ============================== */
.l-breadcrumb {
  padding: 1.6rem;
  background: #F4F6F9;
}
.l-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 5.2rem;
}
.l-breadcrumb__item,
.l-breadcrumb__item a {
  position: relative;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.056rem;
  color: #393939;
}
.l-breadcrumb__item a:hover {
  text-decoration: underline;
}
.l-breadcrumb__item--current {
  font-weight: 700;
  color: #1462AA;
}
.l-breadcrumb__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.6rem;
  width: 2.0rem;
  height: 2.0rem;
  background: url(/leverage/images/common/icon_breadcrumb_item.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transform: translate(0, -50%);
}
.l-breadcrumb__item--current::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    padding: 0.8rem 1.6rem;
  }
  .l-breadcrumb__list {
    gap: 2.0rem;
  }
  .l-breadcrumb__item,
  .l-breadcrumb__item a {
    font-size: 1.2rem;
    letter-spacing: 0.048rem;
  }
  .l-breadcrumb__item::after {
    right: -1.6rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}

/* ==============================
  Contact
  ============================== */
.l-contact {
  padding: 6.0rem 0;
  background: linear-gradient(90deg, #35A7DB -9.73%, #1056A0 50%);
}
.l-contact__title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.112rem;
  text-align: center;
  text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.10);
  color: #FFF;
}
.l-contact__btn {
  position: relative;
  display: block;
  width: 34.2rem;
  margin: 2.0rem auto 0;
  padding: 2.8rem 3.2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
  border: 0.2rem solid rgba(0, 0, 0, 0);
  border-radius: 0.15rem;
  background: #FFF;
  box-shadow: 0 0.15rem 0.375rem 0 rgba(104, 106, 108, 0.16);
  color: #1462AA;
}
.l-contact__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2rem;
  width: 3.2rem;
  height: 3.2rem;
  background: url(/leverage/images/common/icon_contact_btn_01.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transform: translate(0, -50%);
}
.l-contact__btn:hover {
  border: 0.2rem solid #FFFFFF;
  background: #1462AA;
  color: #FFF;
}
.l-contact__btn:hover::after {
  background: url(/leverage/images/common/icon_contact_btn_02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .l-contact {
    padding: 4.0rem 0;
  }
  .l-contact__title {
    font-size: 2.4rem;
    letter-spacing: 0.096rem;
  }
  .l-contact__btn {
    width: 29.2rem;
    margin: 2.0rem auto 0;
    padding: 2.0rem 1.6rem;
    font-size: 1.8rem;
    letter-spacing: 0.072rem;
  }
  .l-contact__btn::after {
    right: 1.6rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}

/* ==============================
  Footer
  ============================== */
.l-footer {
  position: relative;
  background: #fff;
  padding: 8.0rem 0 0;
}
.l-footer__bg {
  padding: 6.0em 0;
  background: #111;
}
.l-footer__inner {
  position: relative;
  width: 100%;
  max-width: 102.4em;
  margin-inline: auto;
}
.l-footer__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 130%;
  color: #FFF;
}
.l-footer__point-title {
  margin-top: 2.0em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.072rem;
  color: #FFF;
}
.l-footer__point-description {
  margin-top: 1.2em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.056rem;
  color: #FFF;
}
.l-footer__point-note {
  margin-top: 1.2rem;
  padding-left: 1.4rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.048rem;
  color: #FFF;
}
.l-footer__point-note > li {
  position: relative;
}
.l-footer__point-note > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: -1.4rem;
}
.l-footer__list {
  margin-top: 2.0rem;
  display: flex;
  flex-direction: column;
}
.l-footer__list-item {
  display: grid;
  grid-template-columns: 22.4rem 1fr;
  align-items: start;
}
.l-footer__list-item dt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 175%;
  color: #FFF;
}
.l-footer__list-item dd {
  position: relative;
  padding-left: 3.0rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 175%;
  color: #FFF;
}
.l-footer__list-item dd::before {
  content: "：";
  position: absolute;
  top: 0;
  left: 0.8rem;
}
.l-footer__page {
  display: flex;
  gap: 3.6rem;
  margin-top: 6.0rem;
}
.l-footer__page > li {
  position: relative;
}
.l-footer__page > li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8rem;
  width: 0.1rem;
  height: 2.0rem;
  background: #FFF;
  transform: translate(0, -50%) skewX(-10deg);
}
.l-footer__page > li:first-child::before {
  content: none;
}
.l-footer__page > li > a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 160%;
  color: #FFF;
}
.l-footer__page > li > a:hover {
  text-decoration: underline;
}
.l-footer__link {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
  margin-top: 2.0rem;
}
.l-footer__link > li {
  position: relative;
}
.l-footer__link > li:last-child {
  padding: 0;
}
.l-footer__link > li > a {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 150%;
  color: #F3F3F3;
}
.l-footer__link > li > a:hover {
  text-decoration: underline;
  font-weight: 700;
}
.l-footer__info {
  display: block;
  margin-top: 4.0rem;
}
.l-footer__info img {
  width: 28.7rem;
}
.l-footerCopy__copyText {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .l-footer__inner {
    max-width: 94.4em;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3.0rem 0 0;
  }
  .l-footer__bg {
    padding: 3.2em 0;
  }
  .l-footer__inner {
    max-width: 34.2em;
  }
  .l-footer__title {
    font-size: 2.0rem;
  }
  .l-footer__list {
    display: block;
  }
  .l-footer__list-item {
    display: block;
  }
  .l-footer__list-item dt {
    position: relative;
    margin-top: 0.8rem;
    padding-right: 1.6rem;
  }
  .l-footer__list-item dt::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
  }
  .l-footer__list-item dd {
    margin-top: 0.4rem;
    padding-left: 0;
  }
  .l-footer__page {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2.691rem;
    margin-top: 4.0rem;
  }
  .l-footer__page > li {
    position: relative;
  }
  .l-footer__page > li::before {
    content: none;
  }
  .l-footer__page > li:first-child::before {
    content: none;
  }
  .l-footer__page > li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1.3rem;
    width: 0.1rem;
    height: 1.6rem;
    background: #FFF;
    transform: translate(0, -50%) skewX(-10deg);
  }
  .l-footer__page > li:last-child:after {
    content: none;
  }
  .l-footer__page > li > a {
    font-size: 1.4rem;
    letter-spacing: 0.056rem;
  }
  .l-footer__info {
    display: block;
    margin-top: 4.0rem;
  }
  .l-footer__info img {
    width: 25.0rem;
  }
  .l-footerCopy__copyText {
    margin-top: 0.8rem;
    font-size: 0.9rem;
  }
}