@charset "UTF-8";
/*----------------------------------
    共通パーツ
-----------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  color: #202020;
  background: #F5F5F5;
}
@media (min-width: 768px) {
  body {
    line-height: 1.5;
  }
}

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

a {
  color: inherit;
}

.inner {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .inner {
    max-width: 1180px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

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

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-title__main {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%; /* 32px */
}
@media (min-width: 1110px) {
  .section-title__main {
    font-size: 62px;
  }
}

.section-title__sub {
  line-height: 180%; /* 28.8px */
}
@media (min-width: 1110px) {
  .section-title__sub {
    font-size: 18px;
    line-height: 150%; /* 27px */
  }
}

/*----------------------------------
    button
-----------------------------------*/
.button {
  padding: 5px 5px;
  border-radius: 50px;
  background: #599CC2;
  color: #F5F5F5;
  font-size: 14px;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
  border: 1px solid transparent;
  height: 42px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
}
@media (min-width: 768px) {
  .button {
    padding: 16px 5px;
    height: 53px;
    line-height: 150%;
    display: block;
  }
}
.button:hover {
  background: #FDFDFD;
  color: #599CC2;
  border-color: currentColor;
}
.button--white {
  background: #FDFDFD;
  color: #599CC2;
  border-color: currentColor;
}
.button--white:hover {
  background: #599CC2;
  color: #FDFDFD;
  border-color: currentColor;
}
@media (min-width: 768px) {
  .button--price {
    padding: 9px 6px;
    height: 42px;
  }
}

.button__icon, .button__icon--white {
  padding: 14px 9px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  color: #FDFDFD;
  background: #599CC2;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  width: 100%;
  border: 1px solid #599CC2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 385px;
  margin-left: auto;
  margin-right: auto;
}
.button__icon:hover, .button__icon--white:hover {
  background: #FDFDFD;
  border-color: currentColor;
  color: #599CC2;
}
.button__icon--white {
  background: #FDFDFD;
  color: #202020;
  border-color: currentColor;
}
.button__icon--white:hover {
  background: #202020;
  border-color: currentColor;
  color: #FDFDFD;
}
.button__icon--fv {
  padding: 6px 9px;
}
.button__icon--cta {
  padding: 7px 8px;
}

.button__icon-people,
.button__icon-letter {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
  background: #FDFDFD;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.button__icon-people::after,
.button__icon-letter::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url(../img/icon-people.svg) no-repeat center center/contain;
}

.button__icon-letter {
  background: #202020;
  border-color: #202020;
}
.button__icon-letter::after {
  background: url(../img/icon-letter.svg) no-repeat center center/contain;
}

.button__icon-letter:hover {
  background: #202020;
  border-color: #202020;
}

.button__icon-text {
  display: inline-block;
  padding: 0 10px;
  width: 100%;
  color: currentColor;
  font-weight: 700;
}

.button__submit {
  padding: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  color: #FDFDFD;
  font-size: 14px;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
  border-radius: 50px;
  background: #599CC2;
  line-height: 10px;
  border: none;
  display: block;
  width: 100%;
  max-width: 326px;
}
@media (min-width: 768px) {
  .button__submit {
    padding: 21px 20px 22px;
  }
}

/*----------------------------------
    header
-----------------------------------*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #FDFDFD;
  z-index: 100;
  padding-top: 18px;
  padding-bottom: 18px;
}
@media (min-width: 1110px) {
  .header {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .header__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.header__logo a {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__logo img {
  width: 156px;
}
@media (min-width: 768px) {
  .header__logo img {
    width: 200px;
  }
}

.header__nav {
  display: none;
}
@media (min-width: 1110px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}

.header__item:last-child {
  position: relative;
  margin-left: 10px;
}
.header__item:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -9px;
  width: 1px;
  height: 32px;
  background: #599CC2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__link,
.header__login {
  display: block;
  padding: 15px 15px;
  letter-spacing: -1.7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__link:hover {
  color: #599CC2;
}

.header__login::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #599CC2;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__login:hover::after {
  width: 100%;
  left: 0;
}

.header__button {
  width: 200px;
  margin-left: 10px;
}

@media (min-width: 1110px) {
  .header__drawer {
    display: none;
  }
}

/*----------------------------------
drawer
-----------------------------------*/
.drawer-icon {
  display: block;
  width: 44px;
  height: 44px;
  position: relative;
}
.drawer-icon span {
  width: 30px;
  height: 3px;
  background: #202020;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
}
.drawer-icon span:nth-child(1) {
  top: calc(50% - 3.5px);
}
.drawer-icon span:nth-child(2) {
  top: calc(50% + 3.5px);
}
.drawer-icon.is-open span {
  height: 2px;
  top: 50%;
}
.drawer-icon.is-open span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.drawer-icon.is-open span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer__content {
  position: fixed;
  top: 80px;
  right: 0;
  background: #FDFDFD;
  width: 100%;
  max-width: 430px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
  display: block;
  height: calc(100vh - 80px);
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
}
@media (min-width: 1110px) {
  .drawer__content {
    display: none;
    top: 82px;
    height: calc(100vh - 82px);
  }
}
.drawer__content.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer__inner {
  padding-left: 40px;
  padding-right: 40px;
}

.drawer__list {
  padding-top: 50px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer__link {
  display: block;
  padding: 10px;
}

.drawer__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}

.fv {
  background: url(../img/fv-bg.png) no-repeat center center/cover;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .fv {
    background-image: url(../img/pc/fv-bg.png);
    padding-top: 125px;
    padding-bottom: 225px;
  }
}

.fv__wrap {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 430px;
}
@media (min-width: 768px) {
  .fv__wrap {
    max-width: 1440px;
  }
}

@media (min-width: 768px) {
  .fv__inner {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.fv__title {
  color: #FDFDFD;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
  .fv__title {
    font-size: 52px;
    line-height: 100%;
  }
}
.fv__title span {
  color: #599CC2;
  font-size: 38px;
  margin-left: 1px;
  margin-right: 2px;
}
@media (min-width: 768px) {
  .fv__title span {
    font-size: 72px;
    line-height: 100%;
    letter-spacing: 2px;
  }
}

.fv__description {
  margin-top: 11px;
  color: #FDFDFD;
}
@media (min-width: 768px) {
  .fv__description {
    margin-top: 20px;
    font-size: 18px;
    line-height: 150%;
  }
}

.fv__list {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .fv__list {
    margin-top: 30px;
  }
}

.fv__item {
  border: 1px solid #FDFDFD;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .fv__item {
    width: 102px;
    height: 102px;
  }
}
.fv__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 21px;
  height: 21px;
  background: url(../img/x.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .fv__item:not(:first-child)::before {
    width: 31px;
    height: 31px;
  }
}

.fv__item-text {
  color: #FDFDFD;
  font-weight: 700;
  line-height: 150%;
  font-size: 13px;
}
@media (min-width: 768px) {
  .fv__item-text {
    font-size: 18px;
    line-height: 150%;
  }
}
.fv__item-text.big {
  font-size: 16px;
}
@media (min-width: 768px) {
  .fv__item-text.big {
    font-size: 24px;
    line-height: 150%;
  }
}

.fv__buttons {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .fv__buttons {
    display: none;
  }
}

/*----------------------------------
    fv-contact
-----------------------------------*/
.fv__contact {
  display: none;
  position: absolute;
  top: -75px;
  right: 50px;
  width: 320px;
}
@media (min-width: 1110px) {
  .fv__contact {
    display: block;
  }
}

.fv-contact {
  background: #FDFDFD;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.fv-contact__inner {
  padding: 30px 20px;
}

.fv-form__group {
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.fv-form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.fv-form-field__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
  display: block;
}

.fv-form-field__input {
  border: 1px solid #D9D9D9;
  padding: 11px 10px;
  width: 100%;
  font-size: 12px;
  line-height: 150%;
  background: #F5F5F5;
  border-radius: 5px;
}
.fv-form-field__input::-webkit-input-placeholder {
  color: #A1A1A1;
}
.fv-form-field__input::-moz-placeholder {
  color: #A1A1A1;
}
.fv-form-field__input:-ms-input-placeholder {
  color: #A1A1A1;
}
.fv-form-field__input::-ms-input-placeholder {
  color: #A1A1A1;
}
.fv-form-field__input::placeholder {
  color: #A1A1A1;
}

.fv-form__privacy {
  margin-top: 10px;
  margin-left: 5px;
}

.fv-form-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fv-form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.fv-form-checkbox__input:checked + .fv-form-checkbox__text::after {
  opacity: 1;
}

.fv-form-checkbox__text {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
}
.fv-form-checkbox__text a {
  color: #599CC2;
}

.fv-form-checkbox__text::before,
.fv-form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.fv-form-checkbox__text::before {
  width: 10px;
  height: 10px;
  border: 1px solid #D9D9D9;
  background: #FDFDFD;
}

.fv-form-checkbox__text::after {
  width: 10px;
  height: 10px;
  left: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  background: url(../img/icon-check.png) no-repeat center center/contain;
}

.fv-form__buttons {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
}

.fv-form__line {
  font-size: 12px;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-right: 22px;
  padding-left: 22px;
}
.fv-form__line::before, .fv-form__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #202020;
}

.problem {
  background: #FDFDFD;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .problem {
    position: relative;
    padding-bottom: 31px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -105px;
    -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  }
}

@media (min-width: 768px) {
  .problem__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 84px;
  }
}

.problem__logo {
  display: none;
}
@media (min-width: 768px) {
  .problem__logo {
    display: block;
  }
}

.problem__box {
  text-align: center;
}
@media (min-width: 768px) {
  .problem__box {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.problem__title {
  font-size: 18px;
  line-height: 180%;
}
@media (min-width: 768px) {
  .problem__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%; /* 36px */
  }
}

.problem__list {
  margin-top: 10px;
  max-width: 267px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .problem__list {
    margin-top: 16px;
    gap: 12px;
  }
}

.problem__item {
  position: relative;
  padding-left: 28px;
  text-align: left;
}
.problem__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url(../img/icon-check.png) no-repeat center center/contain;
}

.reason {
  padding-top: 50px;
  padding-bottom: 49px;
}
@media (min-width: 1110px) {
  .reason {
    padding-top: 101px;
    padding-bottom: 100px;
  }
}

.reason__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media (min-width: 1110px) {
  .reason__list {
    margin-top: 68px;
    gap: 72px;
  }
}

.reason-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 1110px) {
  .reason-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    padding-top: 35px;
    padding-bottom: 36px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 52px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .reason-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    margin-right: calc(50% - 50vw);
    width: 69.4444444444vw;
    height: 100%;
    background: #FDFDFD;
    z-index: -1;
  }
  .reason-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .reason-item:nth-child(even)::before {
    margin-left: calc(50% - 50vw);
    right: auto;
    left: 0;
    margin-right: auto;
  }
}

.reason-item__image {
  width: 100%;
}
@media (min-width: 1110px) {
  .reason-item__image {
    width: 457px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.reason-item__image img {
  width: 100%;
}

@media (min-width: 1110px) {
  .reason-item__box {
    width: 560px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.reason-item__number {
  color: #599CC2;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 180%; /* 28.8px */
}
@media (min-width: 1110px) {
  .reason-item__number {
    font-size: 18px;
    line-height: 150%; /* 27px */
  }
}

.reason-item__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
}
@media (min-width: 1110px) {
  .reason-item__title {
    margin-top: -3px;
    line-height: 150%;
  }
}

.reason-item__body {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 3px solid #599CC2;
}
@media (min-width: 768px) {
  .reason-item__body {
    margin-top: 17px;
  }
}

@media (min-width: 1110px) {
  .reason-item--2 {
    gap: 42px;
  }
  .reason-item--2 .reason-item__image {
    width: 475px;
  }
  .reason-item--2 .reason-item__body {
    padding-top: 23px;
    border-top: 3px solid #599CC2;
  }
  .reason-item--2 .reason-item__title {
    margin-top: 0;
  }
}

@media (min-width: 1110px) {
  .reason-item--3 {
    gap: 43px;
  }
  .reason-item--3 .reason-item__image {
    width: 475px;
  }
}

.pickup {
  padding-top: 50px;
  padding-bottom: 50px;
  background: url(../img/pickup-bg.png) no-repeat center center/cover;
}
@media (min-width: 768px) {
  .pickup {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.pickup__title {
  color: #FDFDFD;
}

.pickup__content {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .pickup__content {
    margin-top: 70px;
  }
}

.pickup__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #FDFDFD;
  border-radius: 15px;
  overflow: hidden;
  min-height: 392px;
}
@media (min-width: 768px) {
  .pickup__item {
    min-height: 367px;
  }
}

.pickup__item-head {
  height: 168px;
  overflow: hidden;
}
.pickup__item-head img {
  width: 100%;
}

.pickup__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 20px 30px 30px;
}

.pickup__item-title {
  text-align: center;
}

.pickup__item-description {
  font-size: 14px;
  line-height: 180%;
}
@media (min-width: 768px) {
  .pickup__item-description {
    line-height: 150%;
  }
}

.swiper-container {
  position: relative;
  padding-bottom: 37px;
}
@media (min-width: 768px) {
  .swiper-container {
    padding-bottom: 82px;
    padding-left: 77px;
    padding-right: 77px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
}

.swiper {
  position: relative;
}

.swiper-wrapper {
  position: relative;
}

.swiper-slide {
  width: 300px;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: #FDFDFD;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #599CC2;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
@media (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -5px;
  }
}

@media (min-width: 768px) {
  .swiper-button-prev {
    top: 46%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    width: 42px;
    height: 42px;
    background: #FDFDFD;
    border-radius: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.swiper-button-prev::after {
  content: "";
}
@media (min-width: 768px) {
  .swiper-button-prev::after {
    width: 10px;
    height: 10px;
    border-left: 2px solid #599CC2;
    border-bottom: 2px solid #599CC2;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.swiper-button-prev:hover::after {
  -webkit-transform: translateX(-3px) rotate(45deg);
          transform: translateX(-3px) rotate(45deg);
}

@media (min-width: 768px) {
  .swiper-button-next {
    top: 46%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 42px;
    height: 42px;
    background: #FDFDFD;
    border-radius: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.swiper-button-next::after {
  content: "";
}
@media (min-width: 768px) {
  .swiper-button-next::after {
    width: 10px;
    height: 10px;
    border-right: 2px solid #599CC2;
    border-bottom: 2px solid #599CC2;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.swiper-button-next:hover::after {
  -webkit-transform: translateX(3px) rotate(-45deg);
          transform: translateX(3px) rotate(-45deg);
}

.cta {
  padding-top: 50px;
  padding-bottom: 49px;
  background: url(../img/cta-bg.png) no-repeat bottom center/cover;
}
@media (min-width: 1110px) {
  .cta {
    background-image: url(../img/pc/cta-bg.png);
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.cta__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.cta__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  max-width: 545px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1110px) {
  .cta__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1120px;
    gap: 30px;
  }
}

.cta-item {
  padding: 20px 20px 19px;
  background: #FDFDFD;
  border-radius: 15px;
  border: 1px solid #FDFDFD;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1110px) {
  .cta-item {
    width: calc(50% - 16px);
    padding: 50px 20px 49px;
  }
}

.cta-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cta-item__icon {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1110px) {
  .cta-item__icon {
    width: 50px;
    height: 50px;
  }
}

.cta-item__text {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
}
@media (min-width: 1110px) {
  .cta-item__text {
    font-size: 18px;
    line-height: 150%; /* 27px */
  }
}

.cta-item__button {
  margin-top: 14px;
}
@media (min-width: 1110px) {
  .cta-item__button {
    margin-top: 31px;
  }
}

.function {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .function {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.function__list {
  margin-top: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .function__list {
    margin-top: 70px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.function-item {
  padding: 30px 30px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 5px;
  border: 1px solid #F5F5F5;
  background: #FDFDFD;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .function-item {
    width: calc(50% - 16px);
    padding: 29px 30px 30px;
  }
}

.function-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.function-item__icon {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.function-item__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 180%; /* 32.4px */
}
@media (min-width: 768px) {
  .function-item__title {
    font-size: 24px;
    line-height: 150%; /* 36px */
  }
}

.function-item__body {
  margin-top: 11px;
}

.function-item__description {
  font-size: 14px;
  line-height: 180%; /* 25.2px */
}
@media (min-width: 768px) {
  .function-item__description {
    line-height: 150%; /* 21px */
  }
}

.price {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #FDFDFD;
}
@media (min-width: 768px) {
  .price {
    padding-top: 100px;
    padding-bottom: 86px;
  }
}

.price__content {
  margin-top: 30px;
  position: relative;
  padding-top: 14px;
}
@media (min-width: 768px) {
  .price__content {
    margin-top: 60px;
    padding: 14px 6px 14px 12px;
  }
}

.price__scroll {
  position: absolute;
  color: #000;
  font-weight: 700;
  line-height: 180%; /* 28.8px */
  right: 20px;
  bottom: 99%;
}
.price__scroll::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 13px;
  bottom: 101%;
  left: 52%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/scroll-arrow.svg) no-repeat center center/cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1165px) {
  .price__scroll {
    display: none;
  }
}

.price__wrapper {
  overflow-x: scroll;
}

.price__table {
  width: 816.6666666667px;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .price__table {
    width: 1057px;
  }
}

@media (min-width: 768px) {
  .price__table-head .price__table-th:nth-child(1),
  .price__table-head .price__table-td:nth-child(1) {
    border-right: 6px solid transparent;
  }
}
.price__table-head .price__table-th:nth-child(2),
.price__table-head .price__table-td:nth-child(2) {
  border: 6px solid #599CC2;
  border-bottom: none;
}
.price__table-head .price__table-th:nth-child(3),
.price__table-head .price__table-td:nth-child(3) {
  border: 6px solid #A1A1A1;
  border-bottom: none;
}
.price__table-head .price__table-th:nth-child(4),
.price__table-head .price__table-td:nth-child(4) {
  border: 6px solid #DCDCDC;
  border-bottom: none;
}

.price__table-row {
  display: grid;
  grid-template-columns: 150px 232px 232px 232px;
  gap: 4px;
}
@media (min-width: 768px) {
  .price__table-row {
    grid-template-columns: 382px 232px 232px 232px;
    gap: 8px;
  }
}

.price-th {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 30px 20px;
  gap: 16px;
}

.price-th__box {
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.price-th__box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media (min-width: 768px) {
  .price-th__box1 {
    gap: 0;
  }
}

.price-th__box1-main {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  word-break: keep-all;
}

.price-th__box1-sub {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
}

.price-th__box2 {
  height: 100%;
}

.price-th__box2-description {
  font-size: 14px;
}
@media (min-width: 768px) {
  .price-th__box2-description {
    font-size: 16px;
  }
}

.price-th__box3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.price-th__box3-small {
  font-size: 18px;
}

.price-th__box3-big {
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 150%; /* 72px */
}

.price-th__box3-bold {
  padding: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%; /* 27px */
  text-align: center;
}

.price-th__box4-button {
  text-align: center;
}

.price__table-body {
  text-align: center;
  font-size: 14px;
  line-height: 180%; /* 25.2px */
  vertical-align: middle;
}
@media (min-width: 768px) {
  .price__table-body {
    font-size: 16px;
    line-height: 150%; /* 24px */
  }
}
.price__table-body .price__table-row:nth-child(odd) .price__table-th,
.price__table-body .price__table-row:nth-child(odd) .price__table-td {
  background: #F5F5F5;
}
.price__table-body .price__table-row:last-child .price__table-th,
.price__table-body .price__table-row:last-child .price__table-td {
  position: relative;
}
.price__table-body .price__table-row:last-child .price__table-th::before,
.price__table-body .price__table-row:last-child .price__table-td::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  width: calc(100% + 12px);
  height: 6px;
}
.price__table-body .price__table-row:last-child .price__table-th:nth-child(1)::before,
.price__table-body .price__table-row:last-child .price__table-td:nth-child(1)::before {
  display: none;
}
.price__table-body .price__table-row:last-child .price__table-th:nth-child(2)::before,
.price__table-body .price__table-row:last-child .price__table-td:nth-child(2)::before {
  background: #599CC2;
}
.price__table-body .price__table-row:last-child .price__table-th:nth-child(3)::before,
.price__table-body .price__table-row:last-child .price__table-td:nth-child(3)::before {
  background: #A1A1A1;
}
.price__table-body .price__table-row:last-child .price__table-th:nth-child(4)::before,
.price__table-body .price__table-row:last-child .price__table-td:nth-child(4)::before {
  background: #DCDCDC;
}
.price__table-body .price__table-th:first-child,
.price__table-body .price__table-td:first-child {
  padding: 6px 10px 4px;
}
@media (min-width: 768px) {
  .price__table-body .price__table-th:first-child,
  .price__table-body .price__table-td:first-child {
    padding: 10px;
    border-right: 6px solid #FDFDFD;
  }
}
.price__table-body .price__table-th:nth-child(2),
.price__table-body .price__table-td:nth-child(2) {
  border-left: 6px solid #599CC2;
  border-right: 6px solid #599CC2;
}
.price__table-body .price__table-th:nth-child(3),
.price__table-body .price__table-td:nth-child(3) {
  border-left: 6px solid #A1A1A1;
  border-right: 6px solid #A1A1A1;
}
.price__table-body .price__table-th:nth-child(4),
.price__table-body .price__table-td:nth-child(4) {
  border-left: 6px solid #DCDCDC;
  border-right: 6px solid #DCDCDC;
}

.price__table-td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.price__table-td img {
  width: 32px;
  height: 32px;
}

.price__foot {
  margin-top: 38px;
}
@media (min-width: 768px) {
  .price__foot {
    margin-top: 72px;
    padding-left: 17px;
    padding-right: 23px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.price__foot-title {
  font-weight: 700;
  border-bottom: 1px solid #599CC2;
}
@media (min-width: 768px) {
  .price__foot-title {
    font-size: 18px;
  }
}

.price__foot-description {
  margin-top: 10px;
}
.price__foot-description a {
  color: #599CC2;
  font-weight: 700;
}

.price__foot-attention {
  margin-top: 10px;
}

.question {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .question {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.question__list {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 31px;
  max-width: 900px;
}
@media (min-width: 768px) {
  .question__list {
    margin-top: 70px;
    gap: 24px;
    margin-left: auto;
    margin-right: auto;
  }
}

.qa-item {
  background: #FDFDFD;
  border-radius: 15px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.qa-item.is-open .qa-item__head::before {
  width: calc(100% - 100px);
}
.qa-item.is-open .qa-item__head-plus::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}
.qa-item.is-open .qa-item__head-plus::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

.qa-item__head {
  padding: 18px 49px 21px 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .qa-item__head {
    padding: 30px 50px 27px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .qa-item__head::before {
    content: "";
    position: absolute;
    bottom: 13px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #599CC2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.qa-item__a-icon,
.qa-item__head-icon {
  color: #599CC2;
  font-weight: 700;
  line-height: 180%; /* 28.8px */
  margin-right: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 768px) {
  .qa-item__a-icon,
  .qa-item__head-icon {
    font-size: 24px;
    line-height: 150%; /* 36px */
  }
}

.qa-item__head-title {
  font-weight: 700;
  text-align: left;
  width: 100%;
}
@media (min-width: 768px) {
  .qa-item__head-title {
    font-size: 18px;
    line-height: 150%; /* 27px */
  }
}

.qa-item__head-plus {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
.qa-item__head-plus::before, .qa-item__head-plus::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #599CC2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.qa-item__head-plus::before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.qa-item__head-plus::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.qa-item__body {
  display: none;
}
.qa-item__body.is-open {
  display: block;
}

.qa-item__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 19px 23px 19px;
}
@media (min-width: 768px) {
  .qa-item__a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 50px 29px;
  }
}

@media (min-width: 768px) {
  .qa-item__a-text {
    font-size: 14px;
    line-height: 150%; /* 21px */
  }
}

.vision {
  padding-top: 50px;
  padding-bottom: 51px;
  background: url(../img/vision-bg.jpg) no-repeat center center/cover;
}
@media (min-width: 1110px) {
  .vision {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../img/pc/vision-bg.jpg);
  }
}

.vision__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 52px;
}
@media (min-width: 1110px) {
  .vision__list {
    margin-top: 70px;
    gap: 120px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.vision-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (min-width: 1110px) {
  .vision-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
  .vision-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.vision-item__image {
  aspect-ratio: 390/216;
}
@media (min-width: 1110px) {
  .vision-item__image {
    width: 400px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.vision-item__image img {
  width: 100%;
  height: 216px;
}
@media (min-width: 1110px) {
  .vision-item__image img {
    height: 300px;
  }
}

.vision-item__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (min-width: 1110px) {
  .vision-item__box {
    gap: 30px;
    width: 570px;
  }
}

.vision-item__title {
  color: #599CC2;
  font-size: 24px;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
}
@media (min-width: 1110px) {
  .vision-item__title {
    font-size: 32px;
    line-height: 150%; /* 48px */
  }
}

.vision-item__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.vision-item__description--small {
  line-height: 150%;
}
@media (min-width: 1110px) {
  .vision-item__description {
    gap: 20px;
  }
}

.company {
  padding-top: 50px;
  padding-bottom: 44px;
  background: url(../img/company-bg.png) no-repeat center center/cover;
}
@media (min-width: 1110px) {
  .company {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../img/pc/company-bg.png);
  }
}

.company__title {
  color: #FDFDFD;
}

.company__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .company__list {
    margin-top: 70px;
  }
}

.company-item {
  color: #FDFDFD;
  border-bottom: 1px solid #FDFDFD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .company-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8px 0 7px;
  }
}

.company-item__dt {
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 180%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  .company-item__dt {
    width: 200px;
    text-align: center;
    line-height: 27px;
  }
}

.company-item__dd-padding {
  display: block;
  padding: 8px 0;
}

@media (min-width: 768px) {
  .company-item__dd {
    width: 100%;
  }
}
.company-item__dd p {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 150%;
}
.company-item__dd span:nth-child(1) {
  padding-right: 10px;
}
.company-item__dd span:nth-child(2) {
  padding-left: 10px;
}
.company-item__dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.company-item__dd ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 5px 10px;
}
@media (min-width: 768px) {
  .company-item__dd ul li {
    padding: 10px;
  }
}
.company-item__dd ul li span:nth-child(1) {
  width: 140px;
}

.contact {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 1110px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact__content {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .contact__content {
    margin-top: 70px;
  }
}

.contact__lead {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact__form {
  margin-top: 31px;
}
@media (min-width: 768px) {
  .contact__form {
    margin-top: 50px;
  }
}

.contact-field__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
@media (min-width: 768px) {
  .contact-field__group {
    gap: 31px;
  }
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .form-field {
    gap: 7px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.form-field__tag {
  background: #599CC2;
  color: #FDFDFD;
  width: 48px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #FDFDFD;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .form-field__tag {
    width: 44px;
    height: 28px;
    line-height: 28px;
  }
}

.form-field__label {
  font-size: 18px;
  font-weight: 700;
}

.form-field__select {
  color: #A1A1A1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: inherit;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 10px 46px 7px 20px;
  background: #FDFDFD url(../img/select-arrow.png) no-repeat center right/46px 46px;
  border: 1px solid #D9D9D9;
}
@media (min-width: 768px) {
  .form-field__select {
    padding: 11px 46px 11px 20px;
  }
}

.form-field__input {
  border: 1px solid #D9D9D9;
  padding: 10px 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .form-field__input {
    padding: 13px 46px 11px 20px;
  }
}
.form-field__input::-webkit-input-placeholder {
  color: #A1A1A1;
}
.form-field__input::-moz-placeholder {
  color: #A1A1A1;
}
.form-field__input:-ms-input-placeholder {
  color: #A1A1A1;
}
.form-field__input::-ms-input-placeholder {
  color: #A1A1A1;
}
.form-field__input::placeholder {
  color: #A1A1A1;
}

.form-field__textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: inherit;
  color: inherit;
  vertical-align: top;
  background: #FDFDFD;
  padding: 10px 20px;
  width: 100%;
  min-height: 92px;
  border: 1px solid #D9D9D9;
  resize: vertical;
  max-height: 300px;
}
@media (min-width: 768px) {
  .form-field__textarea {
    min-height: 96px;
    padding: 13px 46px 11px 20px;
  }
}

.contact-form__lead {
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .contact-form__lead {
    margin-top: 49px;
  }
}

.contact-form__privacy {
  margin-top: 20px;
  text-align: center;
}

.form-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
}

.form-checkbox__text::before,
.form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-checkbox__text::before {
  width: 15px;
  height: 15px;
  border: 1px solid #D9D9D9;
  background: #FDFDFD;
}

.form-checkbox__text::after {
  width: 15px;
  height: 15px;
  left: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  background: url(../img/icon-check.png) no-repeat center center/contain;
}

.contact-form__button {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .contact-form__button {
    margin-top: 47px;
  }
}

.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #202020;
}

.footer__inner {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer__inner {
    padding-left: 3.4722222222%;
    padding-right: 3.4722222222%;
  }
}

@media (min-width: 768px) {
  .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer__lists {
    gap: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 605px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 0;
}
@media (min-width: 768px) {
  .footer__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
  }
}

.footer__item {
  position: relative;
}
@media (min-width: 768px) {
  .footer__item:last-child {
    padding-left: 10px;
  }
}
.footer__item:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 20px;
  background: #FDFDFD;
}
@media (min-width: 768px) {
  .footer__item:last-child::before {
    height: 32px;
  }
}

.footer__link {
  display: block;
  padding: 5px 15px;
  color: #FDFDFD;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .footer__link {
    padding: 15px;
  }
}

.footer__policy-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 0;
}
@media (min-width: 768px) {
  .footer__policy-list {
    margin-right: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .footer__policy-item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (min-width: 768px) {
  .footer__policy-item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 768px) {
  .footer__policy-item:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.footer__policy-link {
  display: block;
  padding: 5px 15px;
  color: #FDFDFD;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .footer__policy-link {
    padding: 15px;
  }
}

.footer__copyright {
  color: #FDFDFD;
  display: block;
  padding: 5px 15px;
}
@media (min-width: 768px) {
  .footer__copyright {
    padding: 15px;
    font-size: 12px;
    line-height: 150%; /* 18px */
    letter-spacing: 0.3px;
  }
}

.footer__logo {
  display: none;
  width: 50%;
  text-align: right;
}
@media (min-width: 768px) {
  .footer__logo {
    display: block;
    width: calc(100% - 605px);
  }
}
.footer__logo img {
  width: 172px;
}

.footer__description {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .footer__description {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}

.footer__description-text {
  color: #FDFDFD;
  font-size: 14px;
  line-height: 150%; /* 21px */
}