@charset "UTF-8";
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-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 {
  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] {
  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 */
  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 */
}

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

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

/**
 * Fix appearance for Firefox
 */
/**
 * 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;
}

html {
  font-size: 10px !important;
}

body {
  background: #eef8ff;
}

h1,
h2,
h3,
h4,
p,
a {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.5;
  color: #33363c;
}

img {
  width: 100%;
  height: 100%;
}

.sp {
  display: block;
}
@media screen and (min-width: 770px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 770px) {
  .pc {
    display: block;
  }
}

.section__label {
  position: relative;
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: #008efd;
  padding-left: 19px;
  letter-spacing: 0.08em;
}

.section__label:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  background: linear-gradient(270deg, #eff1b8 0%, #94c6e0 52.4%, #68b0f0 100%);
  border-radius: 50%;
  left: 0;
}

.section__title {
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  color: #33363c;
}

.button {
  display: flex;
  align-items: center;
  background: linear-gradient(270deg, #1fcef6 0%, #21a8fe 50.96%, #1f9df7 100%);
  border-radius: 40px;
  height: 44px;
}
.button__text {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.button__icon {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
}
.button__icon img {
  position: absolute;
  width: 9px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #9aa1a5;
  margin-bottom: 50px;
}
.breadcrumb-now {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #33363c;
  background: #dde5ea;
  border-radius: 10px;
  width: 150px;
  height: 20px;
  margin-left: 35px;
}
.breadcrumb-now:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 0.5px;
  background: #dde5ea;
  left: -25px;
}

@media screen and (max-width: 1280px) {
  .section__label {
    position: relative;
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 1.406vw;
    color: #008efd;
    padding-left: 1.484vw;
    letter-spacing: 0.08em;
  }
  .section__label:before {
    position: absolute;
    content: "";
    width: 0.703vw;
    height: 0.703vw;
    background: linear-gradient(270deg, #eff1b8 0%, #94c6e0 52.4%, #68b0f0 100%);
    border-radius: 50%;
    left: 0;
  }
  .section__title {
    font-style: normal;
    font-weight: 500;
    font-size: 2.5vw;
    color: #33363c;
  }
  .button {
    display: flex;
    align-items: center;
    background: linear-gradient(270deg, #1fcef6 0%, #21a8fe 50.96%, #1f9df7 100%);
    border-radius: 3.125vw;
    height: 3.438vw;
  }
  .button__text {
    color: #fff;
    font-size: 1.25vw;
    margin-right: 1.172vw;
  }
  .button__icon {
    display: block;
    position: relative;
    width: 1.875vw;
    height: 1.875vw;
    background: #fff;
    border-radius: 50%;
  }
  .button__icon img {
    position: absolute;
    width: 0.703vw;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .breadcrumb {
    display: flex;
    align-items: center;
    font-size: 1.016vw;
    color: #9aa1a5;
    margin-bottom: 3.906vw;
  }
  .breadcrumb-now {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.016vw;
    color: #33363c;
    background: #dde5ea;
    border-radius: 0.781vw;
    width: 11.719vw;
    height: 1.563vw;
    margin-left: 2.734vw;
  }
  .breadcrumb-now:before {
    position: absolute;
    content: "";
    width: 1.172vw;
    height: 0.039vw;
    background: #dde5ea;
    left: -1.953vw;
  }
}
@media screen and (max-width: 767px) {
  .section__label {
    position: relative;
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 3.733vw;
    color: #008efd;
    padding-left: 5.6vw;
    letter-spacing: 0.08em;
  }
  .section__label:before {
    position: absolute;
    content: "";
    width: 2.4vw;
    height: 2.4vw;
    background: linear-gradient(270deg, #eff1b8 0%, #94c6e0 52.4%, #68b0f0 100%);
    border-radius: 50%;
    left: 0;
  }
  .section__title {
    font-style: normal;
    font-weight: 500;
    font-size: 6.4vw;
    color: #33363c;
  }
  .button {
    display: flex;
    align-items: center;
    background: linear-gradient(270deg, #1fcef6 0%, #21a8fe 50.96%, #1f9df7 100%);
    border-radius: 10.667vw;
    height: 11.733vw;
  }
  .button__text {
    color: #fff;
    font-size: 4.267vw;
    margin-right: 4vw;
    margin-left: 9.2vw;
  }
  .button__icon {
    display: block;
    position: relative;
    width: 6.4vw;
    height: 6.4vw;
    background: #fff;
    border-radius: 50%;
  }
  .button__icon img {
    position: absolute;
    width: 2.4vw;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .breadcrumb {
    display: flex;
    align-items: center;
    font-size: 3.2vw;
    color: #9aa1a5;
    margin-bottom: 6.933vw;
  }
  .breadcrumb-now {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2vw;
    color: #33363c;
    background: #dde5ea;
    border-radius: 2.667vw;
    width: 37.333vw;
    height: 5.067vw;
    margin-left: 9.333vw;
  }
  .breadcrumb-now:before {
    position: absolute;
    content: "";
    width: 1.172vw;
    height: 0.039vw;
    background: #dde5ea;
    left: -1.953vw;
  }
}
.header {
  position: fixed;
  top: 0;
  margin: 35px 0 0 180px;
  z-index: 999;
}
.header__inner {
  display: flex;
}
.header .logo {
  width: 83.62px;
  height: 106.85px;
  margin-right: 341px;
}
.header .g-nav {
  margin-top: 5px;
  display: flex;
  align-items: center;
  height: 62px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 0 42px 0 9px;
}
.header .g-nav-list ul {
  display: flex;
  align-items: center;
}
.header .g-nav-list ul li {
  font-size: 16px;
  margin-right: 48px;
}
.header .g-nav-list ul .blue--btn {
  display: flex;
  width: 144px;
  height: 50px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(270deg, #1fcef6 0%, #21a8fe 50.96%, #1f9df7 100%);
  border-radius: 50px;
}
.header .g-nav-list ul .blue--btn a {
  color: #fff;
}
.header .g-nav-list ul li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1280px) {
  .header {
    position: fixed;
    top: 0;
    margin: 2.431vw 0 0 12.5vw;
    z-index: 999;
  }
  .header__inner {
    display: flex;
  }
  .header .logo {
    width: 5.807vw;
    height: 7.42vw;
    margin-right: 23.681vw;
  }
  .header .g-nav {
    margin-top: 0.347vw;
    display: flex;
    align-items: center;
    height: 4.306vw;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3.472vw;
    padding: 0 2.917vw 0 0.625vw;
  }
  .header .g-nav-list ul {
    display: flex;
    align-items: center;
  }
  .header .g-nav-list ul li {
    font-size: 1.111vw;
    margin-right: 3.333vw;
  }
  .header .g-nav-list ul .blue--btn {
    display: flex;
    width: 10vw;
    height: 3.472vw;
    justify-content: center;
    align-items: center;
    background: linear-gradient(270deg, #1fcef6 0%, #21a8fe 50.96%, #1f9df7 100%);
    border-radius: 3.472vw;
  }
  .header .g-nav-list ul .blue--btn a {
    color: #fff;
  }
  .header .g-nav-list ul li:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    margin: 4vw 0 0 4vw;
    z-index: 999;
  }
  .header__inner {
    display: flex;
  }
  .header .logo {
    width: 15.733vw;
    height: 20.184vw;
    margin-right: 0;
    z-index: 999;
  }
  .header .g-nav {
    margin-top: 1.333vw;
    display: flex;
    align-items: center;
    height: 16.533vw;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 13.333vw;
    padding: 0 11.2vw 0 2.4vw;
  }
  .header .g-nav-list ul {
    display: block;
    align-items: center;
  }
  .header .g-nav-list ul li {
    font-size: 4.267vw;
    margin-right: 12.8vw;
  }
  .header .g-nav-list ul .blue--btn {
    display: block;
    width: inherit;
    height: inherit;
    justify-content: center;
    align-items: center;
    background: inherit;
    border-radius: 13.333vw;
  }
  .header .g-nav-list ul .blue--btn a {
    color: #fff;
  }
  .header .g-nav-list ul li:last-child {
    margin-right: 0;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 998;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #fff;
    /*動き*/
    transition: all 0.6s;
    border-radius: 0;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 42.667vw;
    left: 8vw;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
    margin-bottom: 7.467vw;
  }
  #g-nav li a {
    color: #33363c;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 5.333vw;
    text-align: left;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 4vw;
    right: 4vw;
    cursor: pointer;
    width: 12.267vw;
    height: 12.267vw;
    background: linear-gradient(270deg, #1fcef6 0%, #21a8fe 50.96%, #1f9df7 100%);
    border-radius: 50%;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 3.733vw;
    height: 0.213vw;
    border-radius: 0.533vw;
    background-color: #fff;
    width: 7.467vw;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .openbtn span:nth-of-type(1) {
    top: 4vw;
  }
  .openbtn span:nth-of-type(2) {
    top: 6.133vw;
  }
  .openbtn span:nth-of-type(3) {
    top: 8.267vw;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 4.8vw;
    left: 50%;
    transform: translateY(6px) translateX(-50%) rotate(-25deg);
    width: 7.467vw;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 8vw;
    left: 50%;
    transform: translateY(-6px) translateX(-50%) rotate(25deg);
    width: 7.467vw;
  }
}
.fv {
  position: relative;
  padding: 208px 0 338px 0;
}
.fv__inner {
  position: relative;
}
.fv__wrapper {
  margin-left: 284px;
}
.fv__title {
  margin: 0 0 0 0;
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(276.01deg, #1fcef6 28.26%, #21a8fe 59.58%, #1f9df7 97.61%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.5;
}
.fv__lead {
  font-size: 18px;
  color: #33363c;
  line-height: 180%;
  margin-top: 29px;
}
.fv__features {
  display: flex;
  align-items: center;
  margin: 32px 0 0 -10px;
}
.fv__feature {
  width: 128px;
  height: 128px;
  margin-right: 8px;
}
.fv__item1 {
  position: absolute;
  width: 441px;
  height: 299px;
  top: 278px;
  right: 55.89px;
}
.fv__item2 {
  position: absolute;
  width: 255px;
  height: 239px;
  bottom: -319px;
  left: 465px;
}
.fv__item3 {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 133px;
  left: 0;
}
.fv__item4 {
  position: absolute;
  width: 279px;
  height: 174px;
  top: 23px;
  right: 370.96px;
}
.fv__scroll {
  position: absolute;
  left: 100px;
  bottom: -195px;
  font-size: 13px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.fv__scroll:before {
  display: flex;
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  bottom: -15px;
  left: 3px;
  background: linear-gradient(270deg, #eff1b8 0%, #94c6e0 52.4%, #68b0f0 100%);
  border-radius: 50%;
}

.fv:after {
  position: absolute;
  content: "";
  background: url(/img/fv--bk.png);
  background-size: cover;
  width: 100%;
  height: 1363px;
  top: 0;
  z-index: -1;
}

.problems__inner {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 90px 0 97px 0;
}
.problems__titlearea {
  margin: 0 0 0 146px;
}
.problems__list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1079px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 65px auto 0 auto;
}
.problems__image {
  width: 277px;
  height: 252px;
}
.problems__text {
  font-size: 18px;
  text-align: center;
  color: #33363c;
  margin-top: 6px;
}
.problems__text {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #33363c;
}
.problems__arrow {
  width: 31.95px;
  height: 33.34px;
  margin: 52px auto 0 auto;
}
.problems__message {
  font-weight: 500;
  font-size: 26px;
  color: #33363c;
  text-align: center;
  margin-top: 27px;
  letter-spacing: -0.03em;
}
.problems__message span {
  color: #008efd;
}

.works {
  padding: 117px 0 125px 0;
}
.works__inner {
  width: 100%;
  max-width: 1079px;
  margin: 0 auto;
}
.works__list {
  margin: 42px auto 0 auto;
  width: 1079px;
  display: flex;
  justify-content: space-between;
}
.works-card {
  width: 333px;
  height: 513px;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 26px 0 26px;
}
.works-card__img {
  width: 100%;
  height: 179px;
  margin-bottom: 22px;
}
.works-card__title {
  font-size: 20px;
  margin-left: 10px;
}
.works-card__text {
  font-size: 16px;
  color: #33363c;
  margin-top: 10px;
  margin-bottom: 21px;
  margin-left: 10px;
}
.works-card__tags {
  margin-left: 10px;
}
.works-card__tag {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.works-card__tag p {
  font-size: 14px;
  color: #33363c;
}
.works-card__tag img {
  width: 82px;
  height: 21px;
  margin-right: 15px;
}
.works--btn {
  width: 180px;
  padding-left: 34.5px;
  margin: 43px 0 0 auto;
}

.contact {
  overflow: hidden;
}
.contact__inner {
  position: relative;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(277.05deg, #eff1b8 0.44%, #94c6e0 51.88%, #68b0f0 98.59%);
  border-radius: 30px;
  padding-bottom: 79px;
}
.contact__box {
  display: flex;
  justify-content: space-between;
  padding: 88px 185px 0 184px;
}
.contact__label, .contact__title, .contact__subtitle {
  color: #fff;
}
.contact__subtitle {
  font-size: 16px;
  margin-top: 15px;
}
.contact--btn {
  width: 288px;
  padding-left: 23.5px;
  margin-top: 38px;
}
.contact__inner::after {
  position: absolute;
  content: "";
  background: url(/img/contact--logo.png);
  background-size: contain;
  width: 373.62px;
  height: 329.01px;
  top: 17px;
  right: 29px;
}

@media screen and (max-width: 1280px) {
  .fv {
    position: relative;
    padding: 16.25vw 0 26.406vw 0;
  }
  .fv__inner {
    position: relative;
  }
  .fv__wrapper {
    margin-left: 22.188vw;
  }
  .fv__title {
    margin: 0 0 0 0;
    font-size: 3.906vw;
    font-weight: bold;
    background: linear-gradient(276.01deg, #1fcef6 28.26%, #21a8fe 59.58%, #1f9df7 97.61%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
  }
  .fv__lead {
    font-size: 1.406vw;
    color: #33363c;
    line-height: 180%;
    margin-top: 2.266vw;
  }
  .fv__features {
    display: flex;
    align-items: center;
    margin: 2.5vw 0 0 -0.781vw;
  }
  .fv__feature {
    width: 10vw;
    height: 10vw;
    margin-right: 0.625vw;
  }
  .fv__item1 {
    position: absolute;
    width: 34.453vw;
    height: 23.359vw;
    top: 21.719vw;
    right: 4.366vw;
  }
  .fv__item2 {
    position: absolute;
    width: 19.922vw;
    height: 18.672vw;
    bottom: -24.922vw;
    left: 36.328vw;
  }
  .fv__item3 {
    position: absolute;
    width: 15.625vw;
    height: 15.625vw;
    top: 10.391vw;
    left: 0;
  }
  .fv__item4 {
    position: absolute;
    width: 21.797vw;
    height: 13.594vw;
    top: 1.797vw;
    right: 17.969vw;
  }
  .fv__scroll {
    position: absolute;
    left: 7.813vw;
    bottom: -15.234vw;
    font-size: 1.016vw;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  .fv__scroll:before {
    display: flex;
    position: absolute;
    content: "";
    width: 0.703vw;
    height: 0.703vw;
    bottom: -1.172vw;
    left: 0.234vw;
    background: linear-gradient(270deg, #eff1b8 0%, #94c6e0 52.4%, #68b0f0 100%);
    border-radius: 50%;
  }
  .fv:after {
    position: absolute;
    content: "";
    background: url(/img/fv--bk.png);
    background-size: cover;
    width: 100%;
    height: 106.484vw;
    top: 0;
    z-index: -1;
  }
  .problems__inner {
    max-width: 107.031vw;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.781vw;
    padding: 7.031vw 0 7.578vw 0;
  }
  .problems__titlearea {
    margin: 0 0 0 11.406vw;
  }
  .problems__list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84.297vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5.078vw auto 0 auto;
  }
  .problems__image {
    width: 21.641vw;
    height: 19.688vw;
  }
  .problems__text {
    font-size: 1.406vw;
    text-align: center;
    color: #33363c;
    margin-top: 0.469vw;
  }
  .problems__text {
    font-weight: 400;
    font-size: 1.406vw;
    text-align: center;
    color: #33363c;
  }
  .problems__arrow {
    width: 2.496vw;
    height: 2.605vw;
    margin: 4.063vw auto 0 auto;
  }
  .problems__message {
    font-weight: 500;
    font-size: 2.031vw;
    color: #33363c;
    text-align: center;
    margin-top: 2.109vw;
    letter-spacing: -0.03em;
  }
  .problems__message span {
    color: #008efd;
  }
  .works {
    padding: 9.141vw 0 9.766vw 0;
  }
  .works__inner {
    width: 100%;
    max-width: 84.297vw;
    margin: 0 auto;
  }
  .works__list {
    margin: 42px auto 0 auto;
    width: 84.297vw;
    display: flex;
    justify-content: space-between;
  }
  .works-card {
    width: 26.016vw;
    height: 40.078vw;
    background: rgba(255, 255, 255, 0.8);
    padding: 2.344vw 2.031vw 0 2.031vw;
  }
  .works-card__img {
    width: 100%;
    height: 13.984vw;
    margin-bottom: 1.719vw;
  }
  .works-card__title {
    font-size: 1.563vw;
    margin-left: 0.781vw;
  }
  .works-card__text {
    font-size: 1.25vw;
    color: #33363c;
    margin-top: 0.781vw;
    margin-bottom: 1.641vw;
    margin-left: 0.781vw;
  }
  .works-card__tags {
    margin-left: 0.781vw;
  }
  .works-card__tag {
    display: flex;
    align-items: center;
    margin-bottom: 0.781vw;
  }
  .works-card__tag p {
    font-size: 1.094vw;
    color: #33363c;
  }
  .works-card__tag img {
    width: 6.406vw;
    height: 1.641vw;
    margin-right: 1.172vw;
  }
  .works--btn {
    width: 14.063vw;
    padding-left: 2.695vw;
    margin: 3.359vw 0 0 auto;
  }
  .contact {
    overflow: hidden;
  }
  .contact__inner {
    position: relative;
    max-width: 96.875vw;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(277.05deg, #eff1b8 0.44%, #94c6e0 51.88%, #68b0f0 98.59%);
    border-radius: 2.344vw;
    padding-bottom: 6.172vw;
  }
  .contact__box {
    display: flex;
    justify-content: space-between;
    padding: 6.875vw 14.453vw 0 14.375vw;
  }
  .contact__label, .contact__title, .contact__subtitle {
    color: #fff;
  }
  .contact__subtitle {
    font-size: 1.25vw;
    margin-top: 1.172vw;
  }
  .contact--btn {
    width: 22.5vw;
    padding-left: 1.836vw;
    margin-top: 2.969vw;
  }
  .contact__inner::after {
    position: absolute;
    content: "";
    background: url(/img/contact--logo.png);
    background-size: contain;
    width: 29.189vw;
    height: 25.704vw;
    top: 1.328vw;
    right: 2.266vw;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    position: relative;
    padding: 20.8vw 0 80.267vw 0;
  }
  .fv__inner {
    position: relative;
  }
  .fv__wrapper {
    margin-left: 8vw;
  }
  .fv__title {
    margin: 0 0 0 0;
    padding-top: 43.467vw;
    font-size: 8.533vw;
    font-weight: bold;
    background: linear-gradient(276.01deg, #1fcef6 28.26%, #21a8fe 59.58%, #1f9df7 97.61%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
  }
  .fv__lead {
    font-size: 4.267vw;
    color: #33363c;
    line-height: 180%;
    margin-top: 1.6vw;
  }
  .fv__features {
    display: flex;
    align-items: center;
    margin: 3.733vw 0 0 -2.133vw;
  }
  .fv__feature {
    width: 28.267vw;
    height: 28.267vw;
    margin-right: 0;
  }
  .fv__item1 {
    position: absolute;
    width: 51.768vw;
    height: 35.091vw;
    left: 40vw;
    top: 0;
  }
  .fv__item2 {
    position: absolute;
    width: 35.28vw;
    height: 33.067vw;
    left: 63.2vw;
    top: 146.933vw;
  }
  .fv__item3 {
    position: absolute;
    width: 48.8vw;
    height: 35.752vw;
    left: 1.067vw;
    top: 157.333vw;
  }
  .fv__item4 {
    position: absolute;
    width: 42.133vw;
    height: 26.272vw;
    left: -12vw;
    top: 16vw;
  }
  .fv__scroll {
    position: absolute;
    left: inherit;
    right: 4vw;
    bottom: -15.234vw;
    font-size: 3.467vw;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
  }
  .fv__scroll:before {
    display: flex;
    position: absolute;
    content: "";
    width: 0.703vw;
    height: 0.703vw;
    bottom: -1.172vw;
    left: 0.234vw;
    background: linear-gradient(270deg, #eff1b8 0%, #94c6e0 52.4%, #68b0f0 100%);
    border-radius: 50%;
  }
  .fv:after {
    position: absolute;
    content: "";
    background: url(/img/fv--bg-sp.png);
    background-size: cover;
    width: 100%;
    height: 237.067vw;
    top: 52.267vw;
    z-index: -1;
  }
  .problems__inner {
    max-width: 107.031vw;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.781vw;
    padding: 33px 0 7.578vw 0;
  }
  .problems__titlearea {
    margin: 0 0 0 8vw;
  }
  .problems__list {
    display: block;
    align-items: center;
    justify-content: center;
    width: 84.297vw;
    align-items: center;
    justify-content: space-between;
    margin: 5.078vw auto 0 auto;
  }
  .problems__item {
    margin-bottom: 5.867vw;
  }
  .problems__image {
    width: 73.867vw;
    height: 51.571vw;
    margin: 0 auto;
  }
  .problems__text {
    font-size: 4.267vw;
    text-align: center;
    color: #33363c;
    margin-top: 1.333vw;
  }
  .problems__arrow {
    width: 8.52vw;
    height: 7.499vw;
    margin: 20.44px auto 0 auto;
  }
  .problems__message {
    font-weight: 500;
    font-size: 5.333vw;
    color: #33363c;
    text-align: center;
    margin-top: 2.109vw;
    letter-spacing: -0.03em;
  }
  .problems__message span {
    color: #008efd;
  }
  .works {
    padding: 13.867vw 0 6.4vw 0;
  }
  .works__inner {
    width: 100%;
    max-width: 84.297vw;
    margin: 0 auto;
  }
  .works__list {
    margin: 24px auto 0 auto;
    width: 84.297vw;
    display: block;
    justify-content: space-between;
  }
  .works-card {
    width: 88.8vw;
    height: 136.8vw;
    background: rgba(255, 255, 255, 0.8);
    padding: 8vw 6.933vw 0 6.933vw;
    margin-bottom: 4vw;
  }
  .works-card__img {
    width: 100%;
    height: 48.267vw;
    margin-bottom: 1.719vw;
  }
  .works-card__title {
    font-size: 5.333vw;
    margin-left: 0;
    margin-top: 6.4vw;
  }
  .works-card__text {
    font-size: 4.267vw;
    color: #33363c;
    margin-top: 2.667vw;
    margin-bottom: 1.641vw;
    margin-left: 0;
  }
  .works-card__tags {
    margin-left: 0;
    margin-top: 12vw;
  }
  .works-card__tag {
    display: flex;
    align-items: center;
    margin-bottom: 2.667vw;
  }
  .works-card__tag p {
    font-size: 3.733vw;
    color: #33363c;
    margin-left: 2.933vw;
  }
  .works-card__tag img {
    width: 21.867vw;
    height: 5.6vw;
  }
  .works--btn {
    width: 48vw;
    padding-left: 0;
    margin: 24px 0 0 auto;
  }
  .contact {
    overflow: hidden;
  }
  .contact__inner {
    position: relative;
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(277.05deg, #eff1b8 0.44%, #94c6e0 51.88%, #68b0f0 98.59%);
    border-radius: 8vw;
    padding-bottom: 10.133vw;
  }
  .contact__box {
    display: block;
    justify-content: space-between;
    padding: 8.8vw 0 0 8.533vw;
  }
  .contact__label, .contact__title, .contact__subtitle {
    color: #fff;
  }
  .contact__subtitle {
    font-size: 4.267vw;
    margin-top: 5.333vw;
  }
  .contact--btn {
    width: 76.8vw;
    padding-left: 1.836vw;
    margin-top: 8vw;
  }
  .contact--btn__text {
    margin-left: 6.267vw;
  }
  .contact__inner::after {
    position: absolute;
    content: "";
    background: url(/img/contact--logo.png);
    background-size: contain;
    width: 48vw;
    height: 42.4vw;
    top: 20.267vw;
    right: -7.467vw;
  }
}
.footer__inner {
  width: 100%;
  max-width: 1089px;
  margin: 0 auto;
  padding: 120px 0 83px 0;
}
.footer__top {
  display: flex;
  justify-content: space-between;
}
.footer__logo {
  width: 105px;
  height: 112px;
}
.footer__nav {
  margin-top: 46px;
}
.footer__nav-list {
  display: flex;
  align-items: center;
}
.footer__nav-list li {
  font-size: 16px;
  margin-right: 48px;
}
.footer__nav-list li:last-child {
  margin-right: 0;
}
.footer__line {
  width: 100%;
  height: 0.3px;
  background: #9f9fa5;
  margin: 30px 0;
}
.footer__middle {
  display: flex;
  justify-content: space-between;
}
.footer__address {
  font-size: 14px;
}
.footer__scrolltop {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.footer__scrolltop-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 13px;
}
.footer__bottom {
  margin-top: 50px;
  display: flex;
  justify-content: flex-end;
}
.footer__links {
  display: flex;
}
.footer__links a {
  font-size: 12px;
  margin-right: 30px;
}
.footer__copy {
  font-size: 12px;
}

@media screen and (max-width: 1280px) {
  .footer__inner {
    width: 100%;
    max-width: 85.078vw;
    margin: 0 auto;
    padding: 9.375vw 0 6.484vw 0;
  }
  .footer__top {
    display: flex;
    justify-content: space-between;
  }
  .footer__logo {
    width: 8.203vw;
    height: 8.75vw;
  }
  .footer__nav {
    margin-top: 3.594vw;
  }
  .footer__nav-list {
    display: flex;
    align-items: center;
  }
  .footer__nav-list li {
    font-size: 1.25vw;
    margin-right: 3.75vw;
  }
  .footer__nav-list li:last-child {
    margin-right: 0;
  }
  .footer__line {
    width: 100%;
    height: 0.023vw;
    background: #9f9fa5;
    margin: 2.344vw 0;
  }
  .footer__middle {
    display: flex;
    justify-content: space-between;
  }
  .footer__address {
    font-size: 1.094vw;
  }
  .footer__scrolltop {
    display: flex;
    align-items: center;
    font-size: 1.172vw;
  }
  .footer__scrolltop-icon {
    display: block;
    width: 1.875vw;
    height: 1.875vw;
    margin-left: 1.016vw;
  }
  .footer__bottom {
    margin-top: 3.906vw;
    display: flex;
    justify-content: flex-end;
  }
  .footer__links {
    display: flex;
  }
  .footer__links a {
    font-size: 0.938vw;
    margin-right: 2.344vw;
  }
  .footer__copy {
    font-size: 0.938vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    width: 100%;
    max-width: 85.078vw;
    margin: 0 auto;
    padding: 14.933vw 0 6.484vw 0;
  }
  .footer__top {
    display: block;
    justify-content: space-between;
  }
  .footer__logo {
    width: 34.859vw;
    height: 14.365vw;
    left: 8vw;
    top: 14.933vw;
  }
  .footer__nav {
    margin-top: 7.2vw;
  }
  .footer__nav-list {
    display: block;
    align-items: center;
  }
  .footer__nav-list li {
    font-size: 4.267vw;
    margin-right: 0;
    margin-bottom: 5.067vw;
  }
  .footer__nav-list li:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  .footer__line {
    width: 100%;
    height: 0.08vw;
    background: #9f9fa5;
    margin: 5.6vw 0 5.867vw 0;
  }
  .footer__middle {
    display: block;
    justify-content: space-between;
  }
  .footer__address {
    font-size: 3.733vw;
    line-height: 1.3;
  }
  .footer__scrolltop {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 4vw;
    margin-top: 9.333vw;
  }
  .footer__scrolltop-icon {
    display: block;
    width: 6.4vw;
    height: 6.4vw;
    margin-left: 1.016vw;
  }
  .footer__bottom {
    margin-top: 4.8vw;
    display: block;
    justify-content: flex-end;
  }
  .footer__links {
    display: block;
  }
  .footer__links a {
    display: block;
    font-size: 3.2vw;
    margin-right: 0;
    margin-bottom: 3.467vw;
  }
  .footer__copy {
    font-size: 3.2vw;
  }
}
.program-page {
  position: relative;
}
.program-page__inner {
  width: 1080px;
  margin: 0 auto;
  padding: 218px 0 126px 0;
}
.program-page__lead {
  font-size: 18px;
  margin-top: 22px;
}
.program-page__tabs {
  width: 1050px;
  display: flex;
  margin: 75px 0 50px 0;
}
.program-page__tabs-item {
  width: 33.33%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
}
.program-page__tabs-item:after {
  position: absolute;
  content: "";
  width: 0.5px;
  height: 100%;
  background: #f0f9ff;
  right: 0;
}
.program-page__tabs-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 12px;
}
.program-page__box {
  width: 1080px;
  padding: 60px 110px 60px 105px;
  border-radius: 20px;
  background: #fff;
  margin-bottom: 70px;
}
.program-page__box-title {
  font-size: 22px;
  font-weight: 700;
}
.program-page__box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
}
.program-page__box-label {
  display: flex;
  align-items: center;
  width: 202px;
  padding-left: 10px;
  color: #008efd;
  font-size: 16px;
  border-bottom: 1px solid #008efd;
}
.program-page__box-text {
  width: 648px;
  font-size: 16px;
  padding: 16.5px 0;
  border-bottom: 1px solid #9aa1a5;
  padding-left: 30px;
}
.program-page--button {
  width: 200px;
  padding-left: 36.5px;
  margin: 50px auto 0 auto;
}
.program-page__text1 {
  position: relative;
  margin-top: 156px;
  font-size: 20px;
  padding-bottom: 10px;
}
.program-page__text1:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 105px;
  height: 1px;
  background: linear-gradient(to left, #eff1b8 0%, #94c6e0 52%, #68b0f0 100%);
}
.program-page__text2 {
  font-size: 16px;
  margin-top: 15px;
}

.program-page:after {
  position: absolute;
  content: "";
  background: url(/img/problem-page--bh.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 791px;
  height: 681.22px;
  top: 0;
  right: 13px;
  z-index: -1;
}

@media screen and (max-width: 1280px) {
  .program-page {
    position: relative;
  }
  .program-page__inner {
    width: 84.375vw;
    margin: 0 auto;
    padding: 17.031vw 0 9.844vw 0;
  }
  .program-page__lead {
    font-size: 1.406vw;
    margin-top: 1.719vw;
  }
  .program-page__tabs {
    width: 82.031vw;
    display: flex;
    margin: 5.859vw 0 3.906vw 0;
  }
  .program-page__tabs-item {
    width: 33.33%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25vw;
    padding: 0;
  }
  .program-page__tabs-item:after {
    position: absolute;
    content: "";
    width: 0.039vw;
    height: 100%;
    background: #f0f9ff;
    right: 0;
  }
  .program-page__tabs-icon {
    display: block;
    width: 1.875vw;
    height: 1.875vw;
    margin-left: 0.938vw;
  }
  .program-page__box {
    width: 84.375vw;
    padding: 4.688vw 8.594vw 4.688vw 8.203vw;
    border-radius: 1.563vw;
    background: #fff;
    margin-bottom: 5.469vw;
  }
  .program-page__box-title {
    font-size: 1.719vw;
    font-weight: 700;
  }
  .program-page__box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.781vw;
  }
  .program-page__box-label {
    display: flex;
    align-items: center;
    width: 15.781vw;
    padding-left: 0.781vw;
    color: #008efd;
    font-size: 1.25vw;
    border-bottom: 1px solid #008efd;
  }
  .program-page__box-text {
    width: 50.625vw;
    font-size: 1.25vw;
    padding: 1.289vw 0;
    border-bottom: 1px solid #9aa1a5;
    padding-left: 2.344vw;
  }
  .program-page--button {
    width: 15.625vw;
    padding-left: 2.852vw;
    margin: 3.906vw auto 0 auto;
  }
  .program-page__text1 {
    position: relative;
    margin-top: 12.188vw;
    font-size: 1.563vw;
    padding-bottom: 0.781vw;
  }
  .program-page__text1:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 8.203vw;
    height: 0.078vw;
    background: linear-gradient(to left, #eff1b8 0%, #94c6e0 52%, #68b0f0 100%);
  }
  .program-page__text2 {
    font-size: 1.25vw;
    margin-top: 1.172vw;
  }
  .program-page:after {
    position: absolute;
    content: "";
    background: url(/img/problem-page--bh.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 61.797vw;
    height: 53.22vw;
    top: 0;
    right: 1.016vw;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .program-page {
    position: relative;
    margin-bottom: 32px;
  }
  .program-page__inner {
    width: 100vw;
    margin: 0 auto;
    padding: 112px 30px 50px 30px;
  }
  .program-page__lead {
    font-size: 18px;
    margin-top: 23px;
    line-height: 1.3;
  }
  .program-page__tabs {
    width: 100%;
    display: block;
    margin: 33px 0 49px 0;
  }
  .program-page__tabs-item {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    padding: 20.5px 0 20.5px 15px;
    border-bottom: 1px solid #dde5ea;
  }
  .program-page__tabs-item:after {
    position: absolute;
    content: "";
    width: 0.039vw;
    height: 100%;
    background: #f0f9ff;
    right: 0;
  }
  .program-page__tabs-icon {
    display: block;
    width: 24px;
    height: 24px;
    margin-left: 0;
  }
  .program-page__box {
    width: 100%;
    padding: 33px 30px;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 33px;
  }
  .program-page__box-title {
    font-size: 20px;
    font-weight: 700;
  }
  .program-page__box-grid {
    display: block;
    grid-template-columns: 1fr 1fr;
    margin-top: 15px;
  }
  .program-page__box-label {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 17.5px 0 17.5px 5px;
    color: #008efd;
    font-size: 16px;
    border-bottom: 1px solid #008efd;
  }
  .program-page__box-text {
    width: 100%;
    font-size: 16px;
    padding: 15px 0 14px 5px;
    border-bottom: inherit;
  }
  .program-page--button {
    width: 200px;
    padding-left: 0;
    margin: 36px auto 0 auto;
  }
  .program-page__text1 {
    position: relative;
    margin-top: 40px;
    font-size: 20px;
    padding-bottom: 10px;
  }
  .program-page__text1:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 105px;
    height: 1px;
    background: linear-gradient(to left, #eff1b8 0%, #94c6e0 52%, #68b0f0 100%);
  }
  .program-page__text2 {
    font-size: 16px;
    margin-top: 15px;
  }
  .program-page:after {
    position: absolute;
    content: "";
    background: url(/img/problem-page--bh.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 61.797vw;
    height: 53.22vw;
    top: 0;
    right: 1.016vw;
    z-index: -1;
  }
}
.company-page {
  position: relative;
}
.company-page__inner {
  width: 1080px;
  margin: 0 auto;
  padding: 218px 0 126px 0;
}
.company-page__box-grid {
  width: 870px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 10px;
}
.company-page__box-label {
  display: flex;
  align-items: center;
  width: 202px;
  padding-left: 10px;
  color: #008efd;
  font-size: 16px;
  border-bottom: 1px solid #008efd;
}
.company-page__box-text {
  width: 648px;
  font-size: 16px;
  padding: 16.5px 0;
  border-bottom: 1px solid #9aa1a5;
  padding-left: 30px;
}
.company-page__map {
  width: 870px;
  margin: 72px auto 0 auto;
}

.company-page:after {
  position: absolute;
  content: "";
  background: url(/img/sub-page--bk.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 791px;
  height: 466.48px;
  top: 0;
  right: 13px;
  z-index: -1;
}

@media screen and (max-width: 1280px) {
  .company-page {
    position: relative;
  }
  .company-page__inner {
    width: 84.375vw;
    margin: 0 auto;
    padding: 17.031vw 0 9.844vw 0;
  }
  .company-page__box-grid {
    width: 67.969vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.781vw;
  }
  .company-page__box-label {
    display: flex;
    align-items: center;
    width: 15.781vw;
    padding-left: 0.781vw;
    color: #008efd;
    font-size: 1.25vw;
    border-bottom: 1px solid #008efd;
  }
  .company-page__box-text {
    width: 50.625vw;
    font-size: 1.25vw;
    padding: 1.289vw 0;
    border-bottom: 1px solid #9aa1a5;
    padding-left: 2.344vw;
  }
  .company-page__map {
    width: 67.969vw;
    margin: 5.625vw auto 0 auto;
  }
  .company-page:after {
    position: absolute;
    content: "";
    background: url(/img/sub-page--bk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 61.797vw;
    height: 36.444vw;
    top: 0;
    right: 1.016vw;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .company-page {
    position: relative;
  }
  .company-page__inner {
    width: 100vw;
    margin: 0 auto;
    padding: 29.867vw 8vw 13.333vw 8vw;
  }
  .company-page__box-grid {
    width: 100%;
    margin: 0 auto;
    display: block;
    grid-template-columns: 1fr 1fr;
    margin-top: 9.867vw;
  }
  .company-page__box-label {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 4.667vw 0 4.667vw 1.333vw;
    color: #008efd;
    font-size: 4.267vw;
    border-bottom: 1px solid #008efd;
  }
  .company-page__box-text {
    width: 100%;
    font-size: 4.267vw;
    border-bottom: inherit;
    padding: 4vw 0 1.333vw 0;
  }
  .company-page__map {
    width: 100%;
    margin: 52px auto 0 auto;
  }
  .company-page:after {
    position: absolute;
    content: "";
    background: url(/img/sub-page--bk.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 77.867vw;
    height: 52vw;
    top: 0;
    right: 6.667vw;
    z-index: -1;
  }
}
.contact-page__inner {
  width: 1080px;
  margin: 0 auto;
  padding: 218px 0 126px 0;
}
.contact-page__message {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  margin-top: 85px;
}
.contact-page .contact-form {
  width: 870px;
  margin: 40px auto 0 auto;
  background: #ebf2f7;
  padding: 41.5px 79.5px 41.5px 79.5px;
}
.contact-page .form-group {
  margin-bottom: 25px;
}
.contact-page .form-label {
  display: flex;
  font-size: 14px;
}
.contact-page .form-input {
  margin-top: 14px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 39px;
  font-size: 14px;
  padding-left: 16px;
  background: #fff;
}
.contact-page .required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 17px;
  font-size: 14px;
  color: #fff;
  background: #74b5e8;
  border-radius: 2px;
  margin-left: 20px;
}
.contact-page .form-textarea {
  width: 100%;
  font-size: 14px;
  padding: 11px 16px;
  background-color: #fff;
  height: 175px;
  border-radius: 2px;
  margin-top: 14px;
}
.contact-page .checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.contact-page .checkbox-label checkbox {
  margin-right: 6px;
}
.contact-page .form-submit {
  width: 180px;
  margin: 45px auto 0 auto;
}
.contact-page .button__text {
  display: flex;
  align-items: center;
  padding: 0 0 0 43px;
}
.contact-page .button__icon {
  margin-left: 15px;
}
.contact-page .checkbox {
  font-size: 14px;
}

@media screen and (max-width: 1280px) {
  .contact-page__inner {
    width: 84.375vw;
    margin: 0 auto;
    padding: 17.031vw 0 9.844vw 0;
  }
  .contact-page__message {
    font-style: normal;
    font-weight: 500;
    font-size: 1.563vw;
    line-height: 2.344vw;
    text-align: center;
    margin-top: 6.641vw;
  }
  .contact-page .contact-form {
    width: 67.969vw;
    margin: 3.125vw auto 0 auto;
    background: #ebf2f7;
    padding: 3.242vw 6.211vw 3.242vw 6.211vw;
  }
  .contact-page .form-group {
    margin-bottom: 1.953vw;
  }
  .contact-page .form-label {
    display: flex;
    font-size: 1.094vw;
  }
  .contact-page .form-input {
    margin-top: 1.094vw;
    display: flex;
    align-items: center;
    width: 100%;
    height: 3.047vw;
    font-size: 1.094vw;
    padding-left: 1.25vw;
    background: #fff;
  }
  .contact-page .required {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75vw;
    height: 1.328vw;
    font-size: 1.094vw;
    color: #fff;
    background: #74b5e8;
    border-radius: 0.156vw;
    margin-left: 1.563vw;
  }
  .contact-page .form-textarea {
    width: 100%;
    font-size: 1.094vw;
    padding: 0.859vw 1.25vw;
    background-color: #fff;
    height: 13.672vw;
    border-radius: 0.156vw;
    margin-top: 1.094vw;
  }
  .contact-page .checkbox-label {
    display: flex;
    align-items: center;
    font-size: 1.094vw;
  }
  .contact-page .checkbox-label checkbox {
    margin-right: 0.469vw;
  }
  .contact-page .form-submit {
    width: 14.063vw;
    margin: 3.516vw auto 0 auto;
  }
  .contact-page .button__text {
    display: flex;
    align-items: center;
    padding: 0 0 0 3.359vw;
  }
  .contact-page .button__icon {
    margin-left: 1.172vw;
  }
  .contact-page .checkbox {
    font-size: 1.094vw;
  }
}
@media screen and (max-width: 767px) {
  .contact-page__inner {
    width: 100vw;
    margin: 0 auto;
    padding: 29.867vw 8vw 13.333vw 8vw;
  }
  .contact-page__message {
    display: none;
  }
  .contact-page .contact-form {
    width: 100%;
    margin: 6.667vw auto 0 auto;
    background: #ebf2f7;
    padding: 8.133vw 4vw;
  }
  .contact-page .form-group {
    margin-bottom: 6.667vw;
  }
  .contact-page .form-label {
    display: flex;
    font-size: 3.733vw;
  }
  .contact-page .radio-wrap {
    margin-top: 3.733vw;
  }
  .contact-page .radio-wrap label {
    margin-right: 10.667vw;
  }
  .contact-page .text {
    font-size: 3.733vw;
    margin-left: 3.733vw;
  }
  .contact-page .form-input {
    margin-top: 3.733vw;
    display: flex;
    align-items: center;
    width: 100%;
    height: 10.4vw;
    font-size: 3.733vw;
    padding-left: 4.267vw;
    background: #fff;
  }
  .contact-page .required {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12.8vw;
    height: 4.533vw;
    font-size: 3.733vw;
    color: #fff;
    background: #74b5e8;
    border-radius: 0.533vw;
    margin-left: 5.333vw;
  }
  .contact-page .form-textarea {
    width: 100%;
    font-size: 3.733vw;
    padding: 2.933vw 4.267vw;
    background-color: #fff;
    height: 46.667vw;
    border-radius: 0.533vw;
    margin-top: 3.733vw;
  }
  .contact-page .checkbox-label {
    display: flex;
    align-items: center;
    font-size: 3.733vw;
  }
  .contact-page .checkbox-label checkbox {
    margin-right: 0.469vw;
  }
  .contact-page .form-submit {
    width: 48vw;
    margin: 45px auto 0 auto;
  }
  .contact-page .button__text {
    display: flex;
    align-items: center;
  }
  .contact-page .button__icon {
    margin-left: 4vw;
  }
  .contact-page .checkbox {
    font-size: 1.094vw;
  }
}

/*# sourceMappingURL=style.css.map */
