@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

.wrap {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

p {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

@media (min-width: 1200px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 1199px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  a[href^="tel:"] {
    display: block;
    pointer-events: painted;
  }
}

/*デバイスごとの表示切り替え*/
@media (max-width: 1199px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.tab-below {
  display: none;
}
@media (max-width: 1199px) {
  .tab-below {
    display: block;
  }
}

@media (min-width: 1200px) {
  .tab-only {
    display: none;
  }
}
@media (max-width: 1199px) {
  .tab-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

#drawer-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 450px;
  height: 100vh;
  background: red;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (max-width: 767px) {
  #drawer-nav {
    width: 100%;
  }
}

#drawer-nav.panelactive {
  right: 0;
}

.drawer-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#drawer-nav ul {
  position: absolute;
  z-index: 999;
  top: 45%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#drawer-nav li {
  list-style: none;
}
#drawer-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#drawer-nav .drawer-under {
  margin-left: 40px;
}

.drawer-nav-logo {
  width: 160px;
  margin-top: 20px;
}

/*========= ボタンのためのCSS ===============*/
.hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  position: fixed;
  z-index: 9999;
  top: 15px;
  right: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media (max-width: 1199px) {
  .hamburger {
    display: block;
    top: 15px;
    right: 20px;
  }
}

.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: red;
  width: 45%;
}

.hamburger span:nth-of-type(1) {
  top: 20px;
}

.hamburger span:nth-of-type(2) {
  top: 30px;
}

.hamburger span:nth-of-type(3) {
  top: 40px;
}

.hamburger.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 45%;
  background-color: #fff;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 45%;
  background-color: #fff;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

.wrap {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

p {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

@media (min-width: 1200px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 1199px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  a[href^="tel:"] {
    display: block;
    pointer-events: painted;
  }
}
/*デバイスごとの表示切り替え*/
@media (max-width: 1199px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
.tab-below {
  display: none;
}

@media (max-width: 1199px) {
  .tab-below {
    display: block;
  }
}
@media (min-width: 1200px) {
  .tab-only {
    display: none;
  }
}
@media (max-width: 1199px) {
  .tab-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}
.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}
#drawer-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 450px;
  height: 100vh;
  background: red;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media (max-width: 767px) {
  #drawer-nav {
    width: 100%;
  }
}
#drawer-nav.panelactive {
  right: 0;
}

.drawer-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#drawer-nav ul {
  position: absolute;
  z-index: 999;
  top: 45%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#drawer-nav li {
  list-style: none;
}

#drawer-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

#drawer-nav .drawer-under {
  margin-left: 40px;
}

.drawer-nav-logo {
  width: 160px;
  margin-top: 20px;
}

/*========= ボタンのためのCSS ===============*/
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  position: fixed;
  z-index: 9999;
  top: 15px;
  right: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

@media (max-width: 1199px) {
  .hamburger {
    display: block;
    top: 15px;
    right: 20px;
  }
}
.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: red;
  width: 45%;
}

.hamburger span:nth-of-type(1) {
  top: 20px;
}

.hamburger span:nth-of-type(2) {
  top: 30px;
}

.hamburger span:nth-of-type(3) {
  top: 40px;
}

.hamburger.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
  width: 45%;
  background-color: #fff;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
  width: 45%;
  background-color: #fff;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  line-height: 1.5;
  background: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.wrap {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

.common-width {
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .common-width {
    width: 92%;
  }
}
@media (max-width: 1199px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
.tab-below {
  display: none;
}

@media (max-width: 1199px) {
  .tab-below {
    display: block;
  }
}
@media (min-width: 1200px) {
  .tab-only {
    display: none;
  }
}
@media (max-width: 1199px) {
  .tab-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}
.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}
.lp_section {
  margin: 120px auto;
}

@media (max-width: 1199px) {
  .lp_section {
    margin: 60px auto;
  }
}
.lp_section__bg {
  padding: 120px 0;
}

@media (max-width: 1199px) {
  .lp_section__bg {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .lp_section__bg {
    padding: 50px 0;
  }
}
.lp_section__label {
  display: block;
  width: 240px;
  margin: 0 auto;
  background-color: #00409d;
  color: #fff;
  padding: 8px 40px;
  border-radius: 50px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .lp_section__label {
    font-size: 20px;
    padding: 10px 30px;
    width: 180px;
  }
}
.lp_section__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1199px) {
  .lp_section__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .lp_section__title {
    font-size: 22px;
  }
}
/*********************************************
ヘッダー
**********************************************/
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  background-color: #ffffff;
}

.header__wrap {
  max-width: 1920px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 80px 15px 80px;
}

@media (max-width: 1199px) {
  .header__wrap {
    padding: 0 20px;
  }
}
.header__logo a {
  display: block;
  width: 225px;
  padding-top: 15px;
}

@media (max-width: 1199px) {
  .header__logo a {
    width: 160px;
    padding: 15px 0 10px 0;
  }
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media (max-width: 1199px) {
  .header__nav ul {
    gap: 10px;
  }
}
.header__nav ul li a {
  font-weight: 400;
  padding: 20px;
  font-size: 14px;
}

@media (max-width: 1199px) {
  .header__nav ul li a {
    padding: 20px 10px;
  }
}
/*************************************************************************************
ドロワーメニュー
**************************************************************************************/
#drawer-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media (min-width: 1200px) {
  #drawer-nav {
    display: none;
  }
}
#drawer-nav.panelactive {
  right: 0;
}

.drawer-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#drawer-nav ul {
  position: absolute;
  z-index: 999;
  top: 250px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 65%;
}

#drawer-nav li {
  list-style: none;
}

#drawer-nav li a {
  text-decoration: none;
  padding: 12px 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #00409d;
  font-weight: 500;
}

#drawer-nav li a img {
  width: 80%;
}

/*************************************************************************************
ハンバーガーボタン
**************************************************************************************/
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  position: fixed;
  background-color: transparent;
  z-index: 9999;
  top: 0;
  right: 5px;
  cursor: pointer;
  width: 60px;
  height: 60px;
}

@media (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}
@media (max-width: 1199px) {
  .hamburger {
    display: none;
  }
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 2px;
  border-radius: 2px;
  background-color: #00409d;
  width: 30px;
}

.hamburger span:nth-of-type(1) {
  top: 18px;
}

.hamburger span:nth-of-type(2) {
  top: 26px;
}

.hamburger span:nth-of-type(3) {
  top: 34px;
}

.hamburger.active span:nth-of-type(1) {
  top: 18px;
  left: 14px;
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
  width: 33px;
  background-color: #00409d;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 30px;
  left: 14px;
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
  width: 33px;
  background-color: #00409d;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

@media (min-width: 1200px) {
  #overlay {
    position: static;
  }
}
/* Prevent background scrolling when menu is active */
body.panelactive {
  overflow: hidden;
}

@media (min-width: 1200px) {
  body.panelactive {
    overflow: auto;
  }
}
/*********************************************
ファーストビュー
**********************************************/
.lp_fv {
  padding-top: 60px;
  position: relative;
  margin-bottom: -13px;
}

.lp_fv::after {
  position: absolute;
  content: "";
  top: 70px;
  right: 0;
  width: 180px;
  height: 180px;
  background: url(../lp-img/fv-ribbon.png) no-repeat center/cover;
}

@media (max-width: 1199px) {
  .lp_fv::after {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 767px) {
  .lp_fv::after {
    width: 100px;
    height: 100px;
  }
}
.lp_fv__wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.lp_fv__content {
  color: #00409d;
  text-align: center;
  padding-top: 40px;
}

@media (max-width: 767px) {
  .lp_fv__content {
    padding-top: 30px;
  }
}
.lp_fv__logo {
  width: 400px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 1199px) {
  .lp_fv__logo {
    width: 500px;
  }
}
@media (max-width: 767px) {
  .lp_fv__logo {
    width: 220px;
  }
}
.lp_fv__leaf {
  width: 400px;
  margin: 0 auto;
  margin-top: 30px;
  display: block;
}

@media (max-width: 767px) {
  .lp_fv__leaf {
    margin-top: 20px;
    width: 300px;
  }
}
.lp_fv__catch {
  font-size: 40px;
  margin-top: 20px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .lp_fv__catch {
    margin-top: 20px;
    font-size: 36px;
  }
}
.small {
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .small {
    font-size: 18px;
  }
}
.lp_fv__text {
  margin: 20px 0;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .lp_fv__text {
    font-size: 14px;
  }
}
.lp_fv__img {
  margin-bottom: -25px;
}

@media (max-width: 767px) {
  .lp_fv__img {
    margin-top: 20px;
  }
}
/*********************************************
アルカクラビスNEXTとは？
**********************************************/
.lp_about {
  background-color: #00409d;
  padding-top: 50px;
  padding-bottom: 80px;
}

.lp_about__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45% 50px 48%;
  grid-template-columns: 45% 48%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
  color: #fff;
}

@media (max-width: 1199px) {
  .lp_about__wrap {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .lp_about__wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.lp_about__contents-title {
  font-size: 42px;
}

@media (max-width: 1199px) {
  .lp_about__contents-title {
    font-size: 28px;
  }
}
.light-blue {
  color: #00b4e6;
}

.title-small {
  font-size: 22px;
}

.lp_about__contents-text {
  margin-top: 30px;
  line-height: 220%;
}

@media (max-width: 1199px) {
  .lp_about__contents-text {
    margin-top: 20px;
  }
}
/*********************************************
特徴・機能
**********************************************/
.blue {
  color: #00409d;
}

.lp_feature__merit {
  margin-top: 60px;
}

@media (max-width: 1199px) {
  .lp_feature__merit {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .lp_feature__merit {
    margin-top: 30px;
  }
}
.merit1-addition {
  max-width: 450px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .merit1-addition {
    width: 80%;
  }
}
.merit-2, .merit-3 {
  margin-top: 120px;
}

@media (max-width: 1199px) {
  .merit-2, .merit-3 {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .merit-2, .merit-3 {
    margin-top: 40px;
  }
}
.lp_feature__merit__label {
  color: #00409d;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  position: relative;
  width: 130px;
  margin: 0 auto;
}

.lp_feature__merit__label::before {
  position: absolute;
  content: "";
  top: 0;
  left: 10px;
  width: 5px;
  height: 100%;
  background-color: #00409d;
}

.lp_feature__merit__label::after {
  position: absolute;
  content: "";
  top: 0;
  right: 10px;
  width: 5px;
  height: 100%;
  background-color: #00409d;
}

.lp_feature__merit__label span {
  font-size: 56px;
  display: block;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .lp_feature__merit__label span {
    font-size: 36px;
    margin-top: 5px;
  }
}
.lp_feature__merit__title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .lp_feature__merit__title {
    font-size: 20px;
  }
}
.lp_feature__merit__text {
  font-size: 16px;
  margin-top: 40px;
  line-height: 220%;
}

@media (max-width: 767px) {
  .lp_feature__merit__text {
    margin-top: 20px;
  }
}
.lp_feature__merit__img {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .lp_feature__merit__img {
    max-width: none;
    width: 100%;
  }
}
.merit__list__title {
  font-size: 25px;
  color: #00409d;
  background-color: #CCD9EB;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  padding: 10px 40px;
  border-radius: 25px 25px 0 0;
}

@media (max-width: 1199px) {
  .merit__list__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .merit__list__title {
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
  }
}
.merit__list {
  max-width: 800px;
  width: 98%;
  margin-right: auto;
  margin-left: auto;
  color: #00409d;
}

.merit__list li {
  font-size: 20px;
  font-weight: 700;
  padding: 18px 0;
  border-top: 1px solid #00409d;
}

@media (max-width: 1199px) {
  .merit__list li {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .merit__list li {
    padding: 15px 0;
    font-size: 16px;
  }
}
.merit__list li:last-child {
  border-bottom: 1px solid #00409d;
}

.merit-4 {
  background-color: #edfafd;
}

.pl_feature__merit__subtitle {
  background-color: #00b4e6;
  font-size: 28px;
  color: #fff;
  width: 300px;
  margin: 0 auto;
  text-align: center;
  border-radius: 50px;
  margin-top: 40px;
  padding: 10px;
}

@media (max-width: 767px) {
  .pl_feature__merit__subtitle {
    font-size: 22px;
  }
}
.lp_feature__merit__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 20px 25% 20px 25% 20px 25%;
  grid-template-columns: repeat(4, 25%);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

@media (max-width: 1199px) {
  .lp_feature__merit__cards {
    gap: 15px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .lp_feature__merit__cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.lp_feature__merit__card {
  background-color: #fff;
  padding: 30px;
}

@media (max-width: 1199px) {
  .lp_feature__merit__card {
    padding: 20px;
  }
}
.lp_feature__merit__card-title {
  font-size: 17px;
  color: #00409d;
  border-top: 1px solid #00409d;
  border-bottom: 1px solid #00409d;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1199px) {
  .lp_feature__merit__card-title {
    font-size: 16px;
    white-space: nowrap;
  }
}
.lp_feature_merit__card-img {
  width: 100px;
  margin: 20px auto;
}

.lp_feature__merit__card-text {
  color: #00409d;
  line-height: 150%;
  font-size: 16px;
}

/*********************************************
導入実績
**********************************************/
.lp_industry {
  text-align: center;
}

@media (max-width: 1199px) {
  .lp_industry {
    padding-bottom: 40px;
  }
}
.lp_industry__logo {
  width: 675px;
  margin: 0 auto;
  margin-top: 100px;
}

@media (max-width: 1199px) {
  .lp_industry__logo {
    margin-top: 50px;
  }
}
.lp_industry__text {
  margin-top: 50px;
  text-align: left;
}

@media (max-width: 1199px) {
  .lp_industry__text {
    margin-top: 30px;
  }
}
.lp_industry-genres {
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .lp_industry-genres {
    margin-top: 0;
  }
}
.lp_industry-genres__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 28% [4];
  grid-template-columns: repeat(4, 28%);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .lp_industry-genres__wrap {
    -ms-grid-columns: 50% [2];
    grid-template-columns: repeat(2, 50%);
  }
}
.lp_industyr-genre {
  border-right: 1px solid #00409d;
  margin-top: 60px;
  position: relative;
}

.lp_industyr-genre:nth-of-type(4n) {
  border-right: none;
}

@media (max-width: 767px) {
  .lp_industyr-genre {
    padding: 5px;
  }
  .lp_industyr-genre:nth-child(2n) {
    border: none;
  }
}
.lp_industyr-genre::after {
  position: absolute;
  content: "";
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #00409d;
}

.il_industry-genre__img {
  width: 120px;
  margin: 0 auto;
}

.lp_industry-genre__label {
  font-size: 22px;
  font-weight: bold;
  color: #00409d;
}

@media (max-width: 767px) {
  .lp_industry-genre__label {
    font-size: 18px;
  }
}
.lp_industry-genre__ul {
  color: #00409d;
  text-align: left;
  margin-top: 20px;
}

.lp_industry-genre__ul li {
  padding: 0 35px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .lp_industry-genre__ul li {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .lp_industry-genre__ul li {
    padding: 0 15px;
    font-size: 14px;
  }
}
/*********************************************
導入事例
**********************************************/
.lp_case {
  background-color: #f2f5fa;
}

.lp_case__label {
  text-align: center;
  color: #00409d;
  font-weight: 700;
  border: 3px solid #00409d;
  border-radius: 50px;
  width: 500px;
  margin: 0 auto;
  font-size: 30px;
  padding: 8px 20px;
}

@media (max-width: 767px) {
  .lp_case__label {
    width: 95%;
    font-size: 20px;
  }
}
.lp_case__wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1199px) {
  .lp_case__wrap {
    max-width: 680px;
  }
}
.swiper {
  max-width: 1100px;
}

.lp_case__cards {
  width: 80%;
  display: block;
  margin: 0 auto;
  margin-top: 60px;
}

.lp_case__card {
  background-color: #fff;
}

.lp_case__card a {
  text-decoration: none;
}

@media (max-width: 767px) {
  .lp_case__card {
    width: 80%;
    margin: 0 auto;
  }
}
.lp_case__card-img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.lp_case__card-content {
  padding: 40px 30px;
  color: #00409d;
  height: 250px;
}

.lp_case__card-title {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid #00409d;
}

.lp_case__card-text {
  padding-top: 20px;
  font-size: 16px;
}

.swiper-button-prev {
  left: -40px !important;
}

.swiper-button-prev::after {
  font-size: 24px !important;
}

@media (max-width: 1199px) {
  .swiper-button-prev {
    left: -20px !important;
  }
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: 5px !important;
  }
}
/* 次への矢印 */
.swiper-button-next {
  right: -40px !important;
}

.swiper-button-next::after {
  font-size: 24px !important;
}

@media (max-width: 1199px) {
  .swiper-button-next {
    right: -20px !important;
  }
}
@media (max-width: 767px) {
  .swiper-button-next {
    right: 5px !important;
  }
}
/*********************************************
価格
**********************************************/
.lp_price {
  background-color: #e4aa03;
}

.lp_section__label--white {
  color: #00409d;
  background-color: #fff;
  border: 3px solid #00409d;
}

.lp_section__title--white {
  margin-top: 50px;
  color: #fff;
}

@media (max-width: 1199px) {
  .lp_section__title--white {
    margin-top: 30px;
  }
}
.lp_price__table {
  background-color: #fff;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  margin-top: 60px;
  padding: 50px 30px;
}

@media (max-width: 1199px) {
  .lp_price__table {
    overflow-x: scroll;
  }
}
@media (max-width: 767px) {
  .lp_price__table {
    margin-top: 40px;
    padding: 30px 10px;
  }
}
.lp_price__table table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #fff;
}

@media (max-width: 767px) {
  .lp_price__table table {
    width: 100%;
    white-space: nowrap;
  }
}
.lp_price__table table th, .lp_price__table table td {
  border: none;
  font-size: 16px;
  border-bottom: 2px solid #9fb7da;
  /* border-top: 0.5px solid #9fb7da; */
}

@media (max-width: 1199px) {
  .lp_price__table table th, .lp_price__table table td {
    font-size: 16px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  .lp_price__table table th, .lp_price__table table td {
    font-size: 16px;
  }
}
.lp_price__table table tr {
  height: 70px;
  color: #00409d;
}

.lp_price__table table tr:first-child th {
  border-top: none;
}

.lp_price__table table tr:first-child td {
  border-top: none;
}

.lp_price__table table tr:last-child th {
  border-top: none;
}

.lp_price__table table tr:last-child td {
  border-top: none;
}

.lp_price__table table th {
  text-align: left;
  width: 320px;
  padding: 0 10px;
  border-right: 1px solid #9fb7da;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .lp_price__table table th {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .lp_price__table table th {
    padding: 0 10px;
  }
}
.lp_price__table table td {
  width: 25%;
  text-align: center;
  padding: 0 8px;
}
.lp_price__table table td:first-of-type {
  border-right: 1px solid #DDDDDD;
}

.lp_price__table table td li {
  padding: 0 20px;
}

.lp_price__table table td .td__attention {
  text-align: left;
  font-size: 14px;
}

@media (max-width: 767px) {
  .lp_price__table table td .td__attention {
    width: 400px;
    white-space: wrap;
  }
}
.lp_price__table table .fz-14 {
  font-size: 12px !important;
  white-space: nowrap;
}

.lp_price__table table .fz24 {
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .lp_price__table table .fz24 {
    font-size: 24px;
  }
}
.lp_price__table .top {
  color: #e4aa03;
  height: 60px;
}

.lp_price__table .top_first-th {
  border: none;
}

.lp_price__table .orange {
  text-align: center;
  border: none;
  padding-bottom: 20px;
  font-size: 24px;
  position: relative;
}

@media (max-width: 767px) {
  .lp_price__table .orange {
    font-size: 20px;
  }
}
.lp_price__table .orange::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 3px;
  height: 40px;
  background-color: #e4aa03;
}

.lp_price__table .free {
  background-color: #edfafd;
}

.lp_price__table .fz-small {
  font-size: 14px;
  display: block;
}

@media (max-width: 1199px) {
  .lp_price__table .free {
    min-width: 300px;
    width: 100%;
  }
  .lp_price__table .fz-small {
    font-size: 16px;
  }
}
.lp_price__table .bold {
  font-weight: bold;
}

.function th, .function td {
  vertical-align: top;
  padding: 10px 0;
}

.function__ul {
  vertical-align: top;
  margin-top: 15px;
}

.function__ul li {
  margin-bottom: 15px;
}

.btn--light-blue {
  margin: 30px 0;
}

.btn--light-blue a {
  display: block;
  max-width: 230px;
  width: 90%;
  margin: 0 auto;
  background-color: #00b4e6;
  color: #fff;
  border: 2px solid #00b4e6;
  border-radius: 50px;
  padding: 15px 20px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .btn--light-blue a:hover {
    color: #00b4e6;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (max-width: 1199px) {
  .btn--light-blue a {
    padding: 15px 30px;
  }
}
/*********************************************
ご利用までの流れ
**********************************************/
.lp_step {
  background-color: #f2f5fa;
}

.lp_section__label--white400 {
  color: #00409d;
  background-color: #fff;
  border: 3px solid #00409d;
  width: 400px;
}

@media (max-width: 767px) {
  .lp_section__label--white400 {
    width: 350px;
  }
}
.lp_step-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
}

@media (max-width: 1199px) {
  .lp_step-cards {
    display: block;
  }
}
@media (max-width: 767px) {
  .lp_step-cards {
    display: block;
  }
}
.lp_step-card {
  width: 100%;
}

@media (max-width: 1199px) {
  .lp_step-card {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .lp_step-card {
    margin: 10px auto;
  }
}
.lp_step-card__flow {
  background-color: #00409d;
  padding: 14px;
  position: relative;
  text-align: center;
}

.lp_step-card__flow::after {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  height: 12px;
  background: url(../lp-img/step-fukidashi.png) no-repeat center/cover;
}

.lp_step-card__flow p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 220%;
}

.lp_step-card__flow p .border {
  padding: 8px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.lp_step-card__textbox {
  background-color: #fff;
  padding: 15px;
  height: 230px;
}

@media (max-width: 1199px) {
  .lp_step-card__textbox {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 30px 15px;
  }
}
.lp_step-card__textbox p {
  color: #00409d;
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 767px) {
  .lp_step-card__textbox p {
    font-size: 16px;
  }
}
.step-arrow {
  width: 60px;
  margin: 0 10px;
}

@media (max-width: 1199px) {
  .step-arrow {
    width: 30px;
    margin: 0 auto;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-top: -25px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .step-arrow {
    margin-top: 0px;
  }
}
.step-btn {
  margin-top: 10px;
}

.step-btn a {
  display: block;
  text-align: center;
  margin: 0 auto;
  background-color: #00b4e6;
  color: #fff;
  border: 2px solid #00b4e6;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  word-wrap: break-word;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .step-btn a:hover {
    color: #00b4e6;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.lp_step__additions {
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .lp_step__additions {
    margin-top: 30px;
  }
}
.lp_step__attentions {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .lp_step__attentions {
    margin-top: 30px;
    margin-bottom: none;
  }
}
.btn__orange {
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .btn__orange {
    margin-top: 30px;
  }
}
.btn__orange a {
  background-color: #e4aa03;
  color: #00409d;
  border: 3px solid #e4aa03;
  font-size: 26px;
  font-weight: 500;
  width: 640px;
  margin: 0 auto;
  padding: 18px 60px;
  text-decoration: none;
  border-radius: 50px;
  display: block;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .btn__orange a:hover {
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (max-width: 767px) {
  .btn__orange a {
    width: 90%;
    padding: 10px 20px;
    font-size: 22px;
  }
}
/*********************************************
よくあるご質問
**********************************************/
.faq__wrap {
  padding: 32px 0 60px 0;
}

.faq__box {
  padding: 24px 0;
  border-bottom: 1px solid #00409d;
}

.faq__box:first-of-type {
  border-top: 1px solid #00409d;
}

@media (max-width: 1199px) {
  .faq__box {
    padding: 30px 0;
  }
}
.faq__box-q {
  padding: 0 60px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #00409d;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .faq__box-q {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .faq__box-q {
    padding: 15px 45px;
    padding-left: 55px;
    font-size: 16px;
  }
}
.faq__box-q::before {
  position: absolute;
  content: "Q";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 36px;
  font-family: "Oswald", sans-serif;
}

@media (max-width: 767px) {
  .faq__box-q::before {
    font-size: 32px;
  }
}
.faq__box-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.faq__box-icon.is-open .faq__box-bar2 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq__box-bar1 {
  width: 20px;
  height: 2px;
  background: #00409d;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}

.faq__box-bar2 {
  width: 2px;
  height: 20px;
  background: #00409d;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.faq__box-a {
  line-height: 1.5;
  padding: 30px 0;
  display: none;
}

@media (max-width: 767px) {
  .faq__box-a {
    font-size: 14px;
  }
}
.faq__box-content {
  padding: 0 60px;
  border-top: 1px solid #00409d;
}

.faq__box-answer {
  font-size: 16px;
  font-weight: 400;
  padding-top: 26px;
  position: relative;
}

@media (max-width: 767px) {
  .faq__box-answer {
    font-size: 16px;
  }
}
.faq__box-answer::before {
  position: absolute;
  content: "A";
  top: 20px;
  left: -60px;
  font-size: 36px;
  font-family: "Oswald", sans-serif;
}

@media (max-width: 767px) {
  .faq__box-answer::before {
    font-size: 32px;
  }
}
.faq__box-answer a {
  color: #00409d;
}

.text-wrap {
  word-break: break-all;
}

.faq__box-answer-text p {
  margin: 5px 0;
}

.faq__box-answer-text--pt-none {
  padding-top: 0;
}

.faq__box-answer-text--pt-none p {
  margin: 5px 0;
}

.faq__box-contact {
  margin-top: 50px;
}

.faq__box-tel {
  font-size: 24px;
  padding-top: 20px;
}

.faq__box-tel a {
  padding-left: 10px;
  text-decoration: none;
}

.lp_faq__btn a {
  width: 400px;
  display: block;
  margin: 0 auto;
  background-color: #00b4e6;
  color: #fff;
  border: 2px solid #00b4e6;
  text-align: center;
  padding: 15px 50px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .lp_faq__btn a:hover {
    color: #00b4e6;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (max-width: 767px) {
  .lp_faq__btn a {
    width: 350px;
  }
}
/*********************************************
無料ダウンロードCTA
**********************************************/
.lp_cta {
  background-color: #00409d;
  padding: 80px 0;
}

.lp_cta__wrap {
  max-width: 800px;
  margin: 0 auto;
}

.lp_cat__message {
  color: #e4aa03;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767px) {
  .lp_cat__message {
    font-size: 22px;
  }
}
.lp_cta__links {
  margin-top: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
}

@media (max-width: 767px) {
  .lp_cta__links {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 20px;
  }
}
.lp_cta__link a {
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.lp_cta__link a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.6;
}

/*********************************************
販売パートナー・お問い合わせ
**********************************************/
.lp_partner__wrap {
  border-top: 6px solid #00409d;
  border-bottom: 6px solid #00409d;
  padding: 30px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 48% [2];
  grid-template-columns: repeat(2, 48%);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

@media (max-width: 1199px) {
  .lp_partner__wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .lp_partner__wrap {
    display: block;
  }
}
.lp_partner__content {
  color: #00409d;
}

.lp_partner__content p {
  font-size: 16px;
}

.lp_partner__title {
  font-size: 24px;
  margin-bottom: 20px;
}

.lp_partner__title span {
  color: #e4aa03;
}

@media (max-width: 767px) {
  .lp_partner__btn {
    margin-top: 30px;
  }
}
.lp_partner__btn a {
  background-color: #00409d;
  color: #fff;
  border: 2px solid #00409d;
  padding: 15px 30px;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  font-size: 22px;
  margin: 0 auto;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 1200px) {
  .lp_partner__btn a:hover {
    color: #00409d;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (max-width: 767px) {
  .lp_partner__btn a {
    font-size: 20px;
  }
}
.lp_contact__title {
  font-size: 28px;
  color: #00409d;
  text-align: center;
}

.lp_contact__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% [2];
  grid-template-columns: repeat(2, 50%);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .lp_contact__wrap {
    display: block;
    margin-top: 30px;
  }
}
.lp_contact__tel {
  height: 140px;
  border-left: 1px solid #00409d;
  text-align: center;
}

@media (max-width: 767px) {
  .lp_contact__tel {
    border-left: none;
    border-bottom: 1px solid #00409d;
  }
}
.lp_contact__tel p {
  font-size: 24px;
  font-weight: 500;
  color: #00409d;
}

@media (max-width: 1199px) {
  .lp_contact__tel p {
    font-size: 20px;
  }
}
.lp_contact__tel-link a {
  color: #e4aa03;
  font-size: 80px;
  font-family: "Oswald", sans-serif;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .lp_contact__tel-link a {
    font-size: 60px;
  }
}
.lp_contact__form {
  height: 140px;
  border-left: 1px solid #00409d;
  border-right: 1px solid #00409d;
  text-align: center;
}

@media (max-width: 767px) {
  .lp_contact__form {
    border-left: none;
    border-right: none;
    padding: 30px 0;
  }
}
.lp_contact__form p {
  font-size: 24px;
  font-weight: 500;
  color: #00409d;
}

@media (max-width: 1199px) {
  .lp_contact__form p {
    font-size: 20px;
  }
}
.btn__contact {
  margin-top: 20px;
}

.btn__contact a {
  display: block;
  background-color: #e4aa03;
  color: #fff;
  border: 2px solid #e4aa03;
  font-size: 24px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 15px 60px;
  text-decoration: none;
  border-radius: 50px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media (min-width: 1200px) {
  .btn__contact a:hover {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    color: #e4aa03;
    background-color: #fff;
  }
}
/*********************************************
TOPへ戻る、追従バナー
**********************************************/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

@media (max-width: 767px) {
  #page-top {
    bottom: 20px;
    right: 5px;
  }
}
#page-top a {
  width: 60px;
  padding: 10px 5px;
  text-align: center;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  #page-top a {
    width: 50px;
  }
}
.lp_banner {
  position: fixed;
  right: 0;
  top: 250px;
}

@media (max-width: 767px) {
  .lp_banner {
    top: 160px;
  }
}
.lp_banner a img {
  width: 55px;
}

@media (max-width: 767px) {
  .lp_banner a img {
    width: 45px;
  }
}
/*************************************************************************************
フッター
**************************************************************************************/
.footer {
  background-color: #0154A7;
  color: #ffffff;
}

.footer__wrap {
  display: block;
  max-width: 1680px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding: 80px 0;
}

.footer__logo a {
  display: block;
  width: 280px;
}

@media (max-width: 767px) {
  .footer__logo a {
    width: 90%;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .footer__nav {
    display: block;
    margin-top: 40px;
  }
}
.footer__nav li a {
  font-size: 12px;
  color: #99bbdc;
}

.footer__nav li a span {
  font-size: 10px;
  margin-right: 8px;
}

@media (max-width: 767px) {
  .footer__nav li a {
    display: block;
    margin-bottom: 10px;
  }
}
.footer_copy {
  display: block;
  margin-top: 30px;
  color: #99bbdc;
}

@media (max-width: 767px) {
  .footer_copy {
    margin-top: 40px;
  }
}