@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Train+One&display=swap);
:root {
  --c-base: #202020;
  --c-main: #65ACEB;
  --c-text-base: #FFFFFF;
  --c-accent: #FECE09;
  --c-accent-light: #FFFDF4;
  --c-main-gradient: linear-gradient(147deg, rgba(128,208,199,.7) 0%, rgba(58,174,218,.7) 31%, rgba(0,147,233,.7) 100%);
}

:root {
  --side-gutter: 20px;
  --z-header: 150;
  --z-hamburger: 200;
  --z-drawer: 100;
  --link-opacity: 0.6;
  --s-base: 1em;
  --s-xxs: calc(0.5 * var(--s-base));
  --s-xs: calc(1 * var(--s-base));
  --s-sm: calc(2 * var(--s-base));
  --s-md: calc(3 * var(--s-base));
  --s-lg: calc(4 * var(--s-base));
  --s-xl: calc(5 * var(--s-base));
  --sp-bottom-nav-height: 60px;
  --inner-width: 1200px;
  --default-heading-gutter: 1.5rem;
  --heading-lh: 1.5;
  --heading-fz-lg: 1.5rem;
  --heading-fz01: 1.375rem;
  --heading-fz02: 1.25rem;
  --heading-fz03: 1.125rem;
}

@media (max-width: 768px) {
  :root {
    --s-base: 0.75em;
    --default-heading-gutter: 0.875rem;
    --heading-fz-lg: 1.125rem;
    --heading-fz01: 1rem;
    --heading-fz02: 1rem;
    --heading-fz03: 1rem;
  }
}
/*
function

サイト全体で使えるmixinなどを定義。
*/
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

body {
  padding-top: var(--header-height-gutter);
  font-family: "Noto Sans JP", "Helvetica", "Meiryo", serif;
  color: var(--c-base);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
  opacity: var(--link-opacity);
}

img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
  vertical-align: bottom;
}

main {
  display: block;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: inherit;
  font: inherit;
  font-size: 100%;
  outline: none;
}

select::-ms-expand {
  display: none; /* デフォルトのスタイルを無効(IE用) */
}

input::-webkit-input-placeholder {
  color: #ccc;
}

input::-moz-placeholder {
  color: #ccc;
}

input:-ms-input-placeholder {
  color: #ccc;
}

input::-ms-input-placeholder {
  color: #ccc;
}

input::placeholder {
  color: #ccc;
}

/* IE */
input:-ms-input-placeholder {
  color: #ccc;
}

/* Edge */
input::-ms-input-placeholder {
  color: #ccc;
}

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

svg {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.jpg {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

html {
  font-size: 62.5%;
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  html {
    font-size: 54.6875%;
  }
}

body {
  background-color: var(--c-base);
  color: var(--c-text-base);
}

@media screen and (max-width: 768px) {
  p {
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    line-height: 2;
  }
}

.u-height-100vh {
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .u-height-100vh {
    height: auto;
  }
}

.js-hidden {
  display: none;
}
.js-hidden.js-inview {
  display: block;
}

.p-movie-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  position: static;
}

#Pagetop {
  position: fixed;
  bottom: 110px;
  right: 3%;
  cursor: pointer;
  width: 58px;
  height: 58px;
  z-index: 9999;
  opacity: 0.8;
  display: none;
}
#Pagetop p {
  background-color: #333333;
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  border-radius: 50%;
  line-height: 75px;
  height: 70px;
  width: 70px;
  padding: 0;
  margin: 0;
}

.c-lp-inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--side-gutter);
  padding-left: var(--side-gutter);
  max-width: calc(var(--inner-width) + var(--side-gutter) * 2);
}
.c-lp-inner--1000 {
  --inner-width: 1000px;
}
.c-lp-inner--1400 {
  --inner-width: 1400px;
}
@media screen and (max-width: 768px) {
  .c-lp-inner--spnone {
    --side-gutter: 0;
  }
}

.p-heading-secondary {
  text-align: center;
}
.p-heading-secondary p {
  font-size: 4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-heading-secondary p {
    font-size: 1.8rem;
  }
}
.p-heading-secondary img {
  margin-top: 2.7rem;
}
@media screen and (max-width: 768px) {
  .p-heading-secondary img {
    margin-top: 1.5rem;
  }
}

.p-heading-tertiary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-heading-tertiary {
    margin-left: 0;
    height: auto;
  }
}

.l-main {
  overflow: hidden;
}

.p-lp-container {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-lp-container {
    height: auto;
  }
}
.p-lp-container section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: #202020;
}
@media screen and (max-width: 768px) {
  .p-lp-container section {
    position: static;
    height: auto;
  }
}

.p-lp-container .pin-spacer {
  pointer-events: none;
}

.l-main-content {
  position: relative;
}

.l-header-main {
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .l-header-main__item {
    width: 16rem;
    max-width: 100%;
  }
}

.footer {
  margin-top: 5rem;
  text-align: left;
  background: #1d1d1d;
}
.footer small {
  background: #1d1d1d;
  color: #868686;
  display: block;
  text-align: center;
  padding: 5px 10px;
}

#footerNav {
  position: relative;
  width: 140rem;
  max-width: 100%;
  padding: 2.5rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #footerNav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#footerNav ul {
  margin-top: 5px;
}
#footerNav > ul {
  float: left;
}
#footerNav li {
  margin-bottom: 5px;
}
#footerNav li a {
  color: #fff;
}
#footerNav p.toTop {
  position: absolute;
  right: 1rem;
  top: -5.5rem;
}
#footerNav:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
#footerNav > ul ul li {
  margin-left: 1em;
}
#footerNav > ul ul li::before {
  content: "-";
  margin-right: 0.5em;
  color: #fff;
}

#footerInfo {
  padding: 2rem 0;
  background: #000;
}

#footerInfo-inner {
  position: relative;
  width: 140rem;
  max-width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
#footerInfo-inner p.footerLogo {
  margin-bottom: 2rem;
  width: 24rem;
}
@media screen and (max-width: 768px) {
  #footerInfo-inner p.footerLogo {
    width: 16rem;
  }
}
#footerInfo-inner p.footerCatch {
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.5em;
}
#footerInfo-inner address {
  color: #bdbdbd;
}
#footerInfo-inner p.character {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  #footerInfo-inner p.character {
    display: none;
  }
}

.p-lp-slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.p-lp-mv {
  background-color: #242323;
}
.p-lp-mv__container {
  padding: 50px 0 60px 0;
  height: 100%;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .p-lp-mv__container {
    padding-top: 100px;
    padding-bottom: 100px;
    height: auto;
  }
}
.p-lp-mv__bg {
  position: relative;
}
.p-lp-mv__bg-one {
  position: absolute;
  top: 0 !important;
  width: 80%;
  left: 21%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-mv__bg-one {
    height: auto;
    left: 0;
    width: 100%;
    height: auto;
  }
}
.p-lp-mv__bg-two {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.p-lp-mv__bg-three {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.p-lp-mv__video {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-mv__video {
    height: auto;
    top: 300px;
    z-index: 1;
    height: 280px;
  }
}
.p-lp-mv__video--bottom {
  top: 120px;
}
.p-lp-mv__video--sp {
  position: static;
}
.p-lp-mv__video--top {
  left: 140px;
}
@media screen and (max-width: 768px) {
  .p-lp-mv__video--top {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-mv__sp-video {
    width: 100%;
    margin-top: 2rem;
    height: 24rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-lp-mv__title {
  font-size: 7rem;
  letter-spacing: 0.05em;
  line-height: 1.285714;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-lp-mv__title {
    font-size: 3rem;
    width: 19rem;
    margin: 0 auto;
  }
}
.p-lp-mv__text-top {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 2;
  margin-top: 20px;
}
.p-lp-mv__text-gradient {
  background: -webkit-linear-gradient(280deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
  background: linear-gradient(170deg, rgb(252, 74, 26) 0%, rgb(247, 183, 51) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-weight: bold;
  margin-top: 7.1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-mv__text-gradient {
    width: 18.8rem;
    margin-top: 0;
    margin: 0 auto;
    margin-top: 1.5rem;
  }
}
.p-lp-mv__text {
  font-size: 2rem;
  letter-spacing: 0.03em;
  font-weight: bold;
  margin-top: 3.5rem;
  line-height: 2.111;
}
@media screen and (max-width: 768px) {
  .p-lp-mv__text {
    font-size: 1.4rem;
    margin-top: 0;
    margin-top: 10px;
    text-align: center;
  }
}
.p-lp-mv__inner {
  width: 1040px;
  max-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-lp-mv__inner {
    padding-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}

.p-lp-develop {
  background-color: #070303 !important;
}
@media screen and (max-width: 768px) {
  .p-lp-develop__container {
    padding-top: 15rem;
    padding-bottom: 20rem;
    background-color: #070303;
  }
}
.p-lp-develop__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-develop__inner {
    min-height: auto;
  }
}
.p-lp-develop__heading {
  width: 92rem;
  max-width: 100%;
  margin: 0 auto;
}
.p-lp-world {
  background-size: cover;
  background-position: top;
  position: relative;
  height: 100vh;
  background-color: #232323 !important;
}
@media screen and (max-width: 768px) {
  .p-lp-world {
    height: 100vh;
    background-color: #202020 !important;
  }
}
.p-lp-world__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-world__container {
    height: auto;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.p-lp-world__inner {
  text-align: center;
}
.p-lp-world__heading {
  width: 27rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-lp-world__heading {
    width: 12.5rem;
  }
}
.p-lp-world__text {
  font-size: 4.5rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-lp-world__text {
    font-size: 1.9rem;
  }
}
.p-lp-world__img {
  margin-top: 9vh;
  width: 960px;
  max-width: 100%;
  height: 270px;
}
@media screen and (max-width: 768px) {
  .p-lp-world__img {
    margin-top: 30px;
    width: 345px;
    height: auto;
    max-width: 100%;
    height: 154px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-lp-slide-bg-container {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-lp-slide-bg-container {
    padding-top: 12rem;
  }
}

.p-lp-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-lp-slide-bg {
    display: none;
  }
}
.p-lp-slide-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-lp-slide-relative {
  position: relative;
}

.p-lp-slide-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-slide-box {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-lp-slide-box__item {
  font-size: 2rem;
  line-height: 2.25;
  letter-spacing: 0.01em;
}

.p-lp-slide-box-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-slide-box-right {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-lp-slide-box-right__img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-lp-slide-box-right__img-sp {
    display: block;
  }
}
.p-lp-slide-box-right__item {
  font-size: 2rem;
  line-height: 2.25;
  letter-spacing: 0.01em;
  width: 46%;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .p-lp-slide-box-right__item {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-slide-box-right__item p {
    margin-top: 3rem;
    --side-gutter: 20px;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--side-gutter);
    padding-left: var(--side-gutter);
    max-width: calc(var(--inner-width) + var(--side-gutter) * 2);
  }
}

.p-lp-make__inner {
  position: relative;
  width: 1040px;
  max-width: 100%;
}
.p-lp-make__text img {
  width: 40rem;
}
@media screen and (max-width: 768px) {
  .p-lp-make__text img {
    width: 26rem;
  }
}

.p-lp-make-one__container {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-lp-make-one__container {
    padding-top: 2rem !important;
  }
}
.p-lp-make-one__bg {
  position: absolute;
  top: 50%;
  left: 56%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.p-lp-make-one__inner {
  position: relative;
}

.p-lp-make-two__container {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-lp-make-two__container {
    padding-bottom: 12rem !important;
    padding-top: 5rem !important;
  }
}

.p-lp-dev__inner {
  position: relative;
}
.p-lp-dev__text {
  width: 70rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-lp-dev__text {
    max-width: 100%;
    margin: 0 auto;
  }
}
.p-lp-dev__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-dev__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.p-lp-dev__item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-lp-dev__item {
    width: 100%;
  }
}
.p-lp-dev__item:last-of-type {
  margin-left: 10%;
}
@media screen and (max-width: 768px) {
  .p-lp-dev__item:last-of-type {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-dev__item--bottom {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
}
.p-lp-dev__item--bottom img {
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .p-lp-dev__item--bottom img {
    visibility: visible;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-dev__item p {
    margin-top: 2rem;
  }
}

.p-lp-dev-one {
  background-color: #2d2d2d !important;
}
.p-lp-dev-one__container {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-one__container {
    padding-bottom: 12rem;
    padding-top: 5rem;
    background-color: #202020 !important;
  }
}

.p-lp-dev-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-bg {
    display: none;
  }
}

.p-lp-dev-two {
  background: rgb(252, 76, 26);
  background: -webkit-linear-gradient(10deg, rgb(252, 76, 26) 0%, rgb(247, 155, 50) 100%);
  background: linear-gradient(80deg, rgb(252, 76, 26) 0%, rgb(247, 155, 50) 100%);
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two__container {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.p-lp-dev-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two__bg {
    position: static;
    display: none;
  }
}
.p-lp-dev-two__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two__inner {
    height: auto;
  }
}
.p-lp-dev-two__title {
  font-size: 4rem;
  letter-spacing: 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two__title {
    font-size: 2.5rem;
    letter-spacing: 0;
  }
}
.p-lp-dev-two__text {
  margin-top: 4rem;
  width: 45rem;
  max-width: 100%;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two__text {
    margin-top: 3.5rem;
    width: 100%;
  }
}
.p-lp-dev-two__text-bold {
  font-weight: bold;
  font-size: 2rem;
}
.p-lp-dev-two__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two__box {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-lp-dev-two__item-right {
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two__item-right {
    visibility: visible;
    margin-top: 2rem;
  }
}

.p-lp-dev-two-bottom {
  width: 100%;
}
.p-lp-dev-two-bottom__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 12.4rem;
  width: 160%;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two-bottom__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.4rem;
    width: 100%;
  }
}
.p-lp-dev-two-bottom__item {
  border: 3px solid #fff;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20%;
  margin: 0 15px;
  text-align: center;
  padding: 8px 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two-bottom__item {
    width: 100%;
    margin: 0;
    min-height: 7rem;
    background-color: #fff;
    color: #FC4A1A;
    margin-bottom: 3.7rem;
  }
}
.p-lp-dev-two-bottom__item::after {
  position: absolute;
  content: "";
  display: inline-block;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid rgba(255, 255, 255, 0.7);
  left: 100%;
  -webkit-transform: translateX(90%);
          transform: translateX(90%);
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two-bottom__item::after {
    left: 50%;
    bottom: -47%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}
.p-lp-dev-two-bottom__item:last-of-type::after {
  display: none;
}
.p-lp-dev-two-bottom__item-last::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-lp-dev-two-bottom__item-last::after {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .p-lp-try {
    padding-top: 12rem;
  }
}

@media screen and (max-width: 768px) {
  .p-lp-try-one__container {
    padding-top: 0rem !important;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-try-one {
    padding-bottom: 12rem;
  }
}

.p-lp-works {
  background-color: #070303 !important;
}
.p-lp-works__heading {
  width: 53rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-lp-works__heading {
    height: auto;
    min-height: auto;
  }
}
.p-lp-works__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-works__inner {
    height: auto;
    min-height: auto;
    padding-top: 13.5rem;
    padding-bottom: 16.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-lp-title-twoline__img {
    width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 8rem;
    margin-top: -2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-title-twoline__container {
    padding-top: 0rem;
    padding-bottom: 2rem;
  }
}
.p-lp-title-twoline__span01 {
  display: block;
  width: 46.6rem;
  max-width: 100%;
  margin-right: 1rem;
}
.p-lp-title-twoline__span02 {
  display: block;
  width: 11.7rem;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-title-twoline__span02 {
    width: 5.7rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-title-twoline__text {
    white-space: nowrap;
    width: 100%;
    text-align: center;
  }
}
.p-lp-title-twoline__text:first-of-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 3rem;
  letter-spacing: 0.03em;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .p-lp-title-twoline__text:first-of-type {
    font-size: 1.5rem;
  }
}
.p-lp-title-twoline__text:last-of-type {
  font-size: 4rem;
  margin-top: 2rem;
  letter-spacing: 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-lp-title-twoline__text:last-of-type {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-title-twoline__text-two {
    font-size: 2.1rem !important;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-title-twoline__text-two-bottom {
    font-size: 2.5rem !important;
    margin-top: 0 !important;
  }
}
.p-lp-title-twoline__heading {
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-lp-title-twoline__heading {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-lp-title-twoline-one {
    padding-top: 12rem;
  }
}

@media screen and (max-width: 768px) {
  .p-lp-title-twoline-two {
    padding-top: 12rem;
  }
}

.p-lp-works {
  background-color: #070303 !important;
}
.p-lp-works__inner {
  background-color: #070303;
}
.p-lp-works__img {
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-lp-works__img {
    height: auto;
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .p-lp-feature {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-feature__inner {
    text-align: center;
  }
}
.p-lp-feature__container {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__container {
    height: auto;
    padding-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-feature__item {
    width: 100%;
  }
}
.p-lp-feature__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__box {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-lp-feature__img {
  width: 56rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__img {
    display: none;
  }
}
.p-lp-feature__text--top p:first-of-type {
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 2.6666;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--top p:first-of-type {
    font-size: 1.8rem;
  }
}
.p-lp-feature__text--top p:nth-of-type(2) {
  font-size: 2.5rem;
  letter-spacing: 0;
  line-height: 1.92;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--top p:nth-of-type(2) {
    font-size: 2rem;
  }
}
.p-lp-feature__text--top p img {
  width: 22rem;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--top p img {
    width: 15rem;
  }
}
.p-lp-feature__text--top p:last-of-type {
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--top p:last-of-type {
    font-size: 1.4rem;
    margin-top: 0;
  }
}
.p-lp-feature__text--center {
  margin-top: 4rem;
}
.p-lp-feature__text--center p:first-of-type {
  font-size: 3rem;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--center p:first-of-type {
    font-size: 2rem;
  }
}
.p-lp-feature__text--center p:nth-of-type(2) {
  font-size: 3rem;
  letter-spacing: 0;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--center p:nth-of-type(2) {
    font-size: 2rem;
    margin-top: 0.5rem;
  }
}
.p-lp-feature__text--center p img {
  width: 12.7rem;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--center p img {
    width: 10.1rem;
  }
}
.p-lp-feature__text--center p:last-of-type {
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--center p:last-of-type {
    font-size: 1.4rem;
    margin-top: 0;
  }
}
.p-lp-feature__text--bottom {
  margin-top: 4rem;
}
.p-lp-feature__text--bottom p:first-of-type {
  font-size: 1.8rem;
  letter-spacing: 0;
}
.p-lp-feature__text--bottom p img {
  width: 10.8rem;
  margin: 0 1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--bottom p img {
    width: 8.7rem;
  }
}
.p-lp-feature__text--bottom p:last-of-type {
  font-size: 2.5rem;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--bottom p:last-of-type {
    font-size: 1.8rem;
  }
}
.p-lp-feature__text--bottom-two p {
  line-height: 1.2;
}
.p-lp-feature__text--bottom-two p img {
  width: 16.5rem;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__text--bottom-two p img {
    width: 10.8rem;
  }
}
.p-lp-feature__bg {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-lp-feature__bg {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .p-lp-feature-one {
    padding-top: 3rem;
  }
}

.p-lp-appli-relative {
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-lp-appli-bg-one {
    width: 82%;
    z-index: 10;
  }
}

@media screen and (max-width: 768px) {
  .p-lp-appli {
    padding-top: 12rem;
  }
}
.p-lp-appli__bg {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-lp-appli__container {
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .p-lp-appli-two {
    padding-top: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-appli-two__container {
    padding-top: 1rem;
  }
}

.p-lp-appli-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-lp-appli-box {
    height: auto;
    --side-gutter: 20px;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--side-gutter);
    padding-left: var(--side-gutter);
    max-width: calc(var(--inner-width) + var(--side-gutter) * 2);
  }
}
.p-lp-appli-box__item {
  font-size: 2rem;
  line-height: 2.25;
  letter-spacing: 0.01em;
}
.p-lp-appli-box__title {
  font-size: 3rem;
  letter-spacing: 0;
  font-weight: bold;
  line-height: 1.5;
}
.p-lp-appli-box__title span {
  font-size: 1.8rem;
  letter-spacing: 0;
  display: block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-appli-box__title span {
    font-size: 1.4rem !important;
    font-weight: normal;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }
}
.p-lp-appli-box__text {
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 2.5;
  margin-top: 5rem;
}

.p-lp-appli-box-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p-lp-appli-box-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.p-lp-appli-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46%;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .p-lp-appli-box {
    height: auto;
    width: 100%;
    margin-right: 0;
  }
}
.p-lp-appli-box__item {
  font-size: 2rem;
  line-height: 2.25;
  letter-spacing: 0.01em;
}
.p-lp-appli-box__title {
  font-size: 3rem;
  letter-spacing: 0;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-lp-appli-box__title {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.p-lp-appli-box__title span {
  font-size: 1.8rem;
  letter-spacing: 0;
  display: block;
  margin-bottom: 1rem;
}
.p-lp-appli-box__text {
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 2.5;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-lp-appli-box__text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 3rem;
  }
}

.p-lp-quality {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 100vh;
  background-color: #070303 !important;
}
@media screen and (max-width: 768px) {
  .p-lp-quality {
    height: auto;
    min-height: auto;
    background-color: #070303 !important;
    padding-top: 13.5rem;
    padding-bottom: 16.5rem;
  }
}
.p-lp-quality__heading {
  width: 60.4rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-lp-quality__heading {
    width: auto;
  }
}

.p-lp-quality-one__container {
  background: url(../img/bg_flight.jpg);
  background-size: cover;
}
.p-lp-quality-one__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-quality-one__text {
    height: auto;
  }
}
.p-lp-quality-one__text-orange-bold {
  font-weight: bold;
  color: #FB5D20;
}
.p-lp-quality-one__span {
  font-size: 20px;
  letter-spacing: 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-lp-quality-one__span {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-quality-one__span-left {
    font-size: 1.6rem;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
  }
}
.p-lp-quality-one__bold {
  font-size: 5rem;
  letter-spacing: 0em;
  line-height: 1.4;
  font-weight: bold;
  margin-top: 4rem;
}
.p-lp-quality-one__pc-text {
  margin-top: 1rem;
}

.p-lp-quality-two__container {
  background: url(../img/bg_flight.jpg);
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__inner {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
.p-lp-quality-two__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__flex {
    height: auto;
  }
}
.p-lp-quality-two__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__text {
    width: 100%;
  }
}
.p-lp-quality-two__text p:nth-of-type(2) {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 2rem;
}
.p-lp-quality-two__text p:last-of-type {
  margin-top: 4rem;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__text p:last-of-type {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.p-lp-quality-two__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-lp-quality-two__img {
  width: 21.8rem;
  max-width: 100%;
  margin-right: 10.7rem;
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__item a {
    font-size: 16px;
    letter-spacing: 0;
    padding: 1.95rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__item a span {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__item a img {
    width: 0.7rem;
    margin-right: 1rem;
  }
}
.p-lp-quality-two__item p {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.68;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-lp-quality-two__item p {
    font-size: 2rem;
    letter-spacing: 0em;
    text-align: center;
  }
}

.p-lp-test__container {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-lp-test__container {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
.p-lp-test__bg {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-lp-test__bg {
    width: 12rem;
    top: 3rem;
  }
}
.p-lp-test__title {
  font-size: 2.5rem;
  letter-spacing: 0;
  line-height: 1.36;
  text-align: center;
}
.p-lp-test__text-box {
  width: 100rem;
  max-width: 100%;
  margin: 0 auto;
}
.p-lp-test__text {
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 2;
  font-weight: 500;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-lp-test__text {
    font-size: 1.6rem;
  }
}
.p-lp-test__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-lp-test__inner {
    height: auto;
  }
}

.p-lp-test-box {
  width: 130rem;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 9.3rem;
}
@media screen and (max-width: 768px) {
  .p-lp-test-box {
    padding-top: 5rem;
  }
}
.p-lp-test-box__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -5rem;
  margin-top: -5rem;
}
.p-lp-test-box__item {
  width: 33.3333333333%;
  padding-left: 5rem;
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-lp-test-box__item {
    width: 100%;
  }
}
.p-lp-test-box__item p {
  text-align: center;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .p-lp-appli-five__container {
    padding-bottom: 10rem;
  }
}

.p-lp-test-one__container {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-lp-test-one__container {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

.p-lp-test-one-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-lp-test-one-box {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-lp-test-one-box__img {
  width: 60rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-lp-test-one-box__img {
    margin-top: 5rem;
  }
}
.p-lp-test-one-box__title {
  font-size: 3rem;
  letter-spacing: 0;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-lp-test-one-box__title {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.p-lp-test-one-box__title span {
  font-size: 1.8rem;
  letter-spacing: 0;
  display: block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-test-one-box__title span {
    font-size: 1.6rem;
    font-weight: normal;
  }
}

.p-lp-test-two__container {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-lp-test-two__container {
    width: 100%;
    padding-top: 10rem;
    background: url(../img/bg_space.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 13rem;
    background-position: center center;
    text-align: center;
    height: 640dpx;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-test-two__container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
}

.p-lp-test-two-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-lp-test-two-box {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-test-two-box__item {
    margin-top: 13rem;
  }
}
.p-lp-test-two-box__img {
  width: 50rem;
  max-width: 100%;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (max-width: 768px) {
  .p-lp-test-two-box__img {
    margin-top: 12rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
  }
}
.p-lp-test-two-box__title {
  font-size: 3rem;
  letter-spacing: 0;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-lp-test-two-box__title {
    font-size: 2rem;
    letter-spacing: 0.07em;
    line-height: 1.6;
  }
}
.p-lp-test-two-box__title span {
  font-size: 1.8rem;
  letter-spacing: 0;
  display: block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-lp-test-two-box__title span {
    font-size: 1.6rem;
    font-weight: normal;
  }
}
.p-lp-test-two-box__sub-text {
  font-size: 1.8rem;
  letter-spacing: 0;
  position: absolute;
  bottom: 3%;
  width: 100%;
  color: #fff;
  left: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-lp-test-two-box__sub-text {
    font-size: 1.6rem;
  }
}

.p-lp-contact__img {
  width: 51rem;
  max-width: 100%;
  margin: 0 auto;
}
.p-lp-contact__text {
  font-size: 2.5rem;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .p-lp-contact__text {
    font-size: 1.6rem;
  }
}
.p-lp-contact__header {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-lp-contact__header {
    width: 100%;
  }
}
.p-lp-contact__tel {
  width: 46rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-lp-contact__tel {
    margin: 0 auto;
    text-align: center;
  }
}
.p-lp-contact__tel span {
  display: block;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-lp-contact__tel span {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}
.p-lp-contact__text {
  font-size: 2.5rem;
  letter-spacing: 0em;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-lp-contact__text {
    font-size: 1.6rem;
    white-space: nowrap;
    margin-top: 3rem;
  }
}
.p-lp-contact__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6rem;
  width: 103rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-lp-contact__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-top: 2.6rem;
  }
}
.p-lp-contact__inner {
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-lp-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-lp-contact__item {
    margin-top: 4rem;
    width: 100%;
  }
}
.p-lp-contact__item a {
  font-size: 2.4rem;
  letter-spacing: 0;
  font-weight: bold;
  display: block;
  width: 100%;
  max-width: 50rem;
  min-width: 50rem;
  border: 1px solid #FA6322;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2.9rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-lp-contact__item a {
    max-width: auto;
    min-width: auto;
    padding: 1.4rem 0;
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}
@media not all and (max-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}
@media not all and (max-width: 480px) {
  .u-xs-only {
    display: none !important;
  }
}

.u-dib {
  display: inline-block !important;
}

.u-color-white {
  color: #fff !important;
}

.u-color-gray-dark {
  color: var(--c-gray-dark);
}

.u-color-accent {
  color: var(--c-accent);
}

.u-color-note {
  color: var(--c-note);
}

.u-tal {
  text-align: left !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

@media screen and (max-width: 768px) {
  .u-sp-tal {
    text-align: left !important;
  }
  .u-sp-tac {
    text-align: center !important;
  }
  .u-sp-tar {
    text-align: right !important;
  }
}
@media not all and (max-width: 768px) {
  .u-pc-tal {
    text-align: left !important;
  }
  .u-pc-tac {
    text-align: center !important;
  }
  .u-pc-tar {
    text-align: right !important;
  }
}
/* =====================
    margin / padding
===================== */
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mt-05em {
  margin-top: 0.5em !important;
}

.u-mt-1em {
  margin-top: 1em !important;
}

.u-mt-2em {
  margin-top: 2em !important;
}

.u-mt-3em {
  margin-top: 3em !important;
}

.u-mb-05em {
  margin-bottom: 0.5em !important;
}

.u-mb-1em {
  margin-bottom: 1em !important;
}

.u-mb-2em {
  margin-bottom: 2em !important;
}

.u-mb-3em {
  margin-bottom: 3em !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pl-1em {
  padding-left: 1em !important;
}

@media screen and (max-width: 768px) {
  .u-sp-mt-0 {
    margin-top: 0 !important;
  }
  .u-sp-mb-0 {
    margin-bottom: 0 !important;
  }
  .u-sp-mt-05em {
    margin-top: 0.5em !important;
  }
  .u-sp-mt-1em {
    margin-top: 1em !important;
  }
  .u-sp-mt-2em {
    margin-top: 2em !important;
  }
  .u-sp-mt-3em {
    margin-top: 3em !important;
  }
  .u-sp-mb-1em {
    margin-bottom: 1em !important;
  }
  .u-sp-mb-2em {
    margin-bottom: 2em !important;
  }
  .u-sp-mb-3em {
    margin-bottom: 3em !important;
  }
  .u-sp-pt-0 {
    padding-top: 0 !important;
  }
  .u-sp-pb-0 {
    padding-bottom: 0 !important;
  }
}
@media not all and (max-width: 768px) {
  .u-pc-mt-0 {
    margin-top: 0 !important;
  }
  .u-pc-mb-0 {
    margin-bottom: 0 !important;
  }
  .u-pc-mt-05em {
    margin-top: 0.5em !important;
  }
  .u-pc-mt-1em {
    margin-top: 1em !important;
  }
  .u-pc-mt-2em {
    margin-top: 2em !important;
  }
  .u-pc-mt-3em {
    margin-top: 3em !important;
  }
  .u-pc-mb-1em {
    margin-bottom: 1em !important;
  }
  .u-pc-mb-2em {
    margin-bottom: 2em !important;
  }
  .u-pc-mb-3em {
    margin-bottom: 3em !important;
  }
  .u-pc-pt-0 {
    padding-top: 0 !important;
  }
  .u-pc-pb-0 {
    padding-bottom: 0 !important;
  }
}
/* =====================
    max-width
===================== */
.u-max-w-10p {
  max-width: calc(10 * 1%) !important;
}

.u-max-w-20p {
  max-width: calc(20 * 1%) !important;
}

.u-max-w-30p {
  max-width: calc(30 * 1%) !important;
}

.u-max-w-40p {
  max-width: calc(40 * 1%) !important;
}

.u-max-w-50p {
  max-width: calc(50 * 1%) !important;
}

.u-max-w-60p {
  max-width: calc(60 * 1%) !important;
}

.u-max-w-70p {
  max-width: calc(70 * 1%) !important;
}

.u-max-w-80p {
  max-width: calc(80 * 1%) !important;
}

.u-max-w-90p {
  max-width: calc(90 * 1%) !important;
}

.u-max-w-100p {
  max-width: calc(100 * 1%) !important;
}

.u-max-w-auto {
  max-width: auto !important;
}

/* =====================
    font-size
===================== */
.u-fz-xs {
  font-size: 0.75em !important;
}

.u-fz-sm {
  font-size: 0.875em !important;
}

.u-fz-smaller {
  font-size: 0.9375em !important;
}

.u-fz-md {
  font-size: 1.125em !important;
}

.u-fz-lg {
  font-size: 1.25em !important;
}

.u-fz-xl {
  font-size: 1.5em !important;
}

.u-fz-xxl {
  font-size: 1.75em !important;
}

@media screen and (max-width: 768px) {
  .u-sp-fz-1em {
    font-size: 1em !important;
  }
  .u-sp-fz-xs {
    font-size: 0.75em !important;
  }
  .u-sp-fz-sm {
    font-size: 0.875em !important;
  }
  .u-sp-fz-smaller {
    font-size: 0.9375em !important;
  }
  .u-sp-fz-md {
    font-size: 1.125em !important;
  }
  .u-sp-fz-lg {
    font-size: 1.25em !important;
  }
  .u-sp-fz-xl {
    font-size: 1.5em !important;
  }
  .u-sp-fz-xxl {
    font-size: 1.75em !important;
  }
}
.u-fw-n {
  font-weight: normal !important;
}

.u-fw-m {
  font-weight: 500 !important;
}

.u-fw-b {
  font-weight: 600 !important;
}

.u-lh-15 {
  line-height: 1.5 !important;
}

.u-lh-20 {
  line-height: 2 !important;
}

.u-ls-0 {
  letter-spacing: 0 !important;
}

.u-underline {
  text-decoration: underline;
}

.u-z-index-30 {
  z-index: 30;
}

.u-z-index-29 {
  z-index: 29;
}

.u-z-index-28 {
  z-index: 28;
}

.u-z-index-27 {
  z-index: 27;
}

.u-z-index-26 {
  z-index: 26;
}

.u-z-index-25 {
  z-index: 25;
}

.u-z-index-24 {
  z-index: 24;
}

.u-z-index-23 {
  z-index: 23;
}

.u-z-index-22 {
  z-index: 22;
}

.u-z-index-21 {
  z-index: 21;
}

.u-z-index-20 {
  z-index: 20;
}

.u-z-index-19 {
  z-index: 19;
}

.u-z-index-18 {
  z-index: 18;
}

.u-z-index-17 {
  z-index: 17;
}

.u-z-index-16 {
  z-index: 16;
}

.u-z-index-15 {
  z-index: 15;
}

.u-z-index-14 {
  z-index: 14;
}

.u-z-index-13 {
  z-index: 13;
}

.u-z-index-12 {
  z-index: 12;
}

.u-z-index-11 {
  z-index: 11;
}

.u-z-index-10 {
  z-index: 10;
}

.u-z-index-9 {
  z-index: 9;
}

.u-z-index-8 {
  z-index: 8;
}

.u-z-index-7 {
  z-index: 7;
}

.u-z-index-6 {
  z-index: 6;
}

.u-z-index-5 {
  z-index: 5;
}

.u-z-index-4 {
  z-index: 4;
}

.u-z-index-3 {
  z-index: 3;
}

.u-z-index-2 {
  z-index: 2;
}

.u-z-index-1 {
  z-index: 1;
}

.u-z-index-0 {
  z-index: 0;
}/*# sourceMappingURL=style.css.map */