@charset "UTF-8";
/* ///////////////////////////////////////////
  style.scss
/////////////////////////////////////////// */
/*====================================
  font
=====================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
/*====================================
  common
=====================================*/
.header {
  padding: 24px 2.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
@media (max-width: 1080px) {
  .header {
    padding: 20px 2.5%;
  }
}
@media (max-width: 599px) {
  .header {
    padding: 16x 2.5%;
  }
}
.header__left {
  background-color: #fff;
  padding: 1.3888888889vw;
  border-radius: 0.462962963vw;
  box-shadow: 2px 3px 3px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 599px) {
  .header__left {
    padding: 16px;
    border-radius: 6px;
  }
}
.header__left img {
  max-width: 17.0138888889vw;
}
@media (max-width: 599px) {
  .header__left img {
    max-width: 150px;
  }
}
.header .hamburger {
  width: 7.1759259259vw;
  height: 7.1759259259vw;
  border-radius: 3.7037037037vw;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: flex;
  gap: 0.6365740741vw;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 3px 3px 0 rgba(0, 0, 0, 0.3);
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 999;
}
@media (max-width: 1080px) {
  .header .hamburger {
    width: 100px;
    height: 100px;
    gap: 9px;
    border-radius: 100px;
  }
}
@media (max-width: 599px) {
  .header .hamburger {
    width: 80px;
    height: 80px;
    gap: 8px;
  }
}
.header .hamburger:hover {
  transform: scale(0.9);
  transition: all 0.3s;
}
.header .hamburger span {
  background-color: #000;
  display: inline-block;
  width: 2.7777777778vw;
  height: 0.1157407407vw;
  transition: all 0.3s;
}
@media (max-width: 1080px) {
  .header .hamburger span {
    width: 40px;
  }
}
@media (max-width: 599px) {
  .header .hamburger span {
    width: 32px;
  }
}
.header .hamburger span:nth-of-type(1) {
  margin-top: 20px;
}
@media (max-width: 1080px) {
  .header .hamburger span:nth-of-type(1) {
    margin-top: 16px;
  }
}
@media (max-width: 599px) {
  .header .hamburger span:nth-of-type(1) {
    margin-top: 12px;
  }
}
.header .hamburger p {
  margin: initial;
  font-family: "Unbounded", sans-serif;
  font-size: 0.6944444444vw;
  margin-top: 0.5208333333vw;
  line-height: 1;
}
@media (max-width: 1080px) {
  .header .hamburger p {
    font-size: 11px;
    margin-top: 8px;
  }
}
@media (max-width: 599px) {
  .header .hamburger p {
    font-size: 10px;
    margin-top: 6px;
  }
}
.header .hamburger.is-open span {
  transition: all 0.3s;
}
.header .hamburger.is-open span:nth-of-type(1) {
  transform: translateY(13px) rotate(45deg);
}
@media (max-width: 1080px) {
  .header .hamburger.is-open span:nth-of-type(1) {
    transform: translateY(11px) rotate(45deg);
  }
}
@media (max-width: 599px) {
  .header .hamburger.is-open span:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
  }
}
.header .hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.header .hamburger.is-open span:nth-of-type(3) {
  transform: translateY(-13px) rotate(-45deg);
}
@media (max-width: 1080px) {
  .header .hamburger.is-open span:nth-of-type(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}
@media (max-width: 599px) {
  .header .hamburger.is-open span:nth-of-type(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.header__nav nav {
  background-color: #FFFDE9;
  width: 400px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: end;
  padding: 0 2%;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
@media (max-width: 1080px) {
  .header__nav nav {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .header__nav nav {
    width: 70%;
  }
}
.header__nav nav figure {
  max-width: 256px;
  margin-bottom: 40px;
}
@media (max-width: 1080px) {
  .header__nav nav figure {
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .header__nav nav figure {
    margin-bottom: 26px;
  }
}
.header__nav nav ul {
  display: flex;
  flex-flow: column;
  align-items: end;
  gap: 16px;
  padding: initial;
  margin: initial;
  width: 100%;
}
.header__nav nav ul li {
  list-style: none;
  padding: initial;
  margin: initial;
  width: 100%;
}
.header__nav nav ul li a {
  font-size: 20px;
  padding: 8px 0;
  display: block;
  border-bottom: 2px dashed rgba(255, 208, 0, 0.5);
  position: relative;
}
@media (max-width: 1080px) {
  .header__nav nav ul li a {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .header__nav nav ul li a {
    font-size: 16px;
  }
}
.header__nav nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #FFD000;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header__nav nav ul li a:hover::after {
  transform: scale(1, 1);
}
.header__nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__nav.is-open nav {
  transform: translateX(0);
}

/*====================================
  フッター
=====================================*/
.footer {
  background-color: #fff;
  padding: 40px 0 20px;
}
@media (max-width: 1080px) {
  .footer {
    padding: 32px 0 18px;
  }
}
.footer a {
  transition: all 0.3s;
}
.footer a:hover {
  transition: all 0.3s;
  opacity: 0.8;
}
.footer ul {
  margin: initial;
  padding: initial;
}
.footer ul li {
  margin: initial;
  padding: initial;
  list-style: none;
}
@media (max-width: 599px) {
  .footer ul li img {
    max-width: 200px;
  }
}
.footer ul:nth-of-type(1) {
  display: flex;
  align-items: center;
  gap: 64px;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 1080px) {
  .footer ul:nth-of-type(1) {
    gap: 32px;
    margin-bottom: 32px;
  }
}
@media (max-width: 599px) {
  .footer ul:nth-of-type(1) {
    gap: 24px;
    margin-bottom: 24px;
    flex-flow: column;
  }
}
.footer ul:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 1080px) {
  .footer ul:nth-of-type(2) {
    margin-bottom: 14px;
  }
}
@media (max-width: 599px) {
  .footer ul:nth-of-type(2) {
    margin-bottom: 12px;
  }
}
.footer ul:nth-of-type(2) li {
  padding: 0 16px;
}
@media (max-width: 1080px) {
  .footer ul:nth-of-type(2) li {
    padding: 0 14px;
  }
}
@media (max-width: 599px) {
  .footer ul:nth-of-type(2) li {
    padding: 0 12px;
  }
}
.footer ul:nth-of-type(2) li:nth-of-type(1) {
  border-right: 1px solid #333333;
}
.footer ul:nth-of-type(2) li a {
  font-size: 12px;
}
@media (max-width: 1080px) {
  .footer ul:nth-of-type(2) li a {
    font-size: 11px;
  }
}
@media (max-width: 599px) {
  .footer ul:nth-of-type(2) li a {
    font-size: 10px;
  }
}
.footer small {
  text-align: center;
  display: block;
  font-size: 12px;
}
@media (max-width: 1080px) {
  .footer small {
    font-size: 11px;
  }
}
@media (max-width: 599px) {
  .footer small {
    font-size: 10px;
  }
}

/*====================================
  config
=====================================*/
html,
body {
  font-family: "Noto Sans JP", sans-serif;
}

figure {
  margin: initial;
}

h1 {
  margin: initial;
}

p,
a,
span,
div,
dl,
dd,
dt,
ul,
li,
h1,
h2,
h3,
h4,
h5 {
  color: #333333;
}

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

a {
  text-decoration: none;
}

p {
  line-height: 1.8;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* リセットCSS
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 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: 1em;
  /* 2 */
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -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: 1em;
  /* 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 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;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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 odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * 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. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* 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;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
}

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.cf:after {
  clear: both;
}

/*====================================
  page
=====================================*/
/*====================================
  共通
=====================================*/
body {
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  p {
    font-size: 15px;
  }
}
@media (max-width: 599px) {
  p {
    font-size: 14px;
  }
}

.hidePC {
  display: none;
}
@media (max-width: 599px) {
  .hidePC {
    display: block;
  }
}

@media (max-width: 599px) {
  .hideSP {
    display: none;
  }
}

.inner {
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
}

.main {
  background-color: #fff;
  margin-top: 100vh;
  margin-top: 100dvh;
}

.section {
  padding: 100px 0;
}
@media (max-width: 1080px) {
  .section {
    padding: 80px 0;
  }
}
@media (max-width: 599px) {
  .section {
    padding: 64px 0;
  }
}

.ttl__h2 {
  display: flex;
  flex-flow: column;
  position: relative;
  padding-left: 24px;
  margin: initial;
}
@media (max-width: 1080px) {
  .ttl__h2 {
    padding-left: 22px;
  }
}
@media (max-width: 599px) {
  .ttl__h2 {
    width: 100%;
    padding-left: 16px;
  }
}
.ttl__h2::before {
  content: "";
  height: 100%;
  width: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(-10deg) translateY(-50%);
}
@media (max-width: 599px) {
  .ttl__h2::before {
    left: 2%;
  }
}
.ttl__h2 span:nth-of-type(1) {
  font-family: "Inter", sans-serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1080px) {
  .ttl__h2 span:nth-of-type(1) {
    font-size: 64px;
  }
}
@media (max-width: 599px) {
  .ttl__h2 span:nth-of-type(1) {
    font-size: 40px;
  }
}
.ttl__h2 span:nth-of-type(2) {
  font-size: 32px;
  font-weight: 700;
  padding-left: 24px;
  margin-top: 8px;
}
@media (max-width: 1080px) {
  .ttl__h2 span:nth-of-type(2) {
    font-size: 26px;
    padding-left: 22px;
    margin-top: 6px;
  }
}
@media (max-width: 599px) {
  .ttl__h2 span:nth-of-type(2) {
    font-size: 18px;
    padding-left: 16px;
    margin-top: 4px;
  }
}
.ttl__h2--ach::before {
  background-color: #FF0020;
}
.ttl__h2--ach span:nth-of-type(1) {
  color: #FF0020;
}
.ttl__h2--cost::before {
  background-color: #009CE3;
}
.ttl__h2--cost span:nth-of-type(1) {
  color: #009CE3;
}
.ttl__h2--system::before {
  background-color: #FFD000;
}
.ttl__h2--system span:nth-of-type(1) {
  color: #FFD000;
}

/*====================================
  FV
=====================================*/
.fv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: radial-gradient(119.66% 50% at 50% 50%, #FCFCFC 0%, #DEDEDE 100%);
}
@media (max-width: 1080px) {
  .fv {
    height: 720px;
  }
}
@media (max-width: 599px) {
  .fv {
    height: 560px;
  }
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/fv.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(var(--fv-scale, 1.16));
  transition: transform 0.1s linear;
  z-index: -1;
  opacity: var(--fv-opacity, 1);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  will-change: transform, opacity;
}
.fv h1 {
  position: absolute;
  top: 27%;
  left: 50%;
  transform: translateX(-50%);
  width: 30.5555555556vw;
  margin: initial;
  opacity: var(--fv-ui-opacity, 1);
  transition: opacity 0.6s ease-out;
  will-change: opacity;
}
@media (max-width: 1080px) {
  .fv h1 {
    width: 100%;
    max-width: 360px;
  }
}
@media (max-width: 599px) {
  .fv h1 {
    max-width: 240px;
  }
}
.fv h1 img {
  width: 100%;
}
.fv__cta {
  position: absolute;
  width: 12.5578703704vw;
  top: 52%;
  left: 64%;
}
@media (max-width: 1080px) {
  .fv__cta {
    width: 100%;
    max-width: 360px;
    left: 50%;
  }
}
@media (max-width: 599px) {
  .fv__cta {
    max-width: 240px;
  }
}
.fv__cta a {
  display: block;
  transition: all 0.3s;
}
@media (max-width: 1080px) {
  .fv__cta a {
    max-width: 140px;
    margin-left: auto;
    margin-right: -36px;
  }
}
@media (max-width: 599px) {
  .fv__cta a {
    max-width: 110px;
    margin-left: auto;
    margin-right: -50px;
  }
}
.fv__cta a:hover {
  transform: scale(1.1);
  transition: all 0.3s;
}
.fv__cta a img {
  width: 100%;
}
.fv__scroll {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%);
  width: 6.0185185185vw;
}
@media (max-width: 1080px) {
  .fv__scroll {
    top: 77%;
    width: 104px;
  }
}
@media (max-width: 599px) {
  .fv__scroll {
    top: 75%;
  }
}
.fv__scroll i {
  display: block;
  width: 100%;
}
@media (max-width: 599px) {
  .fv__scroll i {
    max-width: 64px;
  }
}
.fv__scroll i img {
  width: 100%;
}
.fv__scroll span {
  font-size: 0.9837962963vw;
}
@media (max-width: 1080px) {
  .fv__scroll span {
    font-size: 15px;
  }
}
@media (max-width: 599px) {
  .fv__scroll span {
    font-size: 14px;
  }
}
.fv h1, .fv__cta, .fv__scroll {
  transform: translate(-50%, var(--fv-ui-shift, 0px)) scale(var(--fv-ui-scale, 1));
  /* ★追加：UIも拡大する */
  opacity: var(--fv-ui-opacity, 1);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  will-change: transform, opacity;
}

/*====================================
  lead
=====================================*/
.lead {
  margin: 0 auto;
  background-color: #fff;
  max-width: 1680px;
  width: 95%;
  position: relative;
}
@media (max-width: 1080px) {
  .lead {
    margin-top: 80vh;
  }
}
.lead figure {
  display: inline-block;
  margin: initial;
  width: 74.7%;
  height: 674px;
  max-width: 1256px;
}
@media (max-width: 1080px) {
  .lead figure {
    width: 80%;
    height: 560px;
  }
}
@media (max-width: 599px) {
  .lead figure {
    height: 400px;
  }
}
.lead figure img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1080px) {
  .lead figure img {
    border-radius: 14px;
  }
}
@media (max-width: 599px) {
  .lead figure img {
    border-radius: 12px;
  }
}
.lead__content {
  max-width: 700px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 64px 48px;
  border-radius: 16px;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
@media (max-width: 1080px) {
  .lead__content {
    width: 85%;
    padding: 56px 40px;
    border-radius: 14px;
  }
}
@media (max-width: 599px) {
  .lead__content {
    padding: 40px 28px;
    border-radius: 12px;
  }
}
.lead__content h2 {
  margin: initial;
}
.lead__content p {
  margin: initial;
  font-size: 20px;
  font-weight: 400;
  line-height: 180%;
  font-feature-settings: "palt";
}
@media (max-width: 1080px) {
  .lead__content p {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .lead__content p {
    font-size: 14px;
  }
}
.lead .lead_cta {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  max-width: 254px;
}
@media (max-width: 599px) {
  .lead .lead_cta {
    right: -138px;
    bottom: 10px;
  }
}
.lead .lead_cta img {
  width: 100%;
}
@media (max-width: 599px) {
  .lead .lead_cta img {
    width: 50%;
  }
}
.lead .lead_cta {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  max-width: 254px;
}
@media (max-width: 1080px) {
  .lead .lead_cta {
    max-width: 180px;
  }
}
@media (max-width: 599px) {
  .lead .lead_cta {
    right: 5%;
    bottom: 5%;
    max-width: 128px;
  }
}
.lead .lead_cta img {
  width: 100%;
}
.lead figure, .lead__content {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 600ms ease-out;
}
.lead figure {
  transform: translateX(-40px);
}
.lead__content {
  transform: translateX(40px);
}
.lead.is-inview figure,
.lead.is-inview .lead__content {
  transform: translateX(0);
  opacity: 1;
}
.lead.is-inview figure {
  transition-delay: 40ms;
}
.lead.is-inview .lead__content {
  transition-delay: 120ms;
}
@media (prefers-reduced-motion: reduce) {
  .lead figure, .lead__content {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/*====================================
  btn
=====================================*/
.btn__wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 599px) {
  .btn__wrap {
    flex-flow: column;
  }
}
.btn__wrap::before {
  content: "";
  width: 394px;
  height: 373px;
  display: block;
  background-image: url(../img/btn-point-ttl.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: -2.5%;
  position: relative;
  z-index: 10;
}
@media (min-width: 1728px) {
  .btn__wrap::before {
    margin-right: -54px;
  }
}
@media (max-width: 1080px) {
  .btn__wrap::before {
    width: 320px;
    height: 303px;
    margin-right: initial;
  }
}
@media (max-width: 599px) {
  .btn__wrap::before {
    width: 256px;
    height: auto;
    aspect-ratio: 394/373;
    margin-right: auto;
  }
}
.btn ul {
  display: flex;
  flex-flow: nowrap;
  align-content: center;
  gap: 0.8101851852vw;
  padding: initial;
  margin: initial;
}
@media (min-width: 1728px) {
  .btn ul {
    gap: 14px;
  }
}
@media (max-width: 1080px) {
  .btn ul {
    flex-flow: column;
  }
}
@media (max-width: 599px) {
  .btn ul {
    width: 80%;
  }
}
.btn ul li {
  box-shadow: 0.116vw 0.174vw 0.174vw 0 rgba(0, 0, 0, 0.3);
  padding: 0.347vw;
  margin: initial;
  list-style: none;
  border-radius: 0.463vw;
  transition: all 0.3s;
}
@media (min-width: 1728px) {
  .btn ul li {
    box-shadow: 2px 3px 3px 0 rgba(0, 0, 0, 0.3);
    padding: 6px;
    border-radius: 8px;
  }
}
@media (max-width: 1080px) {
  .btn ul li {
    padding: 5px;
  }
}
@media (max-width: 599px) {
  .btn ul li {
    padding: 4px;
    width: 100%;
  }
}
.btn ul li:hover {
  transform: rotate(5deg);
  transition: all 0.3s;
}
.btn ul li a {
  display: block;
  border-radius: 0.347vw;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.926vw;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' shape-rendering='crispEdges'><g stroke='%23dcdcdc' stroke-width='1' fill='none' stroke-dasharray='3 3'><path d='M 0 0 V 20'/><path d='M 0 0 H 20'/></g></svg>");
  background-size: 1.157vw 1.157vw;
  background-repeat: repeat;
  padding: 1.042vw 0.926vw;
  box-sizing: border-box;
}
@media (min-width: 1728px) {
  .btn ul li a {
    border-radius: 6px;
    gap: 16px;
    background-size: 20px 20px;
    padding: 18px 16px;
  }
}
@media (max-width: 1080px) {
  .btn ul li a {
    border-radius: 5px;
    gap: 14px;
    background-size: 18px 18px;
    background-repeat: repeat;
    padding: 16px 14px;
  }
}
@media (max-width: 599px) {
  .btn ul li a {
    border-radius: 4px;
    gap: 12px;
    background-size: 16px 16px;
    background-repeat: repeat;
    padding: 14px 12px;
    justify-content: space-between;
  }
}
.btn ul li a::after {
  content: "";
  width: 1.62vw;
  height: 1.968vw;
  aspect-ratio: 14/17;
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1728px) {
  .btn ul li a::after {
    width: 28px;
    height: 34px;
  }
}
@media (max-width: 1080px) {
  .btn ul li a::after {
    width: 24px;
    height: 30px;
  }
}
@media (max-width: 599px) {
  .btn ul li a::after {
    width: 20px;
    height: auto;
    aspect-ratio: 28/34;
  }
}
.btn ul li a div {
  font-family: "Unbounded", sans-serif;
  font-size: 2.374vw;
  font-weight: 900;
  line-height: 1;
  display: flex;
  flex-flow: column;
}
@media (min-width: 1728px) {
  .btn ul li a div {
    font-size: 41px;
  }
}
@media (max-width: 1080px) {
  .btn ul li a div {
    font-size: 36px;
  }
}
@media (max-width: 599px) {
  .btn ul li a div {
    font-size: 28px;
  }
}
.btn ul li a div span {
  font-size: 1.101vw;
}
@media (min-width: 1728px) {
  .btn ul li a div span {
    font-size: 19px;
  }
}
@media (max-width: 1080px) {
  .btn ul li a div span {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .btn ul li a div span {
    font-size: 12.5px;
  }
}
.btn ul li a p {
  width: 10.648vw;
  font-size: 1.62vw;
  line-height: 1;
  font-feature-settings: "palt";
  font-weight: 900;
  margin: initial;
}
@media (min-width: 1728px) {
  .btn ul li a p {
    width: 184px;
    font-size: 28px;
  }
}
@media (max-width: 1080px) {
  .btn ul li a p {
    width: 172px;
    font-size: 26px;
  }
}
@media (max-width: 599px) {
  .btn ul li a p {
    width: initial;
    font-size: 24px;
  }
}
.btn ul li:nth-of-type(1) a {
  border: 0.347vw solid #FF0020;
}
@media (min-width: 1728px) {
  .btn ul li:nth-of-type(1) a {
    border: 6px solid #FF0020;
  }
}
@media (max-width: 1080px) {
  .btn ul li:nth-of-type(1) a {
    border: 5px solid #FF0020;
  }
}
@media (max-width: 599px) {
  .btn ul li:nth-of-type(1) a {
    border: 4px solid #FF0020;
  }
}
.btn ul li:nth-of-type(1) a::after {
  background-image: url(../img/btn-arrow-red.svg);
}
.btn ul li:nth-of-type(1) a div {
  color: #FF0020;
}
.btn ul li:nth-of-type(1) a div span {
  color: #FF0020;
}
.btn ul li:nth-of-type(2) a {
  border: 0.347vw solid #009CE3;
}
@media (min-width: 1728px) {
  .btn ul li:nth-of-type(2) a {
    border: 6px solid #009CE3;
  }
}
@media (max-width: 1080px) {
  .btn ul li:nth-of-type(2) a {
    border: 5px solid #009CE3;
  }
}
@media (max-width: 599px) {
  .btn ul li:nth-of-type(2) a {
    border: 4px solid #009CE3;
  }
}
.btn ul li:nth-of-type(2) a::after {
  background-image: url(../img/btn-arrow-blue.svg);
}
.btn ul li:nth-of-type(2) a div {
  color: #009CE3;
}
.btn ul li:nth-of-type(2) a div span {
  color: #009CE3;
}
.btn ul li:nth-of-type(3) a {
  border: 0.347vw solid #FFD000;
}
@media (min-width: 1728px) {
  .btn ul li:nth-of-type(3) a {
    border: 0.347vw solid #FFD000;
  }
}
@media (max-width: 1080px) {
  .btn ul li:nth-of-type(3) a {
    border: 5px solid #FFD000;
  }
}
@media (max-width: 599px) {
  .btn ul li:nth-of-type(3) a {
    border: 4px solid #FFD000;
  }
}
.btn ul li:nth-of-type(3) a::after {
  background-image: url(../img/btn-arrow-yellow.svg);
}
.btn ul li:nth-of-type(3) a div {
  color: #FFD000;
}
.btn ul li:nth-of-type(3) a div span {
  color: #FFD000;
}

/*====================================
  ach
=====================================*/
.ach__block {
  margin-top: 80px;
  display: flex;
  gap: 60px;
  padding: 70px 0;
  position: relative;
}
@media (max-width: 1080px) {
  .ach__block {
    margin-top: 52px;
    display: flex;
    gap: 40px;
    padding: 64px 0;
  }
}
@media (max-width: 599px) {
  .ach__block {
    margin-top: 48px;
    display: flex;
    gap: 32px;
    padding: 48px 0;
    flex-flow: column;
  }
}
.ach__block::before {
  content: "";
  height: 100%;
  display: block;
  background-color: #F5F5F5;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  z-index: 0;
}
.ach__block:nth-of-type(1)::before {
  width: 60vw;
}
.ach__block:nth-of-type(2) {
  flex-flow: row-reverse;
}
@media (max-width: 599px) {
  .ach__block:nth-of-type(2) {
    flex-flow: column;
  }
}
.ach__block:nth-of-type(2) .ach__block-right img {
  margin-left: -30px;
  width: 100%;
}
@media (max-width: 1080px) {
  .ach__block:nth-of-type(2) .ach__block-right img {
    margin-left: initial;
  }
}
.ach__block:nth-of-type(2)::before {
  width: 67vw;
  clip-path: polygon(0 0, 90.5% 0, 100% 100%, 0% 100%);
}
.ach__block:nth-of-type(3)::before {
  width: 74.5vw;
  clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
}
.ach__block-left {
  width: calc(50% - 60px);
  position: relative;
  z-index: 1;
}
@media (max-width: 1080px) {
  .ach__block-left {
    width: calc(50% - 40px);
  }
}
@media (max-width: 599px) {
  .ach__block-left {
    width: 100%;
  }
}
.ach__block-left h3 {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: initial;
  margin-bottom: 56px;
}
@media (max-width: 1080px) {
  .ach__block-left h3 {
    gap: 32px;
    margin-bottom: 48px;
  }
}
@media (max-width: 599px) {
  .ach__block-left h3 {
    gap: 20px;
    margin-bottom: 24px;
  }
}
.ach__block-left h3 i {
  color: #FF0020;
  font-family: "Inter", sans-serif;
  font-size: 72px;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 1080px) {
  .ach__block-left h3 i {
    font-size: 64px;
  }
}
@media (max-width: 599px) {
  .ach__block-left h3 i {
    font-size: 40px;
  }
}
.ach__block-left h3 .text {
  display: flex;
  flex-flow: column;
  color: #FF0020;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: normal;
  gap: 8px;
  line-height: 1;
}
@media (max-width: 1080px) {
  .ach__block-left h3 .text {
    font-size: 13px;
    gap: 7px;
  }
}
@media (max-width: 599px) {
  .ach__block-left h3 .text {
    font-size: 12px;
    gap: 6px;
  }
}
.ach__block-left h3 .text .ja {
  color: #FF0020;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1080px) {
  .ach__block-left h3 .text .ja {
    font-size: 22px;
  }
}
@media (max-width: 599px) {
  .ach__block-left h3 .text .ja {
    font-size: 20px;
  }
}
.ach__block-left p {
  margin: initial;
  padding: 26px 0;
  border-bottom: 1px solid #FF0020;
}
@media (max-width: 1080px) {
  .ach__block-left p {
    padding: 22px 0;
  }
}
@media (max-width: 599px) {
  .ach__block-left p {
    padding: 16px 0;
  }
}
.ach__block-left p:nth-last-of-type(1) {
  border-bottom: none;
}
.ach__block-right {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 599px) {
  .ach__block-right {
    width: 100%;
  }
}

/*====================================
  cost
=====================================*/
.cost__lead {
  margin-top: 32px;
  margin-bottom: 140px;
}
@media (max-width: 1080px) {
  .cost__lead {
    margin-top: 28px;
    margin-bottom: 110px;
  }
}
@media (max-width: 599px) {
  .cost__lead {
    margin-top: 20px;
    margin-bottom: 80px;
  }
}
.cost__01 {
  background-color: #EBF2F5;
}
.cost__01--ttl {
  padding-bottom: 80px;
}
@media (max-width: 1080px) {
  .cost__01--ttl {
    padding-bottom: 64px;
  }
}
@media (max-width: 599px) {
  .cost__01--ttl {
    padding-bottom: 48px;
  }
}
.cost__01--ttl h3 {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
}
@media (max-width: 1080px) {
  .cost__01--ttl h3 {
    gap: 38px;
    flex-flow: wrap;
    align-items: start;
  }
}
@media (max-width: 599px) {
  .cost__01--ttl h3 {
    gap: 28px;
  }
}
.cost__01--ttl h3::before {
  content: "";
  width: calc(50vw - 590px);
  height: 100%;
  display: block;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
  background-image: linear-gradient(90deg, #009CE3 22.28%, #007DD6 100%);
  position: absolute;
  top: 50%;
  left: calc(50% - 50vw);
  transform: translateY(-50%);
}
@media (max-width: 1080px) {
  .cost__01--ttl h3::before {
    left: calc(50% - 50vw);
    width: 20%;
    height: 52px;
    position: relative;
    transform: initial;
  }
}
@media (max-width: 599px) {
  .cost__01--ttl h3::before {
    width: 40%;
    height: 40px;
  }
}
.cost__01--ttl h3 > span:nth-of-type(1) {
  width: 187px;
}
@media (max-width: 1080px) {
  .cost__01--ttl h3 > span:nth-of-type(1) {
    width: 160px;
  }
}
@media (max-width: 599px) {
  .cost__01--ttl h3 > span:nth-of-type(1) {
    width: 128px;
  }
}
.cost__01--ttl h3 > span:nth-of-type(2) {
  width: calc(100% - 187px + 28px);
  position: relative;
  padding: 16px;
}
@media (max-width: 1080px) {
  .cost__01--ttl h3 > span:nth-of-type(2) {
    width: 100%;
    padding: 14px;
  }
}
@media (max-width: 599px) {
  .cost__01--ttl h3 > span:nth-of-type(2) {
    padding: 12px;
  }
}
.cost__01--ttl h3 > span:nth-of-type(2)::before {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-left: 2px solid #009CE3;
  border-right: 2px solid #009CE3;
  transform: skew(10deg);
}
.cost__01--ttl h3 > span:nth-of-type(2) span {
  color: #009CE3;
  font-size: 32px;
  font-weight: 700;
  z-index: 1;
  position: relative;
  display: block;
  text-align: center;
}
@media (max-width: 1080px) {
  .cost__01--ttl h3 > span:nth-of-type(2) span {
    font-size: 28px;
  }
}
@media (max-width: 599px) {
  .cost__01--ttl h3 > span:nth-of-type(2) span {
    font-size: 18px;
  }
}
.cost__01--ttl p {
  margin-top: 40px;
  margin-bottom: initial;
}
@media (max-width: 1080px) {
  .cost__01--ttl p {
    margin-top: 32px;
  }
}
@media (max-width: 599px) {
  .cost__01--ttl p {
    margin-top: 24px;
  }
}
.cost__01--block {
  padding: 80px 0;
  position: relative;
  margin-bottom: 80px;
}
@media (max-width: 1080px) {
  .cost__01--block {
    padding: 64px 0;
    margin-bottom: 64px;
  }
}
@media (max-width: 599px) {
  .cost__01--block {
    padding: 48px 0;
    margin-bottom: 48px;
  }
}
.cost__01--block:nth-last-of-type(1) {
  margin-bottom: initial;
}
.cost__01--block::before {
  content: "";
  background-color: #fff;
  width: 70vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
}
.cost__01--block h4 {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: initial;
  margin-bottom: 58px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1080px) {
  .cost__01--block h4 {
    gap: 22px;
    margin-bottom: 48px;
  }
}
@media (max-width: 599px) {
  .cost__01--block h4 {
    gap: 16px;
    margin-bottom: 24px;
    flex-flow: column;
    align-items: start;
  }
}
.cost__01--block h4 span {
  display: block;
}
.cost__01--block h4 span:nth-of-type(1) {
  background-image: linear-gradient(90deg, #009CE3 22.28%, #007DD6 100%);
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
  padding: 6px 20px 5px 10px;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1080px) {
  .cost__01--block h4 span:nth-of-type(1) {
    padding: 5px 18px 4px 8px;
    font-size: 19px;
  }
}
@media (max-width: 599px) {
  .cost__01--block h4 span:nth-of-type(1) {
    font-size: 18px;
  }
}
.cost__01--block h4 span:nth-of-type(2) {
  color: #009CE3;
  font-weight: 500;
  font-size: 32px;
}
@media (max-width: 1080px) {
  .cost__01--block h4 span:nth-of-type(2) {
    font-size: 28px;
  }
}
@media (max-width: 599px) {
  .cost__01--block h4 span:nth-of-type(2) {
    font-size: 24px;
  }
}
.cost__01--content {
  display: flex;
  align-items: start;
  gap: 48px;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .cost__01--content {
    gap: 36px;
  }
}
@media (max-width: 599px) {
  .cost__01--content {
    gap: 24px;
    flex-flow: column;
  }
}
.cost__01--content-left {
  width: calc(38% - 24px);
  position: relative;
  z-index: 1;
}
@media (max-width: 1080px) {
  .cost__01--content-left {
    width: calc(38% - 18px);
  }
}
@media (max-width: 599px) {
  .cost__01--content-left {
    width: 100%;
  }
}
.cost__01--content-right {
  width: calc(62% - 24px);
  position: relative;
  z-index: 1;
}
@media (max-width: 1080px) {
  .cost__01--content-right {
    width: calc(62% - 18px);
  }
}
@media (max-width: 599px) {
  .cost__01--content-right {
    width: 100%;
  }
}
.cost__02 {
  background-color: #EBF2F5;
}
.cost__02--ttl {
  padding-bottom: 80px;
}
@media (max-width: 1080px) {
  .cost__02--ttl {
    padding-bottom: 64px;
  }
}
@media (max-width: 599px) {
  .cost__02--ttl {
    padding-bottom: 48px;
  }
}
.cost__02--ttl h3 {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
}
@media (max-width: 1080px) {
  .cost__02--ttl h3 {
    gap: 38px;
    flex-flow: wrap;
    align-items: start;
  }
}
@media (max-width: 599px) {
  .cost__02--ttl h3 {
    gap: 28px;
  }
}
.cost__02--ttl h3::before {
  content: "";
  width: calc(50vw - 590px);
  height: 100%;
  display: block;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
  background-image: linear-gradient(90deg, #009CE3 22.28%, #007DD6 100%);
  position: absolute;
  top: 50%;
  left: calc(50% - 50vw);
  transform: translateY(-50%);
}
@media (max-width: 1080px) {
  .cost__02--ttl h3::before {
    left: calc(50% - 50vw);
    width: 20%;
    height: 52px;
    position: relative;
    transform: initial;
  }
}
@media (max-width: 599px) {
  .cost__02--ttl h3::before {
    width: 40%;
    height: 40px;
  }
}
.cost__02--ttl h3 > span:nth-of-type(1) {
  width: 187px;
}
@media (max-width: 1080px) {
  .cost__02--ttl h3 > span:nth-of-type(1) {
    width: 160px;
  }
}
@media (max-width: 599px) {
  .cost__02--ttl h3 > span:nth-of-type(1) {
    width: 128px;
  }
}
.cost__02--ttl h3 > span:nth-of-type(2) {
  width: calc(100% - 187px + 28px);
  position: relative;
  padding: 16px;
}
@media (max-width: 1080px) {
  .cost__02--ttl h3 > span:nth-of-type(2) {
    width: 100%;
    padding: 14px;
  }
}
@media (max-width: 599px) {
  .cost__02--ttl h3 > span:nth-of-type(2) {
    padding: 12px;
  }
}
.cost__02--ttl h3 > span:nth-of-type(2)::before {
  content: "";
  background-color: #EBF2F5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-left: 2px solid #009CE3;
  border-right: 2px solid #009CE3;
  transform: skew(10deg);
}
.cost__02--ttl h3 > span:nth-of-type(2) span {
  color: #009CE3;
  font-size: 32px;
  font-weight: 700;
  z-index: 1;
  position: relative;
  display: block;
  text-align: center;
}
@media (max-width: 1080px) {
  .cost__02--ttl h3 > span:nth-of-type(2) span {
    font-size: 28px;
  }
}
@media (max-width: 599px) {
  .cost__02--ttl h3 > span:nth-of-type(2) span {
    font-size: 18px;
  }
}
.cost__02--ttl p {
  line-height: 2;
}
.cost__02--ttl-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 90px;
  margin-top: 36px;
}
@media (max-width: 1080px) {
  .cost__02--ttl-content {
    gap: 64px;
    margin-top: 28px;
  }
}
@media (max-width: 599px) {
  .cost__02--ttl-content {
    gap: 24px;
    margin-top: 24px;
    flex-flow: column;
  }
}
.cost__02--ttl-content > div {
  width: calc(50% - 45px);
}
@media (max-width: 1080px) {
  .cost__02--ttl-content > div {
    width: calc(50% - 32px);
  }
}
@media (max-width: 599px) {
  .cost__02--ttl-content > div {
    width: 100%;
  }
}
.cost__02--ttl-content figure {
  width: calc(50% - 45px);
}
@media (max-width: 1080px) {
  .cost__02--ttl-content figure {
    width: calc(50% - 32px);
  }
}
@media (max-width: 599px) {
  .cost__02--ttl-content figure {
    width: 60%;
    margin: auto;
  }
}
.cost__02--block {
  display: flex;
  justify-content: space-between;
  padding: 74px 0;
  margin-bottom: 80px;
  position: relative;
  gap: 48px;
}
@media (max-width: 1080px) {
  .cost__02--block {
    padding: 56px 0;
    margin-bottom: 64px;
    gap: 32px;
  }
}
@media (max-width: 599px) {
  .cost__02--block {
    padding: 48px 0;
    margin-bottom: 32px;
    gap: 24px;
    flex-flow: column;
  }
}
.cost__02--block:nth-last-of-type(1) {
  margin-bottom: initial;
  padding: initial;
}
@media (max-width: 599px) {
  .cost__02--block:nth-last-of-type(1) {
    padding: 48px 0;
    margin-bottom: 32px;
    gap: 24px;
    flex-flow: column;
  }
}
.cost__02--block:nth-last-of-type(1) figure {
  width: calc(57.4% - 48px);
  padding-left: 48px;
  background-color: #EBF2F5;
  padding: 74px 0 74px 48px;
}
@media (max-width: 1080px) {
  .cost__02--block:nth-last-of-type(1) figure {
    width: calc(57.4% - 32px);
    padding-left: 48px;
    padding: 56px 0 56px 32px;
  }
}
@media (max-width: 599px) {
  .cost__02--block:nth-last-of-type(1) figure {
    width: 100%;
    background-color: initial;
    padding: initial;
  }
}
.cost__02--block:nth-last-of-type(1) > div {
  padding: 74px 0;
}
@media (max-width: 1080px) {
  .cost__02--block:nth-last-of-type(1) > div {
    padding: 56px 0;
  }
}
@media (max-width: 1080px) {
  .cost__02--block:nth-last-of-type(1) > div {
    padding: initial;
  }
}
.cost__02--block::before {
  content: "";
  width: 70vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  background-color: #EBF2F5;
}
.cost__02--block figure {
  width: 57.4%;
  position: relative;
  z-index: 1;
}
@media (max-width: 1080px) {
  .cost__02--block figure {
    width: 100%;
  }
}
.cost__02--block > div {
  width: calc(42.6% - 48px);
  position: relative;
  z-index: 1;
}
@media (max-width: 1080px) {
  .cost__02--block > div {
    width: calc(42.6% - 32px);
  }
}
@media (max-width: 1080px) {
  .cost__02--block > div {
    width: 100%;
  }
}
.cost__02--block > div h4 {
  color: #009CE3;
  font-size: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: initial;
  margin-bottom: 48px;
}
@media (max-width: 1080px) {
  .cost__02--block > div h4 {
    font-size: 28px;
    gap: 20px;
    margin-bottom: 36px;
  }
}
@media (max-width: 599px) {
  .cost__02--block > div h4 {
    font-size: 22px;
    gap: 16px;
    margin-bottom: 24px;
  }
}
.cost__02--block > div h4 i {
  display: inline-block;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%);
  background-image: linear-gradient(90deg, #009CE3 22.28%, #007DD6 100%);
  padding: 9px 21px 7px 14px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 1080px) {
  .cost__02--block > div h4 i {
    padding: 8px 19px 6px 12px;
    font-size: 19px;
  }
}
@media (max-width: 599px) {
  .cost__02--block > div h4 i {
    font-size: 18px;
  }
}
.cost__02--block > div p {
  line-height: 1.7;
  margin: initial;
}

/*====================================
  system
=====================================*/
.system {
  background-color: #FFFDE9;
}
.system__lead {
  margin-top: 32px;
  margin-bottom: 100px;
}
@media (max-width: 1080px) {
  .system__lead {
    margin-top: 28px;
    margin-bottom: 80px;
  }
}
@media (max-width: 599px) {
  .system__lead {
    margin-top: 24px;
    margin-bottom: 64px;
  }
}
.system__block {
  background-color: #fff;
  border: 2px solid #FFD000;
  margin-bottom: 100px;
  padding: 115px 64px 64px 64px;
  position: relative;
}
@media (max-width: 1080px) {
  .system__block {
    margin-bottom: 80px;
    padding: 96px 48px 48px 48px;
  }
}
@media (max-width: 599px) {
  .system__block {
    margin-bottom: 64px;
    padding: 80px 32px 32px 32px;
  }
}
.system__block:nth-last-of-type(1) {
  margin-bottom: initial;
}
.system__block:nth-of-type(2) figure {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media (max-width: 1080px) {
  .system__block:nth-of-type(2) figure {
    gap: 6px;
    margin-bottom: 28px;
  }
}
@media (max-width: 599px) {
  .system__block:nth-of-type(2) figure {
    gap: 4px;
    margin-bottom: 24px;
    flex-flow: column;
  }
}
.system__block:nth-of-type(2) figure img {
  width: calc(50% - 4px);
}
@media (max-width: 1080px) {
  .system__block:nth-of-type(2) figure img {
    width: calc(50% - 3px);
  }
}
@media (max-width: 599px) {
  .system__block:nth-of-type(2) figure img {
    width: 100%;
  }
}
.system__block:nth-of-type(2) p {
  margin: initial;
}
.system__block h3 {
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
  background-image: linear-gradient(90deg, #FFC800 23.45%, #FFAA00 100%);
  font-size: 32px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 15px 79px 16px 24px;
  line-height: 1;
  margin: initial;
  position: absolute;
  top: -20px;
  left: -2px;
}
@media (max-width: 1080px) {
  .system__block h3 {
    font-size: 28px;
    gap: 14px;
    padding: 13px 70px 14px 20px;
    top: -20px;
    left: -2px;
  }
}
@media (max-width: 599px) {
  .system__block h3 {
    font-size: 20px;
    gap: 10px;
    padding: 10px 40px 10px 10px;
    top: -16px;
  }
}
.system__block h3 i {
  font-style: normal;
  display: inline-block;
  font-size: 40px;
  font-family: "Inter", sans-serif;
}
@media (max-width: 1080px) {
  .system__block h3 i {
    font-size: 36px;
  }
}
@media (max-width: 599px) {
  .system__block h3 i {
    font-size: 24px;
  }
}
.system__block ul {
  display: flex;
  align-items: start;
  padding: initial;
  margin: initial;
  position: relative;
}
@media (max-width: 599px) {
  .system__block ul {
    flex-flow: column;
  }
}
.system__block ul li {
  padding: initial;
  margin: initial;
  list-style: none;
  max-width: 412px;
  background-color: #FFFDE9;
}
.system__block ul li:nth-of-type(1) {
  margin-right: 64px;
  position: relative;
}
@media (max-width: 1080px) {
  .system__block ul li:nth-of-type(1) {
    margin-right: 32px;
  }
}
@media (max-width: 599px) {
  .system__block ul li:nth-of-type(1) {
    margin-right: initial;
    margin-bottom: 24px;
  }
}
.system__block ul li:nth-of-type(1)::before {
  content: "";
  top: 0;
  right: -64px;
  width: 2px;
  height: 100%;
  background-color: #FFD000;
  position: absolute;
}
@media (max-width: 1080px) {
  .system__block ul li:nth-of-type(1)::before {
    right: -32px;
  }
}
@media (max-width: 599px) {
  .system__block ul li:nth-of-type(1)::before {
    top: initial;
    right: initial;
    width: 100%;
    height: 2px;
    bottom: -24px;
    left: 0;
  }
}
.system__block ul li:nth-of-type(2) {
  margin-left: 64px;
}
@media (max-width: 1080px) {
  .system__block ul li:nth-of-type(2) {
    margin-left: 32px;
  }
}
@media (max-width: 599px) {
  .system__block ul li:nth-of-type(2) {
    margin-left: initial;
    margin-top: 24px;
  }
}
.system__block ul li figure img {
  width: 100%;
  height: auto;
}
.system__block ul li h4 {
  font-size: 20px;
  font-weight: 500;
  margin: initial;
  padding: 32px 40px 16px 40px;
}
@media (max-width: 1080px) {
  .system__block ul li h4 {
    font-size: 18px;
    padding: 28px 32px 14px 32px;
  }
}
@media (max-width: 599px) {
  .system__block ul li h4 {
    font-size: 16px;
    padding: 20px 24px 10px 24px;
  }
}
.system__block ul li p {
  padding: 0 40px 40px 40px;
  margin: initial;
}
@media (max-width: 1080px) {
  .system__block ul li p {
    padding: 0 32px 32px 32px;
  }
}
@media (max-width: 599px) {
  .system__block ul li p {
    padding: 0 24px 24px 24px;
  }
}
.system__block-content {
  display: flex;
  gap: 52px;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .system__block-content {
    gap: 40px;
  }
}
@media (max-width: 599px) {
  .system__block-content {
    gap: 24px;
    flex-flow: column;
  }
}
.system__block-left {
  width: calc(50% - 26px);
}
@media (max-width: 1080px) {
  .system__block-left {
    width: calc(50% - 20px);
  }
}
@media (max-width: 599px) {
  .system__block-left {
    width: 100%;
  }
}
.system__block-right {
  width: calc(50% - 26px);
}
@media (max-width: 1080px) {
  .system__block-right {
    width: calc(50% - 20px);
  }
}
@media (max-width: 599px) {
  .system__block-right {
    width: 100%;
  }
}
.system__block-right h4 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  margin: initial;
  margin-bottom: 16px;
}
@media (max-width: 1080px) {
  .system__block-right h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
@media (max-width: 1080px) {
  .system__block-right h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.system__block-right h4:nth-of-type(2) {
  margin-top: 24px;
}
@media (max-width: 1080px) {
  .system__block-right h4:nth-of-type(2) {
    margin-top: 20px;
  }
}
.system__block-right p {
  margin: initial;
}

/*====================================
  cta
=====================================*/
.cta {
  background: #333;
}
.cta__block {
  display: flex;
  justify-content: center;
}
@media (max-width: 1080px) {
  .cta__block {
    flex-flow: column;
  }
}
.cta__block h2 {
  color: #FFC800;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  margin: initial;
  margin-right: 72px;
}
@media (max-width: 1080px) {
  .cta__block h2 {
    font-size: 36px;
    margin-right: initial;
    border-bottom: 2px solid #FFD000;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
@media (max-width: 599px) {
  .cta__block h2 {
    font-size: 24px;
  }
}
.cta__content {
  padding-left: 72px;
  position: relative;
}
@media (max-width: 1080px) {
  .cta__content {
    padding-left: initial;
  }
}
.cta__content::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #FFD000;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-10deg);
}
@media (max-width: 1080px) {
  .cta__content::before {
    content: none;
  }
}
.cta__content p {
  color: #fff;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  margin: initial;
  margin-bottom: 40px;
}
@media (max-width: 1080px) {
  .cta__content p {
    font-size: 22px;
  }
}
@media (max-width: 599px) {
  .cta__content p {
    font-size: 18px;
  }
}
.cta__content a {
  background-color: #fff;
  color: #FFD000;
  display: block;
  border: 2px solid #FFD000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 94px;
  transition: all 0.3s;
}
@media (max-width: 1080px) {
  .cta__content a {
    max-width: 500px;
    border-radius: 7px;
    gap: 14px;
    padding: 28px 80px;
  }
}
@media (max-width: 599px) {
  .cta__content a {
    border-radius: 6px;
    gap: 12px;
    padding: 24px;
  }
}
.cta__content a:hover {
  background-color: transparent;
  transition: all 0.3s;
}
.cta__content a::after {
  content: "";
  background-image: url(../img/cta-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: 32.997px;
  height: 24.002px;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .cta__content a::after {
    width: 32px;
    height: 24px;
  }
}
@media (max-width: 599px) {
  .cta__content a::after {
    width: 28px;
    height: auto;
    aspect-ratio: 32/24;
  }
}
.cta__content a span {
  background: var(--02, linear-gradient(90deg, #FFC800 23.45%, #FA0 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .cta__content a span {
    font-size: 19px;
  }
}
@media (max-width: 1080px) {
  .cta__content a span {
    font-size: 18px;
  }
}