@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #171F35;
  line-height: 1.5;
  font-weight: 500;
}

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

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

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media (min-width: 1150px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

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

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 0;
}

.l-inner {
  width: 100%;
  max-width: 1200px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* fade */
.fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.fade.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/* footer */
.footer {
  text-align: center;
  background: #171F35;
  padding: 100px 0 230px;
  padding: 6.25rem 0 14.375rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2.5rem 0 5rem;
  }
}

.footer__entitle {
  width: 394px;
  width: 24.625rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__entitle {
    width: 17.5rem;
  }
}

.footer__title {
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .footer__title {
    font-size: 0.875rem;
  }
}

/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 75px;
  height: 4.6875rem;
  color: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.75rem;
  }
}
.header.scrolled {
  background: rgba(35, 50, 68, .7);
}

.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;
  height: inherit;
}

.header__titles {
  text-align: center;
  display: block;
}

.header__entitle {
  width: 336px;
  width: 21rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header__entitle {
    width: 11.25rem;
  }
}

.header__title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .header__title {
    font-size: 0.625rem;
  }
}

.header__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__line {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .header__text {
    text-align: center;
    font-size: 0.75rem;
  }
}

.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 16px;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .header__links {
    margin-left: 0;
    margin-top: 0.1875rem;
  }
}

.header__link {
  display: inline-block;
  border: 1px solid #fff;
  padding: 4px 20px;
  padding: 0.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .header__link {
    font-size: 0.75rem;
    padding: 0.125rem 0.9375rem;
  }
}
.header__link + .header__link {
  margin-left: 13px;
  margin-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .header__link + .header__link {
    margin-left: 0.5rem;
  }
}

/* main */
.main {
  overflow: hidden;
}

/* section-title */
.section-title {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

/* about */
.about {
  color: #fff;
  background: #171F35;
  border-top: 5px solid #988541;
  border-top: 0.3125rem solid #988541;
  padding: 90px 0 72px;
  padding: 5.625rem 0 4.5rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 5rem 0;
    border-top: 0.1875rem solid #988541;
  }
}

.about__entitle {
  width: 128px;
  width: 8rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about__entitle {
    width: 5rem;
  }
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .about__inner {
    display: block;
    margin-top: 2.5rem;
  }
}

.about__img {
  margin-left: calc(50% - 50vw);
  width: 45.5vw;
}
@media screen and (max-width: 767px) {
  .about__img {
    width: 100vw;
    margin: 2.5rem calc(50% - 50vw) 0;
  }
}
.about__img img {
  border-radius: 0 1.25rem 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .about__img img {
    border-radius: 0;
  }
}

.about__body {
  width: 48.5%;
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .about__body {
    width: 100%;
    padding-top: 0;
  }
}

.about__text {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 1.125rem;
  }
}

.about__subtext {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .about__subtext {
    font-size: 1rem;
  }
}

/* company */
.company {
  background: #F3F3F3;
  padding: 95px 0 97px;
  padding: 5.9375rem 0 6.0625rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 5rem 0;
  }
}

.company__entitle {
  width: 200px;
  width: 12.5rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company__entitle {
    width: 9.375rem;
  }
}

.company__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 85px;
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .company__items {
    display: block;
    margin-top: 2.5rem;
  }
}

.company__item {
  display: block;
  width: 315px;
  width: 19.6875rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .company__item {
    margin: 0 auto;
  }
}
.company__item + .company__item {
  margin-left: 87px;
  margin-left: 5.4375rem;
}
@media screen and (max-width: 767px) {
  .company__item + .company__item {
    margin-left: auto;
    margin-top: 1.25rem;
  }
}
.company__item:first-child .company__item-img img {
  width: 215px;
  width: 13.4375rem;
}
.company__item:last-child .company__item-img img {
  width: 198px;
  width: 12.375rem;
}

.company__item-img {
  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;
  min-height: 209px;
  min-height: 13.0625rem;
  background: #fff;
  border-radius: 0 1.25rem 0 0;
}
.company__item-text {
  text-align: center;
  color: #fff;
  font-weight: 600;
  background: #171F35;
  padding: 16px 20px 36px;
  padding: 1rem 1.25rem 2.25rem;
  position: relative;
}
.company__item-text::after {
  position: absolute;
  content: "";
  width: 61px;
  width: 3.8125rem;
  height: 9px;
  height: 0.5625rem;
  background: url(../img/arrow-icon02.png) no-repeat center/contain;
  right: 18px;
  right: 1.125rem;
  bottom: 20px;
  bottom: 1.25rem;
}

/* contact */
.contact {
  background: #171F35;
  color: #fff;
  padding: 95px 0 117px;
  padding: 5.9375rem 0 7.3125rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 5rem 0;
  }
}

.contact__entitle {
  width: 162px;
  width: 10.125rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact__entitle {
    width: 7.5rem;
  }
}

.contact__title {
  color: #fff;
}

.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    display: block;
    margin-top: 2.5rem;
  }
}

.contact__img {
  margin-left: calc(50% - 50vw);
  width: 41vw;
}
@media screen and (max-width: 767px) {
  .contact__img {
    width: 100vw;
    margin: 2.5rem calc(50% - 50vw) 0;
  }
}
.contact__img img {
  border-radius: 0 1.25rem 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .contact__img img {
    border-radius: 0;
  }
}

.contact__body {
  width: 48.5%;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .contact__body {
    width: 100%;
  }
}

.contact__text {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 1.25rem;
  }
}

.contact__subtext {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .contact__subtext {
    font-size: 1rem;
  }
}

.contact__box {
  background: #988541;
  border-radius: 0 1.25rem 0 0;
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 50px 20px;
  padding: 3.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .contact__box {
    padding: 1.5625rem 1.25rem;
  }
}

.contact__box-text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact__box-text {
    font-size: 1rem;
  }
}

.contact__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.contact__link {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  border: 1px solid #fff;
  border: 0.0625rem solid #fff;
  padding: 11px 51px;
  padding: 0.6875rem 3.1875rem;
}
@media screen and (max-width: 767px) {
  .contact__link {
    font-size: 1rem;
    padding: 0.5rem 2.1875rem;
  }
}
.contact__link + .contact__link {
  margin-left: 24px;
  margin-left: 1.5rem;
}

/* flow */
.flow {
  padding: 95px 0 115px;
  padding: 5.9375rem 0 7.1875rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 5rem 0;
  }
}

.flow__entitle {
  width: 101px;
  width: 6.3125rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .flow__entitle {
    width: 5rem;
  }
}

.flow__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 973px;
  width: 60.8125rem;
  max-width: 100%;
  margin: 85px auto 0;
  margin: 5.3125rem auto 0;
}
@media screen and (max-width: 767px) {
  .flow__items {
    display: block;
    margin-top: 2.5rem;
  }
}

.flow__item {
  width: calc(33.33333% - 2.83333rem);
}
@media screen and (max-width: 767px) {
  .flow__item {
    width: 100%;
  }
  .flow__item + .flow__item {
    margin-top: 5rem;
  }
}
.flow__item:not(:nth-child(3n+1)) {
  margin-left: 68px;
  margin-left: 4.25rem;
}
@media screen and (max-width: 767px) {
  .flow__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
.flow__item + .flow__item {
  position: relative;
}
.flow__item + .flow__item::before {
  position: absolute;
  content: "";
  width: 20px;
  width: 1.25rem;
  height: 29px;
  height: 1.8125rem;
  background: url(../img/arrow-icon01.png) no-repeat center/contain;
  top: 130px;
  top: 8.125rem;
  left: -45px;
  left: -2.8125rem;
}
@media screen and (max-width: 767px) {
  .flow__item + .flow__item::before {
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    top: -3.125rem;
  }
}
.flow__item:first-child .flow__item-icon img {
  width: 72px;
  width: 4.5rem;
}
.flow__item:nth-child(2) .flow__item-icon img {
  width: 71px;
  width: 4.4375rem;
}
.flow__item:last-child .flow__item-icon img {
  width: 78px;
  width: 4.875rem;
}

.flow__item-icon {
  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;
  width: 151px;
  width: 9.4375rem;
  min-width: 151px;
  min-width: 9.4375rem;
  height: 151px;
  height: 9.4375rem;
  margin: 0 auto;
  border: 1px solid rgba(23, 31, 53, .3);
  border: 0.0625rem solid rgba(23, 31, 53, .3);
  border-radius: 50%;
}
.flow__item-icon img {
  max-width: 100%;
}

.flow__item-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1.25rem;
  }
}

.flow__item-text {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  margin-top: 10px;
  margin-top: 0.625rem;
}

/* mv */
.mv {
  text-align: center;
  color: #fff;
  background: url(../img/mv-bg.jpg) no-repeat center/cover;
  padding: 250px 0 60px;
  padding: 15.625rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 9.375rem 0 2.5rem;
  }
}

.mv__entitle {
  width: 531px;
  width: 33.1875rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mv__entitle {
    width: 20rem;
  }
}

.mv__title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.125rem;
  }
}

.mv__text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 1rem;
  }
}

.mv__scroll {
  width: 164px;
  width: 10.25rem;
  max-width: 100%;
  margin: 180px auto 0;
  margin: 11.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .mv__scroll {
    width: 6.25rem;
    margin-top: 3.75rem;
  }
}

/* point */
.point {
  padding: 98px 0 96px;
  padding: 6.125rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .point {
    padding: 5rem 0;
  }
}

.point__entitle {
  width: 107px;
  width: 6.6875rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .point__entitle {
    width: 5rem;
  }
}

.point__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 993px;
  width: 62.0625rem;
  max-width: 100%;
  margin: 52px auto 0;
  margin: 3.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .point__items {
    display: block;
  }
}

.point__item {
  border-radius: 0 1.25rem 0 0;
  border: 2px solid #171F35;
  border: 0.125rem solid #171F35;
  width: calc(33.33333% - 1rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__item {
    width: 100%;
  }
  .point__item + .point__item {
    margin-top: 1.875rem;
  }
}
.point__item:not(:nth-child(3n+1)) {
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .point__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
.point__item:first-child .point__item-number {
  width: 26px;
  width: 1.625rem;
}
.point__item:nth-child(2) .point__item-number {
  width: 34px;
  width: 2.125rem;
}
.point__item:last-child .point__item-number {
  width: 32px;
  width: 2rem;
}

.point__item-img {
  -o-object-fit: cover;
     object-fit: cover;
}
.point__item-img img {
  border-radius: 0 0.9375rem 0 0;
}

.point__item-body {
  padding: 17px 13px 45px;
  padding: 1.0625rem 0.8125rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .point__item-body {
    padding-bottom: 1.875rem;
  }
}

.point__item-title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .point__item-title {
    font-size: 1.25rem;
  }
}

.point__item-text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.point__item-number {
  position: absolute;
  left: 10px;
  left: 0.625rem;
  bottom: -12px;
  bottom: -0.75rem;
}

/* service */
.service {
  background: #988541;
  padding: 95px 0 32px;
  padding: 5.9375rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 5rem 0 2.5rem;
  }
}

.service__entitle {
  width: 151px;
  width: 9.4375rem;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service__entitle {
    width: 6.25rem;
  }
}

.service__title {
  color: #fff;
}

.service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 72px;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .service__items {
    display: block;
    margin-top: 2.5rem;
  }
}

.service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(33.33333% - 0.66667rem);
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
    margin-top: 0;
  }
  .service__item + .service__item {
    margin-top: 0.625rem;
  }
}
.service__item:not(:nth-child(3n+1)) {
  margin-left: 16px;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .service__item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}

.service__item-img {
  width: 31%;
}
.service__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.service__item-body {
  width: 69%;
  background: #fff;
  padding: 7px 19px;
  padding: 0.4375rem 1.1875rem;
}

.service__item-title {
  font-weight: 600;
}

.service__item-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.service__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .service__text {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
