body {
  font-family: 'ヒラギノ角ゴシック' ,'游ゴシック体';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  line-height: 1;
  letter-spacing: 0.05em;
  background-color: #f5f5f5;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
 .wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  letter-spacing: 0;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}



/*
 * Module
 * -------------------------------------------------------------------
 */
 .gray-back {
   background-color: #f5f5f5;
 }
 .orange-back {
   background-color: #fff6e5;
 }
 .white-back {
   background-color: #ffffff;
 }
 .nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.1);
}

.nav-header__container {
  display: flex;
  justify-content: space-between;
  max-width: 1140px;
  height: 60px;
  margin: 0 auto;
  padding: 0 0 0 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  padding-left: 45px;
}

@media screen and (min-width: 992px) {
  .nav-header__container {
    padding: 0 15px;
  }
}

.nav-header__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .nav-header__menu {
    display: flex;
    align-items: center;
  }
}

.nav-header__logo {
  display: flex;
  margin-right: auto;
  width: 200px;
}

.nav-header__logo-small {
  display: flex;
  align-items: center;
  width: 200px;
}
@media (min-width: 992px) {
  .nav-header__logo-small {
    display: none;
  }
}

.nav-header__menu-item {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  margin-right: 16px;
}

@media (min-width: 1080px) {
  .nav-header__menu-item {
    margin-right: 32px;
  }
}

.nav-header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #222222;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.nav-header__link:after {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #ff791d;
  content: "";
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-header__link:hover:after {
  opacity: 1;
  width: 100%;
}

.nav-header__menu-item-right {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

.right-box{
  display: none;
}
@media (min-width: 992px) {
  .right-box{
    display: flex;
    justify-content: end;
  margin-left: auto;
  }
}

.nav-header__contact {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s,
  text-shadow .2s,
  background-color .2s, 
  border-color .2s,
  opacity .2s;
  background-color: #ff791d;
  color: #ffffff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  padding: 11px 26px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
}

.nav-header__instagram{
  background-color: #04ab98;
  color: #ffffff;
  border-radius: 100px;
  padding: 8px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
  margin-right: 10px;
}
.nav-header__instagram:hover {
  opacity: 70%;
}

.nav-header__contact:hover {
  opacity: 70%;
}

.nav-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  background: #f5f5f5;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  margin-left: 10px;
}

@media (min-width: 992px) {
  .nav-header__toggle {
    display: none;
  }
}

.nav-header__toggle:hover {
  opacity: 80%;
}

.nav-header__toggle-line {
  display: block;
  width: 35%;
  border-bottom: 2px solid #5f5f5f;
}

.nav-header__toggle-line:nth-child(2) {
  margin: 10% 0px;
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1002;
}

.nav-drawer__container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  max-width: 350px;
  min-width: 200px;
  background: #fff;
  border-left: #e2e2e2 1px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}

.nav-drawer[data-open="true"] .nav-drawer__container {
  animation-name: menu-container-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__container {
  animation-name: menu-container-leaved;
}

.nav-drawer__menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.nav-drawer__menu-item {
  border-bottom: #e2e2e2 1px dashed;
}

.nav-drawer__menu-item:hover {
  background: #efefef;
}

.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  letter-spacing: 0.01em;
  padding: 16px 40px 16px 32px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
}

.nav-drawer__link-main {
  display: block;
  font-weight: 500;
}

.nav-drawer__link-sub {
  color: #aaa;
  display: block;
}

.nav-drawer__menu-button {
  display: flex;
  margin: 0px;
  padding: 0px;
}

.nav-drawer__button-close {
  position: relative;
  background-color: #f5f5f5;
  margin: 0px 0px 0px auto;
  padding: 0px;
  width: 60px;
  height: 60px;
  border: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  opacity: 80%;
}

.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #5f5f5f;
}

.nav-drawer__button-close-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.nav-drawer__button-close-line:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}

.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.08);
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}

.nav-drawer[data-open="true"] .nav-drawer__overlay {
  animation-name: menu-overlay-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__overlay {
  animation-name: menu-overlay-leaved;
}

.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: #ff791d;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-pagetop.active {
  opacity: 1;
  z-index: 1000;
}

.nav-pagetop:before {
  display: block;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5ce";
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-pagetop:after {
  content: 'PAGETOP';
  display: block;
  padding: 4px 0px;
}

.nav-pagetop:hover {
  background: #079698;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.nav-pagetop:hover:before {
  transform: translateY(-4px);
}

.footer {
  background: #222222;
}

.footer__container {
  margin: 0 auto;
}

.footer__menu {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 44px 0;
}
.footer__menu-small {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 44px 0 0;
}
.footer__menu-small-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 10px 0 44px;
}
@media (min-width: 992px) {
  .footer__menu-small {
    display: none;
  }
  .footer__menu-small-bottom {
    display: none;
  }
  .footer__menu {
    display: flex;
  }
}

.footer__menu-item:not(:first-child) {
  margin-left: 24px;
}

.footer__menu-item-link {
  color: #ffffff;
  font-size: 16px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.footer__menu-item-link:hover, .footer__menu-item-link:focus {
  text-decoration: underline;
  opacity: 70%;
}

.footer__instagram {
  font-size: 18px;
  padding: 14px 0;
  text-align: center;
}
.footer__instagram-link {
  color: #ffffff;
}
.footer__instagram-link:hover {
  text-decoration: underline;
  opacity: 70%;
}

.footer__copy {
  padding: 12px 0;
  color: #aaaaaa;
  font-size: 12px;
  text-align: center;
}

.pagevisual {
  background-color: #ff8d3f;
  height: 311px;
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 100vw;
}

.pagevisual__container {
  padding: 140px 45px;
  position: absolute;
  left: 0;
}
@media (min-width: 1200px) {
  .pagevisual__container {
    padding: 140px calc((100vw - 1110px) / 2);
  }
}
.pagevisual__img {
  object-fit: cover;
}




.pagevisual__text-main{
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  margin: 0 auto;
  padding-left: 15px;
}

.breadcrumbs {
  font-size: 16px;
  color: #555555;
  padding-left: 45px;
}

.breadcrumbs__container {
  max-width: 1110px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
}
.breadcrumbs__link {
  color: #555555;
}
.breadcrumbs__link:hover {
  opacity: 70%;
  text-decoration: underline;
}


.page-heading {
  margin-bottom: 56px;
}

.page-heading__content {
  margin: 0;
  padding: 0;
}

.page-heading__content--left {
  text-align: left;
}

.page-heading__content--center {
  text-align: center;
}

.page-heading__content--right {
  text-align: right;
}

.page-heading__text-main {
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .page-heading__text-main {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
  }
}

.page-heading__content--left .page-heading__text-main::after {
  margin-left: 0;
  margin-right: auto;
}

.page-heading__content--center .page-heading__text-main::after {
  margin-left: auto;
  margin-right: auto;
}

.page-heading__content--right .page-heading__text-main::after {
  margin-left: auto;
  margin-right: 0;
}

.page-heading__text-sub {
  font-weight: 700;
  font-size: 18px;
  color: #ff791d;
  line-height: 18px;
  margin-top: 16px;
}

.page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}

.page-heading-sub__content {
  margin: 0;
  padding: 0;
}

.page-heading-sub__content--left {
  text-align: left;
}

.page-heading-sub__content--center {
  text-align: center;
}

.page-heading-sub__content--right {
  text-align: right;
}

.page-heading-sub__text {
  position: relative;
  font-size: 2.4rem;
}

.page-heading-sub__text:before {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 1.6em;
  margin-right: .8rem;
  border-radius: 3px;
  background: #08aeb0;
  content: "";
}

.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
}


.contact-guide {
  text-align: center;
}

.contact-guide__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 18px;
  position: relative;
  border: none;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s,
 text-shadow .2s,
 background-color .2s, 
 border-color .2s,
 opacity .2s;
  width: 100%;
  max-width: 400px;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 0;
  border: 1px solid #08aeb0;
  border-radius: 50px;
  background: #08aeb0;
  color: #ffffff;
  margin-top: 80px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
}
@media (min-width: 992px) {
  .contact-guide__button {
    font-size: 18px;
  }
}


.contact-guide__button:hover {
  opacity: 80%;
}


.works-example {
  background-color: #ffffff;
  padding-bottom: 40px;
}

.works-example__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 15px;
}

@media (min-width: 992px) {
  .works-example__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.works-example__list-item {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .works-example__list-item {
    margin: 20px 15px;
  }
  .works-example__list-item:first-child {
    margin-left: 0;
  }
  .works-example__list-item:last-child {
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .works-example__list-item {
    width: calc(100% / 3 - 20px);
    margin: 15px;
  }
}

.works-item {
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #222222;
}

.works-item__thumbnail {
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .works-item__thumbnail {
    height: 350px;
  }
}


.works-item__thumbnail-image {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  max-width: none;
  position: absolute;
}

.works-example__content {
  padding: 16px;
  height: 108px;
}

.works-example__content-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
}
.works-example__detail {
  font-size: 18px;
  line-height: 26px;
}

.works-item__thumbnail-image:hover {
  transform: scale(1.1);
}

/* mainvisual */

.mainvisual {
  position: relative;
  background-image: url("../img/mainVisual.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 60px;
}
.wide {
  display: none;
}

.mainvisual__container {
  height: 440px;
  padding: 85px 45px 0;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .mainvisual__container {
    height: 504px;
    padding: 159px 45px 0;
  }
  .wide {
    display: block;
  }
  .small{
    display: none;
  }
}

.mainvisual-title {
  margin-bottom: 27px;
}

.mainvisual-text {
  font-size: 18px;
  line-height: 44px;
}



/* top-overview */
.top-overview {
  background-color: #fffadd;
  padding: 40px 45px;
}

.top-overview__container {
  background-color: #ffffff;
  padding: 80px 15px;
  max-width: 1110px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .top-overview__container {
    padding: 80px 55px;
  }
}

.top-overview__content {
  font-size: 20px;
  margin: 0 auto;
  text-align: center;
  line-height: 36px;
  font-weight: 500;
}

.top-overview-item{
  text-align: left;
  line-height: 30px;
  margin-top: 56px;
}

@media screen and (min-width: 992px) {
  .top-overview-item {
    display: flex;
  }
}

.top-overview-item__thumbnail {
  max-width: 300px;margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .top-overview-item__thumbnail {
    width: 300px;
  }
}

.overview-content-item__thumbnail-image {
  display: block;
  max-width: 100%;
  
  border-radius: .8rem;
}
@media screen and (min-width: 992px) {
  .top-overview-item__thumbnail-image {
    max-width: none;
  }
}

.overview-content-item__content {
  padding: 0;
  font-size: 18px;
}
@media screen and (min-width: 992px) {
  .overview-content-item__content {
    width: 700px;
    padding: 19px 0 0 32px;
  }
}

.overview-content-item__content-text {
  margin-bottom: 16px;
}


/* top-strength */
.top-strength {
  background-color: #f5f5f5;
  padding: 40px 45px;
}

.top-strength__container {
  background-color: #ffffff;
  padding: 80px 15px;
  max-width: 1110px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .top-strength__container {
    padding: 80px 64px;
  }
}

.top-strength__list-item {
  margin-bottom: 24px;
}
.top-strength__list-item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .top-strength__list {
    display: flex;
  }
  .top-strength__list-item {
    margin-left: 65px;
    margin-bottom: 0;
  }
  .top-strength__list-item:first-child{
    margin-left: 0;
  }
}

.strength-feature-item__thumbnail-image {
  max-width: 100%;
  margin: auto;
}

.thumbnail-image__contract {
  right: 10px;
}

.strength-feature-item__content {
  max-width: 284px;
  margin: 24px auto 0;
  line-height: 20px;
}

.strength-feature-item__content-title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}

.strength-feature-item__content-text {
  font-size: 18px;
  line-height: 26px;
}



/* service */

.top-service {
  background-color: #ffffff;
  padding: 80px 45px;
}


.detail__title{
  display: flex;
}

.detail__title-bottom {
  margin-top: 80px;
}

.orange-block {
  width: 6px;
  height: 20px;
  margin: 0 8px 24px 0;
  border-radius: 3px;
  background-color: #ff7110;
}

.detail__title-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.service-detail__container {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .service-detail__container {
    max-width: 1140px;
  }
}

.service-detail__image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.service-detail__list-image {
  margin-bottom: 1rem;
  overflow: hidden;
}

.service-detail__image--sub {
  border-radius: 6px;
  width: 100%;
}


.service-detail__list {
  list-style: none;
  margin: 0 -15px;
  padding: 0;
}

@media (min-width: 992px) {
  .service-detail__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.service-detail__list-item {
  margin: 0 15px;
  margin-bottom: 2.5rem;
}
.service-detail__list-item:nth-child(3) {
  margin-bottom: 2.5rem;
}
.service-detail__list-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .service-detail__list-item {
    width: calc(100% / 2 - 30px);
  }
  .service-detail__list-item:nth-child(3) {
    margin-bottom: 0;
  }
  .list-item__bottom {
    margin-bottom: 0;
  }
}


.service-detail__image-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}

.service-detail__text-sub {
  margin-top: 12px;
  font-size: 18px;
  line-height: 26px;
}

.service-detail-button {
  font-weight: 600;
}


/* top-question */
.top-question {
  background-color: #fff6e5;
  padding: 80px 45px;
}

.top-question__content {
  width: 100%;
}

.top-question__image {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.top-question__girl {
  margin-right: 5px;
}

.question-button {
  font-weight: 600;
  background-color: #ff7110;
  border: 1px solid #ff7110;
  margin-top: 40px;
  padding: 15px 43px;
  width: 232px;
}

@media (min-width: 992px) {
  .top-question__content {
    width: 728px;
    margin: 0 auto;
  }

  .top-question__image {
    display: block;
  }

  .top-question__girl {
    float: left;
    margin-top: -72px;
  }

  .top-question__boy {
    float: right;
    margin-top: -72px;
  }

  .question-button {
    padding: 15px 0;
    width: 400px;
    margin-top: 0;
  }
}


/* top-contact */

.works-contact__container {
  padding: 0 45px;
}

.top-contact {
  background-color: #ffffff;
  padding: 40px 45px;
}

.top-contact__content {
  padding: 0;
  margin: 0;
}

.top-contact__area {
  max-width: 540px;
  height: 596px;
  list-style: none;
  padding: 80px 40px;
  background-image: url("../img/map.svg"); 
  background-position: center;
  border-radius: 10px;
  border: 3px solid #04ab98; 
  margin: 0 auto;
}

.top-contact__tel {
  max-width: 540px;
  min-height: 596px;
  list-style: none;
  padding: 80px 40px;
  border-radius: 10px;
  border: 3px solid #ff6700; 
  margin: 20px auto 0;
}
@media (min-width: 992px) {
  .top-contact__area {
    margin: 0 30px 0 0;
    width: 540px;
  }
  .top-contact__tel {
    margin: 0;
    width: 540px;
    height: 596px;
  }
}

@media (min-width: 992px) {
  .top-contact__content {
    display: flex;
    justify-content: center;
  }
}

.top-contact__main {
  text-align: center;
}

.top-contact__main-content {
  margin-top: 40px;
  font-weight: 500;
}
.top-contact__main-content:first-child {
  margin-top: 56px;
}

.top-contact__main-content-head {
  font-size: 20px;
  font-weight: 500;
}
.top-contact__main-content-head .fas{
  color:#ff7110;
}


.top-contact__main-content-middle {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
}
.tel-number a {
  color: #555555;
  text-decoration: none;
}

.top-contact__main-content-bottom {
  margin-top: 10px;
  font-size: 16px;
}

.contact-button {
  font-weight: 700;
  background-color: #ff7110;
  border: 1px solid #ff7110;
  margin-top: 0;
  padding: 12px auto 10px;
  width: 237px;
}