@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #404040;
  font-family: "Noto Sans JP", serif;
  background: #fff;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fadein.fadein-left {
  -webkit-transform: translate(-30px, 0);
  transform: translate(-30px, 0);
}

.fadein.fadein-right {
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
}

.fadein.fadein-up {
  -webkit-transform: translate(0, -30px);
  transform: translate(0, -30px);
}

.fadein.fadein-bottom {
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
}

.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}

.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: translateY(20%) rotate(-45deg);
  transform: translateY(20%) rotate(-45deg);
}

.hidden-sp {
  display: none;
}

@media screen and (min-width: 960px) {
  .hidden-sp {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .hidden-pc {
    display: none;
  }
}
.strong {
  font-weight: 700;
  color: #EB6F00;
}

.large {
  font-size: 30px;
}

@media screen and (min-width: 960px) {
  .large {
    font-size: 42px;
  }
}
.inner {
  padding: 0 20px;
}

@media screen and (min-width: 960px) {
  .inner {
    max-width: 960px;
    padding: 0;
    margin: 0 auto;
  }
}
.heading {
  color: #EB6F00;
  font-family: "Fira Sans";
  font-size: 50px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 960px) {
  .heading {
    font-size: 100px;
  }
}
.heading-sub {
  color: #EB6F00;
  font-weight: 700;
  letter-spacing: 1.6px;
}

@media screen and (min-width: 960px) {
  .heading-sub {
    font-size: 24px;
  }
}
.heading-sub--white {
  color: #fff;
}

.heading--white {
  color: #fff;
}

.button {
  width: 100%;
  display: block;
  font-size: 14px;
  padding: 14px 0;
  position: relative;
  border-radius: 4px;
  text-align: center;
}

.button i {
  margin-left: 7px;
}

@media screen and (min-width: 960px) {
  .button {
    font-size: 18px;
    border-radius: 5px;
  }
}
.button--solid {
  border: 1px solid #EB6F00;
  color: #EB6F00;
  background-color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.button--solid:hover {
  background: #EB6F00;
  border: 1px solid #EB6F00;
  color: #fff;
}

.button--yellow {
  background: linear-gradient(262deg, #FF7914 2.97%, #F8B200 96.13%);
  border: 1px solid #F8B200;
  color: #fff;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.button--yellow:hover {
  opacity: 0.6;
}

.button__contact-sp {
  display: inline-block;
  background-color: #EB6F00;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

@media screen and (min-width: 960px) {
  .button__contact-sp {
    display: none;
  }
}
.button__contact-sp i {
  color: #fff;
}

.button__contact-sp:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1159px) {
  .button__contact-sp {
    display: inline-block;
    background-color: #EB6F00;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    -webkit-transition: opacity 0.8s;
    transition: opacity 0.8s;
  }
}
.button-red {
  background-color: #EB6F00;
  color: #fff;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.button-red:hover {
  background-color: #fff;
  border: 1px solid #EB6F00;
  color: #EB6F00;
}

.button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 960px) {
  .button-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.header {
  width: 100%;
  position: fixed;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.13));
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.13));
  z-index: 10;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__inner {
  padding: 10px 34px;
}

.header__logo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header__logo-top, .header__logo-bottom {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.42px;
}

@media screen and (min-width: 960px) {
  .header__logo-top, .header__logo-bottom {
    font-size: 9px;
  }
}
.header__logo-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.9px;
  line-height: 1;
}

@media screen and (min-width: 960px) {
  .header__logo-name {
    font-size: 18px;
  }
}
.header__logo-bottom {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.54px;
  text-align: right;
}

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

.header__button {
  display: none;
}

.header__button i {
  margin-left: 5px;
}

.header__button-sp {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

.header__button-sp i {
  color: #EB6F00;
}

.header__button-sp:hover {
  opacity: 0.7;
}

.header__open {
  margin-top: 3px;
}

@media screen and (min-width: 600px) {
  .header__open {
    display: none;
  }
}
.header__nav ul {
  display: none;
}

@media screen and (min-width: 960px) {
  .header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.header__nav li {
  position: relative;
  white-space: nowrap;
  margin-left: 46px;
}

@media screen and (min-width: 960px) {
  .header__nav li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__nav li:not(:first-child)::before {
  content: "／";
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header__nav a {
  font-weight: 600;
}

.header__nav a::after {
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  background: #EB6F00;
  position: absolute;
  bottom: 0;
  left: 10%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.header__nav a:hover {
  color: #EB6F00;
}

.header__nav a:hover::after {
  width: 80%;
}

@media screen and (max-width: 1148px) {
  .header__nav {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .header__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7px;
    width: 307px;
  }
  .header__button-sp {
    display: none;
  }
}
.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 55;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  top: 10px;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  top: 10px;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #EB6F00;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}

.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}

.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 60px;
  right: 0;
  background: linear-gradient(262deg, #FF7914 2.97%, #F8B200 96.13%);
  z-index: 50;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.drawer-content.is-checked {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.drawer-content__menu {
  padding: 86px 40px 40px;
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.drawer-content__button {
  margin-top: 14px;
  text-align: center;
}

.mv {
  padding-bottom: 35px;
}

.mv__inner {
  padding: 0 30px;
}

.mv__title {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .mv__title {
    width: 55%;
  }
}
.mv__title-main {
  color: #EB6F00;
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 3.08px;
}

@media screen and (min-width: 960px) {
  .mv__title-main {
    color: #EB6F00;
    font-size: 54px;
    letter-spacing: 5.94px;
  }
}
.mv__title-main--black {
  color: #404040;
}

.mv__title-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .mv__title-text {
    font-size: 24px;
  }
}
@media screen and (min-width: 960px) {
  .mv__title-text {
    font-size: 18px;
    line-height: 200%;
    letter-spacing: 0.18px;
    margin-top: 40px;
  }
}
.mv__image {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .mv__image {
    width: 60%;
    margin-left: auto;
  }
}
@media screen and (min-width: 960px) {
  .mv__image {
    width: 45%;
    height: 100%;
    margin-left: 0;
  }
}
.mv__content {
  width: 100%;
  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-top: 107px;
  padding-bottom: 80px;
}

.mv__slide {
  margin-top: 35px;
}

.mv__bg {
  width: 100%;
  position: relative;
}

.mv__bg::before {
  content: "";
  position: absolute;
  top: -35px;
  bottom: -200px;
  left: 0;
  right: 0;
  background-color: #FFFAED;
  -webkit-transform: skewY(8deg);
  transform: skewY(8deg);
  z-index: -1;
}

@media screen and (min-width: 960px) {
  .mv__bg::before {
    top: -40px;
    bottom: -350px;
  }
}
@media screen and (min-width: 1110px) {
  .mv__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 225px;
    padding-bottom: 36px;
    max-width: 1055px;
    margin: 0 auto;
  }
}
.mv__contact {
  padding-bottom: 25px;
}

@media screen and (min-width: 960px) {
  .mv__contact {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 960px) {
  .mv__contact-title {
    margin-top: 130px;
    text-align: center;
  }
}
.mv__contact-title--head {
  color: #EB6F00;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-align: left;
}

@media screen and (min-width: 960px) {
  .mv__contact-title--head {
    font-size: 28px;
  }
}
.mv__contact-title--head i {
  margin-right: 10px;
}

.mv__contact-title--body {
  margin-top: 10px;
  margin-bottom: 15px;
  line-height: 170%;
  letter-spacing: 0.96px;
  text-align: justify;
  font-size: 15px;
}

@media screen and (min-width: 960px) {
  .mv__contact-title--body {
    font-size: 17px;
    text-align: left;
    font-weight: 500;
    margin-top: 37px;
  }
}
.mv__contact-button {
  margin-bottom: 34px;
}

@media screen and (min-width: 960px) {
  .mv__contact-button {
    margin-bottom: 78px;
    margin-top: 50px;
    width: 447px;
  }
}
.slide__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.slide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  gap: 5px;
}

.slide__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.slide__item {
  width: 40vw;
}

@media screen and (min-width: 960px) {
  .slide__item {
    width: 20vw;
  }
}
@media screen and (min-width: 960px) {
  .slide__item--02 {
    width: 16.6666666667vw;
  }
}
.slide__item > img {
  width: 100%;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.news {
  padding-top: 35px;
  padding-bottom: 35px;
}

.news__content {
  margin: 0 auto;
}

.news__card {
  background: #FFF;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  padding: 10px 20px;
  margin-top: 45px;
  margin-bottom: 45px;
}

.news__title {
  font-family: "Lato", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.8px;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .news__title {
    font-size: 50px;
    letter-spacing: 5px;
    -moz-text-align-last: left;
    text-align-last: left;
  }
}
.news__lists {
  margin: 10px;
}

@media screen and (min-width: 960px) {
  .news__lists {
    margin: 28px;
  }
}
.news__list:nth-child(n+2) {
  position: relative;
}

.news__list:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #E3E3E3;
}

.news__link {
  text-align: right;
  margin-top: 15px;
}

.news__link a {
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  border-bottom: 2px solid currentColor;
  padding-bottom: 8px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.news__link a:hover {
  color: #FABE00;
}

.news__button {
  margin-top: 40px;
  margin: 0 auto;
  display: inline-block;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .news__button {
    width: 300px;
    text-align: left;
  }
}
.news-link {
  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;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media screen and (min-width: 960px) {
  .news-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 0;
  }
}
.news-link:hover {
  background-color: #FFF9E5;
}

.news-link__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

@media screen and (min-width: 960px) {
  .news-link__meta {
    width: 230px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 14px;
  }
}
.news-link__date {
  color: #888;
  white-space: nowrap;
  font-size: 14px;
}

@media screen and (min-width: 960px) {
  .news-link__date {
    width: 119px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.news-link__label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
  padding: 2px 10px;
  min-width: 63px;
  text-align: center;
  border: 1px solid #EB6F00;
  color: #EB6F00;
  background-color: #fff;
}

.news-link__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (min-width: 960px) {
  .service {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
.service__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

@media screen and (min-width: 960px) {
  .service__cards {
    margin-top: 90px;
    gap: 70px;
  }
}
.service__card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  background-image: url(../img/service__bg.png);
  background-size: cover;
  padding: 25px;
  border-radius: 10px;
}

@media screen and (min-width: 960px) {
  .service__card {
    padding: 25px 50px;
    gap: 74px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.service img {
  width: 335px;
  height: 100%;
}

@media screen and (min-width: 960px) {
  .service img {
    height: 255px;
  }
}
.service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 960px) {
  .service__content {
    width: 452px;
  }
}
.service__content--title {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

@media screen and (min-width: 960px) {
  .service__content--title {
    font-size: 32px;
    margin-top: 0;
  }
}
.service__content--text {
  color: #FFF;
  margin-top: 20px;
}

.service__content--button {
  margin-top: 30px;
}

.service__button {
  max-width: 220px;
  padding: 18px 47px;
  background-color: #fff;
  border-radius: 50px;
  color: #EB6F00;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.service__button:hover {
  opacity: 0.7;
}

@media screen and (min-width: 960px) {
  .problem {
    margin-top: 100px;
  }
}
.problem__bg {
  background-image: url(../img/bg-problem-sp.png);
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (min-width: 960px) {
  .problem__bg {
    background-image: url(../img/bg-problem.png);
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.problem__content {
  color: #FFF;
}

.problem__content--head {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  display: block;
}

@media screen and (min-width: 960px) {
  .problem__content--head {
    font-size: 34px;
  }
}
.problem__content--head:not(:first-child) {
  margin-top: 18px;
}

@media screen and (min-width: 960px) {
  .problem__content--head:not(:first-child) {
    margin-top: 18px;
  }
}
.problem__content--body {
  display: block;
  margin-top: 30px;
  font-size: 20px;
}

@media screen and (min-width: 960px) {
  .problem__content--body {
    font-size: 24px;
    margin-top: 80px;
  }
}
.problem__content--text {
  text-align: left;
  font-weight: 400;
}

@media screen and (min-width: 960px) {
  .problem__content--text {
    font-size: 18px;
    white-space: nowrap;
  }
}
.solve {
  padding: 60px 0;
}

.solve__bg {
  width: 100%;
  position: relative;
}

.solve__bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 160px;
  left: 0;
  right: 0;
  background-color: #FFF9E5;
  -webkit-transform: skewY(8deg);
  transform: skewY(8deg);
  z-index: -1;
}

@media screen and (min-width: 960px) {
  .solve__bg::before {
    top: 200px;
    bottom: -200px;
  }
}
.solve__content {
  padding-bottom: 60px;
}

.solve__content--head {
  color: #EB6F00;
  text-align: right;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}

@media screen and (min-width: 960px) {
  .solve__content--head {
    font-size: 32px;
    text-align: right;
  }
}
.solve__content--text {
  text-align: justify;
  font-weight: 500;
  margin-top: 40px;
}

@media screen and (min-width: 960px) {
  .solve__content--text {
    font-size: 18px;
    text-align: right;
    margin-top: 80px;
  }
}
.solve__content--head2 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-top: 70px;
}

@media screen and (min-width: 960px) {
  .solve__content--head2 {
    text-align: center;
    font-size: 28px;
    margin-top: 100px;
  }
}
.solve__content--text2 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  text-decoration-line: underline;
  white-space: nowrap;
  margin-top: 50px;
}

@media screen and (min-width: 960px) {
  .solve__content--text2 {
    font-size: 32px;
  }
}
.image__boxes {
  max-width: 960px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 960px) {
  .image__boxes {
    gap: 60px;
  }
}
.image__box {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .image__box {
    width: calc(50% - 30px);
  }
}
.image__box-text {
  font-size: 14px;
}

@media screen and (min-width: 960px) {
  .image__box-text {
    font-size: 18px;
  }
}
.image__box-text i {
  margin-right: 5px;
  color: #EB6F00;
}

@media screen and (min-width: 960px) {
  .image__box-text i {
    margin-right: 10px;
  }
}
.image__slide {
  margin-top: 65px;
}

@media screen and (min-width: 960px) {
  .image__slide {
    margin-top: 138px;
  }
}
.book {
  padding-top: 60px;
  padding-bottom: 60px;
}

.book__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  gap: 10px;
}

@media screen and (min-width: 960px) {
  .book__boxes {
    max-width: 960px;
    margin: 0 auto;
    gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.book__box {
  width: calc(50% - 5px);
  text-align: center;
}

@media screen and (min-width: 960px) {
  .book__box {
    width: calc(20% - 15px);
  }
}
.book__box:nth-child(n+3) {
  margin-top: 40px;
}

@media screen and (min-width: 960px) {
  .book__box:nth-child(n+3) {
    margin-top: 0;
  }
}
.book__box img {
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
}

@media screen and (min-width: 960px) {
  .book__box img {
    height: 250px;
  }
}
.book__box p {
  line-height: 1.5;
  margin-top: 10px;
  font-size: 14px;
  text-align: left;
}

@media screen and (min-width: 960px) {
  .book__box p {
    white-space: nowrap;
  }
}
.mission__bg {
  background-image: url(../img/missio__bg-sp.png);
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media screen and (min-width: 960px) {
  .mission__bg {
    background-image: url(../img/mission__bg.png);
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.mission__content {
  margin-top: 40px;
  color: #FFF;
  text-align: justify;
  font-size: 22px;
}

@media screen and (min-width: 960px) {
  .mission__content {
    margin-top: 80px;
    font-size: 34px;
  }
}
.mission__content-head {
  color: #FFF;
  text-align: justify;
  font-weight: 700;
}

.mission__content-head2 {
  margin-top: 20px;
  font-weight: 700;
}

.footer {
  background: #002A5E;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 20px;
}

.footer__name {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.08px;
}

@media screen and (min-width: 960px) {
  .footer__name {
    font-size: 18px;
  }
}
.footer__box {
  margin-top: 20px;
}

.footer__qa {
  gap: 40px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 315px;
}

@media screen and (min-width: 960px) {
  .footer__qa {
    width: 45%;
  }
}
.footer__q {
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 2px;
}

.footer__a {
  padding-top: 2px;
  line-height: 170%;
  font-size: 14px;
}

.footer__button-box {
  max-width: 400px;
  margin: 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 23px;
  gap: 12px;
}

.footer__button-box button {
  width: 100%;
}

.footer__rule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  text-decoration-line: underline;
  margin-top: 25px;
}

@media screen and (min-width: 960px) {
  .footer__rule {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
  }
}
.footer__copyright {
  text-align: center;
  margin-top: 50px;
  font-size: 9px;
}

@media screen and (min-width: 960px) {
  .footer__copyright {
    font-size: 14px;
  }
}
.page__inner {
  padding: 0 28px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .page__inner {
    max-width: 1140px;
    margin: 0 auto;
  }
}
.page__head-box {
  padding: 91px 0 19px 0;
}

@media screen and (min-width: 768px) {
  .page__head-box {
    padding: 158px 0 53px 0;
  }
}
.page__head-title {
  position: relative;
  padding-left: 17px;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .page__head-title {
    font-size: 22px;
    padding-left: 25px;
  }
}
.page__head-title::before {
  content: " ";
  position: absolute;
  display: inline-block;
  background-color: #EB6F00;
  height: 8px;
  width: 8px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .page__head-title::before {
    height: 11px;
    width: 11px;
  }
}
.breadcrumb {
  color: #DDD;
  font-size: 10px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .breadcrumb {
    font-size: 12px;
  }
}
/* --------------------- 固定ページ ------------------------------------------ */
.entry-body {
  padding-bottom: 60px;
}

.entry-body h2 + p,
.entry-body h3 + p,
.entry-body h4 + p,
.entry-body h5 + p,
.entry-body h6 + p {
  margin-top: 0;
  line-height: 2;
}

.entry-body h2 {
  background: #FFF9E5;
  border-radius: 3px;
  border-top: 6px solid #EB6F00;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 38px;
  margin-top: 79px;
  padding: 24px 20px;
  position: relative;
  text-align: left;
}

.entry-body h2::after {
  border: 5px solid transparent;
  border-top: 15px solid #FFF9E5;
  content: "";
  height: 0;
  left: 24px;
  position: absolute;
  top: 100%;
  width: 0;
}

.entry-body h3 {
  border-bottom: 3px solid #EB6F00;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  margin-top: 84px;
  padding-bottom: 14px;
}

.entry-body h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 16px;
  margin-top: 82px;
  padding-left: 42px;
  position: relative;
}

.entry-body h4::before {
  color: #EB6F00;
  content: "\f00c";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 26px;
  font-weight: 900;
  left: 0;
  position: absolute;
  top: -8px;
}

.entry-body h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 27px;
  margin-top: 60px;
}

.entry-body h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1em;
  margin-top: 2em;
}

.entry-body p {
  line-height: 2;
  margin-top: 30px;
}

.entry-body ul {
  list-style-type: disc;
  margin-bottom: 1em;
  padding-left: 20px;
}

.entry-body ol {
  list-style-type: decimal;
  margin-bottom: 1em;
  padding-left: 20px;
}

.entry-body li {
  line-height: 2;
  margin-bottom: 0.4em;
  margin-top: 0.4em;
}

.entry-body blockquote {
  background: #f3f3f3;
  line-height: 1.6;
  margin-bottom: 1em;
  margin-top: 1em;
  padding: 1em;
}

.entry-body blockquote > :first-child {
  margin-top: 0;
}

.entry-body blockquote > :last-child {
  margin-bottom: 0;
}

.entry-body q {
  background: #eee;
  display: inline-block;
  padding-left: 0.2em;
  padding-right: 0.2em;
  vertical-align: middle;
}

.entry-body strong,
.entry-body b {
  font-weight: 600;
}

.entry-body a {
  color: #1592e6;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.entry-body a:hover {
  opacity: 0.6;
}

.entry-body img {
  vertical-align: middle;
}

.entry-body .entry-btn {
  margin: 1em 0;
  text-align: center;
}

.entry-body .entry-btn .button {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.entry-body .entry-btn .button:hover {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .entry-body {
    padding-bottom: 100px;
  }
  .entry-body h2 {
    font-size: 20px;
    margin-top: 80px;
    padding: 27px 17px;
  }
  .entry-body h3 {
    font-size: 20px;
  }
}
/* --------------------- 404 ------------------------------------------ */
.entry-404 {
  padding-top: 120px;
  padding-bottom: 85px;
  text-align: center;
}

.entry-404-head {
  color: #FFF9E5;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 36px;
}

.entry-404-lead {
  color: #808080;
  font-weight: 600;
  margin-bottom: 24px;
}

.entry-404-lead .m_sp {
  display: none;
}

.entry-404-content {
  color: #808080;
}

.entry-404-btn {
  margin-top: 58px;
}

.entry-404-btn .btn {
  background: #ebebeb;
  color: #8d8d8d;
}

.entry-404-btn .btn:hover {
  background: #ccc;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .entry-404 {
    padding-top: 200px;
    padding-bottom: 150px;
    text-align: center;
  }
  .entry-404-head {
    color: #EB6F00;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 36px;
  }
  .entry-404-lead {
    color: #808080;
    font-weight: 600;
    margin-bottom: 24px;
  }
  .entry-404-lead .m_sp {
    display: none;
  }
  .entry-404-content {
    color: #808080;
  }
  .entry-404-btn {
    width: 350px;
    margin: 50px auto;
  }
  .entry-404-btn .btn {
    background: #ebebeb;
    color: #8d8d8d;
  }
  .entry-404-btn .btn:hover {
    background: #ccc;
    opacity: 1;
  }
}
/* archive ---------------------------------- */
.archive-head.m_description {
  margin-bottom: 20px;
}

.archive-lead {
  color: #EB6F00;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.archive-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
}

.archive-title.m_category::before {
  color: #EB6F00;
  content: "\f02d";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-right: 8px;
}

.archive-title.m_search span {
  color: #EB6F00;
  font-weight: 600;
}

.archive-title.m_search::before {
  color: #EB6F00;
  content: "\f002";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin-right: 8px;
}

.archive-description {
  font-size: 14px;
  line-height: 1.4;
}

/* entry ------------------------------------ */
.entry-item {
  background: #fff;
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
}


.entry-item:hover {
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
}

.entry-item-img {
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.entry-item-body {
  padding: 20px;
}

.entry-item-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.entry-item-published {
  color: #808080;
  font-size: 12px;
}

.entry-item-published::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  margin-right: 8px;
}

.entry-item-tag {
  background: #FABE00;
  color: #fff;
  display: block;
  font-size: 12px;
  margin-right: 15px;
  background-size: cover;
  background-position: center;
  padding: 2px 8px;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .entry-item-tag {
    padding: 5px 10px;
    border-radius: 4px;
  }
}

.entry-item-tag.cat-event {
  background-color: #ffe6e6;
  color: #900;
}

.entry-item-tag.cat-news {
  background-color: #e6f0ff;
  color: #006;
}

.entry-item-tag.cat-seminar {
  background-color: #fff0e6;
  color: #a60;
}

.entry-item-tag.cat-books {
  background-color: #f0ffe6;
  color: #080;
}


.entry-item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 7px;
}

@media screen and (min-width: 768px) {
  .entry-item-title {
    color: #454545;
    font-size: 16px;
    line-height: 1.71429;
    display: block;
    margin-top: 7px;
  }
}
.entries.m_horizontal {
  margin-bottom: 62px;
}

.entries.m_horizontal .entry-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 13px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .entries.m_horizontal .entry-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
    margin-right: 15px;
    padding: 20px;
  }
}
.entries.m_horizontal .entry-item:last-child {
  margin-bottom: 0;
}

.entries.m_horizontal .entry-item .entry-item-img {
  width: 36.02941%;
}

.entries.m_horizontal .entry-item .entry-item-body {
  padding: 0 0 0 20px;
  width: 63.97059%;
}

.entries.m_block .entry-item {
  width: 100%;
  margin-right: 0;
}

.entries.m_block .entry-item .entry-item-body {
  padding: 20px;
  width: 100%;
}

.entries.m_block .entry-item .entry-item-published {
  font-size: 14px;
}

.entries.m_block .entry-item .entry-item-tag {
  font-size: 14px;
}

.entries.m_block .entry-item .entry-item-title {
  font-size: 20px;
}

.entry-item-excerpt {
  display: none;
}

@media screen and (min-width: 768px) {
  .entry-item-excerpt {
    color: #808080;
    font-size: 14px;
    line-height: 1.7;
    display: block;
    margin-top: 7px;
    font-weight: 400;
  }
}

.entry {
  background: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  padding: 20px 20px 12px;
}

.entry-label {
  display: inline-block;
  margin-bottom: 18px;
}

.entry-label a {
  background: #053481;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 4px 16px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.entry-label a:hover {
  opacity: 0.6;
}

.entry-title {
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 18px;
}

.m_page .entry-title {
  margin-bottom: 34px;
}

.entry-meta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}

.entry-published,
.entry-updated {
  color: #808080;
  font-size: 12px;
}

.entry-published::before,
.entry-updated::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  margin-right: 8px;
}

.entry-updated {
  margin-left: 27px;
}

.entry-updated::before {
  content: "\f1da";
  font-weight: 900;
}

.entry-img {
  text-align: center;
}

.entry-tag-items {
  border-top: 1px solid #e2e2e2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0;
}

.entry-tag-head {
  background: #808080;
  border-radius: 3px;
  color: #fff;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-right: 15px;
  padding: 6px 15px 0;
}

.entry-tag-head::before {
  content: "\f02b";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 5px;
}

.entry-tag-item {
  margin-bottom: 10px;
  margin-right: 15px;
}

.entry-tag-item:last-child {
  margin-right: 0;
}

.entry-tag-item a {
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  color: #808080;
  display: block;
  font-size: 14px;
  padding: 6px 18px 5px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.entry-tag-item a:hover {
  background: #808080;
  border-color: #808080;
  color: #fff;
}

.contents {
  max-width: 1280px;
}

.entry-label a:hover {
  opacity: 0.6;
}

.breadcrumb--single {
  text-align: left;
}

.breadcrumb--single {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .breadcrumb--single {
    margin-top: 40px;
  }
}
.single {
  width: 100%;
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  .single {
    max-width: 1280px;
    padding-top: 110px;
    margin: 0 auto;
  }
}
.single__inner {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 768px) {
  .single__inner {
    max-width: 1140px;
    margin: 0 auto;
  }
}
.single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #dddddd;
  font-size: 12px;
  gap: 15px;
}

@media screen and (min-width: 768px) {
  .single__meta {
    gap: 40px;
  }
}
.single__label {
  border: 1px solid #EB6F00;
  background-color: #fff;
  color: #EB6F00;
  font-size: 12px;
  display: inline-block;
  padding: 8px;
}

@media screen and (min-width: 768px) {
  .single__label {
    padding: 8px 12px;
  }
}
.single__body {
  margin-top: 25px;
}

.single__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .single__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
  }
}
.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 100px;
  }
}
#primary {
  margin-bottom: 0;
  padding-top: 60px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  #primary {
    width: 63.45455%;
    margin: 0 auto;
  }
}
#secondary {
  width: 100%;
}

@media screen and (min-width: 768px) {
  #secondary {
    margin-left: auto;
    width: 30.90909%;
    padding-top: 60px;
  }
}
.widget iframe {
  width: 100%;
}

.widget-title {
  border-bottom: 4px dotted #EB6F00;
  padding-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 30px;
}

.search-form {
  position: relative;
}

.search-field {
  width: 100%;
  border: #e2e2e2 1px solid;
  padding: 20px 24px;
  padding-right: 70px;
}

.search-field:focus {
  outline: 0;
}

.search-submit {
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #e2e2e2;
  padding: 0;
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget_block .wp-block-archives li a {
  border-bottom: 1px solid #e2e2e2;
  display: block;
  font-size: 14px;
  padding: 20px 20px 14px 0;
  position: relative;
  text-decoration: none;
  color: #747474;
}

.wpost-item,
.rpwe-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.wpost-item-img,
.rpwe-img img {
  width: 120px;
}

.wpost-item-body {
  width: calc(100% - 120px);
  padding: 0px 0px 0px 10px;
}

.wpost-item-title a,
.rpwe-block h3 a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.57143;
}

.m_ranking .wpost-item::after {
  background: #ECB815;
}

/* ページネーション ------------------------------------------*/
.pagination {
  margin-top: 12px;
  text-align: left;
}

.pagination a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagination a:hover {
  opacity: 0.6;
}

.pagination a.next,
.pagination a.prev {
  font-size: 30px;
}

.pagination a.next:hover,
.pagination a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #808080;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  height: 40px;
  line-height: 38px;
  margin-right: 14px;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #EB6F00;
  border: 1px solid #EB6F00;
  color: #fff;
  font-weight: 700;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
}

.fa-circle-right,
.fa-envelope {
  margin-left: 4px;
}

.service__button i {
  margin-left: 10px;
}