/* loading
---------------------------------------------------- */
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.loading .loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: rgb(12, 30, 61);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  color: #fff;
}
.loading .loading-animation .loading-logo {
  margin-bottom: 15px;
}
.loading .loading-animation .loading-logo img {
  width: max(9.375rem, 120px);
  height: auto;
}
.loading .loading-animation .loading-text {
  margin-bottom: 40px;
  font-size: max(1rem, 16px);
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

/* loading_dot
---------------------------------------------------- */
.loading-animation-inner {
  --uib-size: 45px;
  --uib-color: #bbbbbb;
  --uib-speed: 1.3s;
  --uib-dot-size: calc(var(--uib-size) * 0.24);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--uib-dot-size);
  width: var(--uib-size);
}

.dot,
.loading-animation-inner::before,
.loading-animation-inner::after {
  content: "";
  display: block;
  height: var(--uib-dot-size);
  width: var(--uib-dot-size);
  background-color: var(--uib-color);
  transform: scale(0);
  transition: background-color 0.3s ease;
  border-radius: 50%;
}

.loading-animation-inner::before {
  animation: pulse var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.375) infinite;
}

.dot {
  animation: pulse var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.25) infinite both;
}

.loading-animation-inner::after {
  animation: pulse var(--uib-speed) ease-in-out calc(var(--uib-speed) * -0.125) infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
/* mv
---------------------------------------------------- */
.mv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.mv .mv-title {
  position: absolute;
  left: 7.5rem;
  bottom: 6.25rem;
  z-index: 10;
}
@media screen and (max-width: 991.98px) {
  .mv .mv-title {
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
  }
}
.mv .mv-title .mv-title_1 {
  color: #fff;
  font-size: 6rem;
  line-height: 1;
}
.mv .mv-title .mv-title_1 .mv-text-small {
  font-size: 5rem;
}
.mv .mv-title .mv-title_2 {
  display: block;
  color: rgb(161, 135, 55);
  font-size: 4.5rem;
}
.mv .mv-bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
}
.mv .mv-bg video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .mv-bg:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(7, 21, 45, 0.6);
}
.mv .scroll {
  position: absolute;
  right: 5rem;
  bottom: 12.5rem;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: max(0.8125rem, 10px);
  color: #fff;
}
.mv .scroll::before {
  animation: scroll 2s infinite;
  background-color: #525252;
  bottom: -200px;
  content: "";
  height: 180px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
.mv .scroll::after {
  background-color: #ccc;
  bottom: -200px;
  content: "";
  height: 180px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* text_animation
---------------------------------------------------- */
.animation-inviewOrder {
  margin-top: 4rem;
}
.animation-inviewOrder.__scrollAnimation .__row {
  margin-bottom: 0.3em;
  overflow-y: hidden;
  display: flex;
  align-items: flex-end;
  height: 6rem;
}
.animation-inviewOrder.__scrollAnimation .__row span {
  display: block;
  margin-bottom: -1.2em;
  transition: margin-bottom 0.8s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span {
  margin-bottom: 0;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(1) {
  transition-delay: 2.5s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(2) {
  transition-delay: 2.55s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(3) {
  transition-delay: 2.6s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(4) {
  transition-delay: 2.65s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(5) {
  transition-delay: 2.7s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(6) {
  transition-delay: 2.75s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(7) {
  transition-delay: 2.8s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(8) {
  transition-delay: 2.85s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(9) {
  transition-delay: 2.9s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(10) {
  transition-delay: 2.95s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(11) {
  transition-delay: 3s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(12) {
  transition-delay: 3.05s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(13) {
  transition-delay: 3.1s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(14) {
  transition-delay: 3.15s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(15) {
  transition-delay: 3.2s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(16) {
  transition-delay: 3.25s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(17) {
  transition-delay: 3.3s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(18) {
  transition-delay: 3.35s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(19) {
  transition-delay: 3.4s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(20) {
  transition-delay: 3.45s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(21) {
  transition-delay: 3.5s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(22) {
  transition-delay: 3.55s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(23) {
  transition-delay: 3.6s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(24) {
  transition-delay: 3.65s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(25) {
  transition-delay: 3.7s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(26) {
  transition-delay: 3.75s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(27) {
  transition-delay: 3.8s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(28) {
  transition-delay: 3.85s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(29) {
  transition-delay: 3.9s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(30) {
  transition-delay: 3.95s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(31) {
  transition-delay: 4s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(32) {
  transition-delay: 4.05s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(33) {
  transition-delay: 4.1s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(34) {
  transition-delay: 4.15s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(35) {
  transition-delay: 4.2s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(36) {
  transition-delay: 4.25s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(37) {
  transition-delay: 4.3s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(38) {
  transition-delay: 4.35s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(39) {
  transition-delay: 4.4s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(40) {
  transition-delay: 4.45s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(41) {
  transition-delay: 4.5s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(42) {
  transition-delay: 4.55s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(43) {
  transition-delay: 4.6s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(44) {
  transition-delay: 4.65s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(45) {
  transition-delay: 4.7s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(46) {
  transition-delay: 4.75s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(47) {
  transition-delay: 4.8s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(48) {
  transition-delay: 4.85s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(49) {
  transition-delay: 4.9s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(50) {
  transition-delay: 4.95s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(51) {
  transition-delay: 5s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(52) {
  transition-delay: 5.05s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(53) {
  transition-delay: 5.1s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(54) {
  transition-delay: 5.15s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(55) {
  transition-delay: 5.2s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(56) {
  transition-delay: 5.25s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(57) {
  transition-delay: 5.3s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(58) {
  transition-delay: 5.35s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(59) {
  transition-delay: 5.4s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(60) {
  transition-delay: 5.45s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(61) {
  transition-delay: 5.5s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(62) {
  transition-delay: 5.55s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(63) {
  transition-delay: 5.6s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(64) {
  transition-delay: 5.65s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(65) {
  transition-delay: 5.7s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(66) {
  transition-delay: 5.75s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(67) {
  transition-delay: 5.8s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(68) {
  transition-delay: 5.85s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(69) {
  transition-delay: 5.9s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(70) {
  transition-delay: 5.95s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(71) {
  transition-delay: 6s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(72) {
  transition-delay: 6.05s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(73) {
  transition-delay: 6.1s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(74) {
  transition-delay: 6.15s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(75) {
  transition-delay: 6.2s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(76) {
  transition-delay: 6.25s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(77) {
  transition-delay: 6.3s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(78) {
  transition-delay: 6.35s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(79) {
  transition-delay: 6.4s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(80) {
  transition-delay: 6.45s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(81) {
  transition-delay: 6.5s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(82) {
  transition-delay: 6.55s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(83) {
  transition-delay: 6.6s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(84) {
  transition-delay: 6.65s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(85) {
  transition-delay: 6.7s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(86) {
  transition-delay: 6.75s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(87) {
  transition-delay: 6.8s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(88) {
  transition-delay: 6.85s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(89) {
  transition-delay: 6.9s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(90) {
  transition-delay: 6.95s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(91) {
  transition-delay: 7s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(92) {
  transition-delay: 7.05s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(93) {
  transition-delay: 7.1s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(94) {
  transition-delay: 7.15s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(95) {
  transition-delay: 7.2s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(96) {
  transition-delay: 7.25s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(97) {
  transition-delay: 7.3s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(98) {
  transition-delay: 7.35s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(99) {
  transition-delay: 7.4s;
}
.animation-inviewOrder.__scrollAnimation.__show .__row span:nth-of-type(100) {
  transition-delay: 7.45s;
}

/* about
---------------------------------------------------- */
.about {
  position: relative;
  background-color: rgb(12, 30, 61);
  color: #fff;
}
.about:before {
  content: "About Us";
  position: absolute;
  top: 4.375rem;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 15.625rem;
  color: rgb(26, 48, 87);
  font-family: "Mrs Saint Delafield", serif;
  font-weight: 400;
}
@media screen and (max-width: 1399.98px) {
  .about:before {
    font-size: 12.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .about:before {
    top: 5.625rem;
  }
}
.about .about-text {
  padding-top: 15rem;
  padding-bottom: 12.5rem;
  padding-right: 5rem;
}
@media screen and (max-width: 1399.98px) {
  .about .about-text {
    padding-top: 11.25rem;
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 767.98px) {
  .about .about-text {
    padding-top: 12.5rem;
    padding-bottom: 3.125rem;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.about .about-text .description {
  padding-bottom: 4.375rem;
}
@media screen and (max-width: 1399.98px) {
  .about .about-text .description {
    padding-bottom: 3.125rem;
  }
}
.about .about-img {
  padding-top: 5.625rem;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 1399.98px) {
  .about .about-img {
    padding-top: 7.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .about .about-img {
    padding-top: 3.125rem;
    padding-bottom: 12.5rem;
  }
}
.about .about-img .about-img_1 {
  padding-top: 11.25rem;
  padding-right: 30px;
}
@media screen and (max-width: 767.98px) {
  .about .about-img .about-img_1 {
    padding-right: 0;
    order: 2;
  }
}
.about .about-img .about-img_1 img {
  max-width: 250px;
}
@media screen and (max-width: 767.98px) {
  .about .about-img .about-img_2 {
    padding-right: 30px;
    order: 1;
  }
}
@media screen and (max-width: 575.98px) {
  .about .about-img .about-img_2 {
    padding-right: 20px;
  }
}
.about .about-img .about-img_2 img {
  max-width: 290px;
}

/* business
---------------------------------------------------- */
.business {
  position: relative;
}
.business:before {
  content: "Business";
  display: inline-block;
  position: absolute;
  top: 0.625rem;
  left: 0;
  right: 0;
  font-size: 15.625rem;
  color: rgb(245, 245, 245);
  font-family: "Mrs Saint Delafield", serif;
  font-weight: 400;
}
@media screen and (max-width: 1399.98px) {
  .business:before {
    font-size: 12.5rem;
    top: 3.125rem;
  }
}
@media screen and (max-width: 767.98px) {
  .business:before {
    top: 5.625rem;
  }
}

.business-text {
  padding-top: 11.25rem;
  padding-bottom: 4.375rem;
}
@media screen and (max-width: 1399.98px) {
  .business-text {
    padding-bottom: 6.25rem;
  }
}
@media screen and (max-width: 767.98px) {
  .business-text {
    padding-top: 12.5rem;
    padding-bottom: 4.375rem;
  }
}
.business-text .description {
  padding-bottom: 2.5rem;
}
.business-text .page-btn .page-btn-text:before {
  background-color: rgb(3, 12, 26);
}
.business-text .page-btn .page-btn-text .fa-angle-right {
  color: #fff;
}

.business-img {
  margin-left: -15px;
  margin-right: -15px;
  padding-bottom: 9.375rem;
  background: linear-gradient(to top, rgb(12, 30, 61) 60%, transparent 40%);
}
@media (max-width: 767.98px) {
  .business-img {
    padding-bottom: 7.5rem;
    background: transparent;
  }
}

.business-img-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
@media screen and (max-width: 767.98px) {
  .business-img-inner {
    display: block;
    padding-left: 30px;
    padding-right: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .business-img-inner .business-contents {
    margin-bottom: 5px;
    height: 12.5rem;
    overflow: hidden;
    position: relative;
  }
}
@media screen and (max-width: 575.98px) {
  .business-img-inner .business-contents {
    height: 18.75rem;
  }
}
.business-img-inner .business-contents img {
  display: block;
  margin-bottom: 0.9375rem;
  max-width: 303px;
  transition: filter 0.3s ease;
  transition: 0.5s;
}
@media screen and (max-width: 767.98px) {
  .business-img-inner .business-contents img {
    max-width: 800px;
    height: 300px;
    filter: brightness(0.6);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.business-img-inner .business-contents .business-caption {
  display: inline;
  position: relative;
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .business-img-inner .business-contents .business-caption {
    position: absolute;
    left: 3.125rem;
    bottom: 2.5rem;
    z-index: 10;
    font-size: max(1.5rem, 24px);
  }
}
@media screen and (max-width: 575.98px) {
  .business-img-inner .business-contents .business-caption {
    left: 2.5rem;
    bottom: 1.875rem;
    font-size: max(1.5rem, 18px);
  }
}
@media screen and (max-width: 400px) {
  .business-img-inner .business-contents .business-caption {
    left: 3.125rem;
  }
}
@media screen and (max-width: 767.98px) {
  .business-img-inner .business-contents ._1 .business-caption {
    bottom: 53.75rem;
  }
}
@media screen and (max-width: 575.98px) {
  .business-img-inner .business-contents ._1 .business-caption {
    bottom: 79.375rem;
  }
}
@media screen and (max-width: 767.98px) {
  .business-img-inner .business-contents ._2 .business-caption {
    bottom: 40.9375rem;
  }
}
@media screen and (max-width: 575.98px) {
  .business-img-inner .business-contents ._2 .business-caption {
    bottom: 60rem;
  }
}
@media screen and (max-width: 767.98px) {
  .business-img-inner .business-contents ._3 .business-caption {
    bottom: 28.125rem;
  }
}
@media screen and (max-width: 575.98px) {
  .business-img-inner .business-contents ._3 .business-caption {
    bottom: 40.625rem;
  }
}
@media screen and (max-width: 767.98px) {
  .business-img-inner .business-contents ._4 .business-caption {
    bottom: 15rem;
  }
}
@media screen and (max-width: 575.98px) {
  .business-img-inner .business-contents ._4 .business-caption {
    bottom: 21.25rem;
  }
}
@media screen and (max-width: 767.98px) {
  .business-img-inner .business-contents ._4 img {
    -o-object-position: top;
       object-position: top;
  }
}
.business-img-inner .business-contents a:hover img {
  filter: brightness(0.5);
}

/* works,recruit
---------------------------------------------------- */
.link {
  background-color: rgb(12, 30, 61);
  color: #fff;
}
.link img {
  max-width: 1088px;
}
.link .works {
  position: relative;
  margin-bottom: 6.25rem;
}
@media (max-width: 767.98px) {
  .link .works {
    margin-bottom: 0;
  }
}
.link .works::before {
  content: "Works";
  position: absolute;
  top: -1.875rem;
  right: 21.875rem;
  font-size: 15.625rem;
  color: rgb(26, 48, 87);
  font-family: "Mrs Saint Delafield", serif;
  font-weight: 400;
}
@media (max-width: 1800px) {
  .link .works::before {
    right: 0;
  }
}
@media screen and (max-width: 1399.98px) {
  .link .works::before {
    font-size: 12.5rem;
    top: 0rem;
  }
}
@media (max-width: 1199.98px) {
  .link .works::before {
    font-size: 11.25rem;
    top: -1.25rem;
  }
}
@media (max-width: 767.98px) {
  .link .works::before {
    left: 0;
    top: 5.625rem;
  }
}
.link .works .works-text {
  margin-top: 8.125rem;
  order: 2;
}
@media (max-width: 1199.98px) {
  .link .works .works-text {
    margin-top: 6.25rem;
  }
}
@media (max-width: 767.98px) {
  .link .works .works-text {
    margin-top: 12.5rem;
    margin-bottom: 5rem;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.link .works .works-text .description {
  margin-bottom: 4.375rem;
}
@media (max-width: 1199.98px) {
  .link .works .works-text .description {
    margin-bottom: 3.125rem;
  }
}
.link .works .works-img {
  margin-right: 2.5rem;
  padding-left: 0;
  order: 1;
  height: 31.25rem;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .link .works .works-img {
    margin-right: 0;
    padding-right: 0;
    order: 2;
    height: 31.25rem;
  }
}
.link .recruit {
  position: relative;
  padding-bottom: 8.125rem;
  margin-left: -3.125rem;
}
@media (max-width: 767.98px) {
  .link .recruit {
    padding-bottom: 9.375rem;
    margin-left: 0;
  }
}
.link .recruit::before {
  content: "Recruit";
  position: absolute;
  top: -1.875rem;
  left: 6.25rem;
  font-size: 15.625rem;
  color: rgb(26, 48, 87);
  font-family: "Mrs Saint Delafield", serif;
  font-weight: 400;
}
@media (max-width: 1800px) {
  .link .recruit::before {
    left: 0;
  }
}
@media screen and (max-width: 1399.98px) {
  .link .recruit::before {
    font-size: 12.5rem;
    top: 0rem;
  }
}
@media (max-width: 1199.98px) {
  .link .recruit::before {
    font-size: 11.25rem;
    top: -1.25rem;
  }
}
@media (max-width: 767.98px) {
  .link .recruit::before {
    left: 0;
    top: 5.625rem;
  }
}
.link .recruit .recruit-text {
  margin-top: 8.125rem;
}
@media (max-width: 1199.98px) {
  .link .recruit .recruit-text {
    margin-top: 6.25rem;
  }
}
@media (max-width: 767.98px) {
  .link .recruit .recruit-text {
    margin-top: 12.5rem;
    margin-bottom: 5rem;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.link .recruit .recruit-text .description {
  margin-bottom: 4.375rem;
}
@media (max-width: 1199.98px) {
  .link .recruit .recruit-text .description {
    margin-bottom: 3.125rem;
  }
}
.link .recruit .recruit-img {
  padding-right: 0;
  height: 31.25rem;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .link .recruit .recruit-img {
    padding-left: 0;
    height: 31.25rem;
  }
}
.link .recruit .recruit-img img {
  display: block;
  margin-left: auto;
}/*# sourceMappingURL=index.css.map */