.inner {
  width: 94%;
  max-width: 1040px;
  margin-inline: auto;
}

.cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.7777777778vw;
}
.cta__item {
  color: #fff;
  font-size: clamp(1.125rem, 1.037rem + 0.38vw, 1.375rem);
  letter-spacing: 2px;
}
.cta__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-block: 0.5em;
  background-color: #C22D00;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta__contact:hover {
  background-color: #9e2703;
}
.cta__document {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-block: 0.5em;
  background-color: #005A75;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta__document:hover {
  background-color: #00475d;
}
@media screen and (max-width: 768px) {
  .cta {
    grid-template-columns: repeat(1, 1fr);
  }
}

.hero__inner {
  display: block;
  position: relative;
  height: calc(80vh - 64px);
  width: 100%;
}
.hero__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.14);
  position: absolute;
  top: 0;
  left: 0;
}
.hero__content {
  position: absolute;
  bottom: 2.7777777778vw;
  left: 50%;
  width: 94%;
  max-width: 1040px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.hero__title {
  width: 100%;
  height: auto;
  margin-bottom: 3.2638888889vw;
}
.hero__title img {
  width: 100%;
  height: auto;
}
.hero__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .pc {
  display: none;
}
.hero .sp {
  padding-block: 2.6666666667vw;
}
@media screen and (min-width: 480px) {
  .hero__inner {
    height: calc(100vh - 105px);
  }
  .hero__title {
    width: 53.9583333333vw;
  }
  .hero .pc.cta {
    display: grid;
  }
  .hero .sp {
    display: none;
  }
}

.top__inner {
  max-width: 1030px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-inline: 15px;
}
.top-reason__cta {
  padding-top: min(40px, 1.3333333333vw);
  padding-bottom: min(80px, 8vw);
}

.c-work-box {
  grid-template-columns: repeat(4, calc(25% - 1rem));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .c-work-box {
    grid-template-columns: repeat(2, calc(50% - 1rem));
  }
}
.c-work-box__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-work-box__item img {
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}
@media (min-width: 768px) {
  .c-work-box__item:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-work-box__item:hover .c-work-box__more {
    background-color: rgb(73, 152, 186);
    color: #fff;
  }
}
.c-work-box__title {
  font-size: 15px;
}
@media (max-width: 767px) {
  .c-work-box__title {
    font-size: 13px;
  }
}
.c-work-box__label {
  font-size: 0.8em;
  line-height: 1.1;
}
.c-work-box__more {
  margin-top: auto;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}