body {
  overflow: hidden;
  animation: bodyAnimation 4.5s forwards;
}

@keyframes bodyAnimation {
  0%, 99% {
    overflow: hidden;
  }
  100% {
    overflow: visible;
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  animation: loading 2s 5s forwards;
}

.loading__modal {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: var(--tantive-main-color);
}

.loading__group--wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading__char--wrap {
  position: relative;
}

.loading__char {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--tantive-main-dark-color);
  font-size: 4em;
  animation: loadingChar 1s calc(var(--num) * 0.5s) ease-in-out forwards;
}

.loading__img {
  opacity: 0;
}

@keyframes loading {
  to {
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes loadingChar {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  60% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5);
  }
}
@keyframes loadingImg {
  to {
    opacity: 1;
  }
}
.homeMainVisual {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: var(--tantive-main-color);
  overflow: hidden;
}

.homeMainVisual__wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
}

.homeMainVisual__square {
  position: relative;
  width: clamp(160px, 50vw, 210px);
  height: clamp(160px, 50vw, 210px);
}
.homeMainVisual__square::before, .homeMainVisual__square::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
}
.homeMainVisual__square::before {
  top: 0;
  height: 30%;
  background-color: #dfbf83;
}
.homeMainVisual__square::after {
  bottom: 0;
  height: 70%;
  background-color: #e2c3a1;
}

.homeMainVisual__square--left {
  transform: translate(-50%, 50%) rotate(-45deg);
}

.homeMainVisual__square--right {
  transform: translate(50%, -50%) rotate(215deg);
}

.homeMainVisual__title--dot-wrap {
  display: flex;
  justify-content: space-between;
}

.homeMainVisual__title--dot {
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 50%;
}

.homeMainVisual__title--title {
  display: flex;
  flex-direction: column;
  padding: 1em 0;
  font-size: 1.5em;
  text-align: center;
}
.homeMainVisual__title--title span {
  margin-top: 1em;
}

.homeMainVisual__round {
  position: absolute;
  width: 128px;
  height: 128px;
  border: 15px solid white;
  border-radius: 50%;
}

.homeMainVisual__round--topLeft {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%);
}

.homeMainVisual__round--bottomRight {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  clip-path: polygon(0 0, 50% 0, 50% 50%, 0 50%);
}

.homeMainVisual__spiderThread {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 100vh;
  animation: homeMainVisual__spiderThread 10s infinite;
}

.homeMainVisual__spiderThread--thread {
  width: 1px;
  height: 40%;
  background-color: white;
  transform: scaleY(0);
  transform-origin: 50% 0;
  animation: homeMainVisual__spiderThread--thread 10s infinite;
}

.homeMainVisual__spiderThread--left {
  transform: translateY(10%);
}

.homeMainVisual__spiderThread--right {
  transform: translateY(50%);
}

.homeMainVisual__spiderThread--drop {
  width: 5px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  opacity: 0;
  animation: homeMainVisual__spiderThread--drop 10s infinite;
}

@keyframes homeMainVisual__spiderThread {
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes homeMainVisual__spiderThread--thread {
  40% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes homeMainVisual__spiderThread--drop {
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.homeSection__service {
  padding-top: 100px;
  padding-bottom: 50px;
}

.homeSection--subtitle {
  opacity: 0.1;
}

.homeSection--title {
  font-size: 32px;
  margin-top: -1em;
  margin-bottom: 40px;
}

.homeSection__service--text {
  margin-bottom: 2em;
}

.serviceBox__wrap {
  display: flex;
  gap: 4em;
  margin-top: 75px;
}

.serviceBox__item {
  background-color: white;
  box-shadow: 5px 5px 5px white, -5px -5px 5px white;
  padding: 2em;
  flex: 0 1 30%;
}

.serviceBox__title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2em;
}

.serviceBox__title--number {
  filter: url(#recolor-img);
}

.serviceBox__icon {
  margin-bottom: 2em;
}

.serviceBox__text {
  text-align: left;
}

.serviceBox__button--parent {
  margin-top: 1em;
  margin-right: auto;
  margin-left: auto;
}

.contactUsButton--parent {
  margin-top: 2em;
  margin-right: auto;
  margin-left: auto;
}

.homeSection__works {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.worksCategory__section:not(:last-child) {
  margin-bottom: 50px;
}

.homeSection__works--subtitle {
  text-align: center;
}

.homeSection__works--title {
  text-align: center;
}

.worksCategory__title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1em;
  padding: 1em;
  font-size: 1.5rem;
}
.worksCategory__title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: black;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  opacity: 0.1;
  z-index: -1;
}

.worksCategory__worksBox {
  display: flex;
  flex-wrap: wrap;
  gap: 4em;
}

.worksCategory__worksItem-a {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: white;
  box-shadow: 5px 5px 5px white, -5px -5px 5px white;
  padding: 1em;
  flex: 0 1 calc((100% - 8em) / 3);
  box-sizing: border-box;
  transition: all 1s;
}
.worksCategory__worksItem-a:hover {
  filter: brightness(0.9);
}

.worksCategory__img {
  margin-bottom: 1em;
}
.worksCategory__img img {
  width: 100%;
  height: auto;
}

.worksCategory__worksItem--title {
  margin-bottom: 1em;
}

.worksHomePageButton--parent,
.worksProducts--parent,
.worksOther--parent {
  margin-top: 2em;
  margin-right: auto;
  margin-left: auto;
}

.homeSection__blogs {
  margin-bottom: 100px;
}

.homeBlogArchive__wrap {
  display: flex;
  -moz-column-gap: 4em;
       column-gap: 4em;
  row-gap: 2em;
  flex-wrap: wrap;
  margin-bottom: 2em;
}

.homeBlogArchive__item-a {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: white;
  box-shadow: 0 0 5px 10px white, 0 0 10px 10px rgba(0, 0, 0, 0.1);
  padding: 1em;
  flex: 0 1 calc((100% - 4em) / 2);
  box-sizing: border-box;
  transition: all 1s;
}
.homeBlogArchive__item-a:hover {
  filter: brightness(0.9);
}

.homeBlogArchive__item {
  display: flex;
}

.homeBlogArchive__eyecatchWrap {
  flex: 0 0 30%;
}

.homeBlogArchive__eyecatch {
  max-width: 100%;
  height: auto;
  display: block;
}

.homeBlogArchive__attributes {
  flex: 0 0 70%;
  padding-left: 1em;
  padding-right: 1em;
}

.homeBlogArchive__title {
  word-break: break-all;
}

.blogs--parent {
  margin-right: auto;
  margin-left: auto;
}

.homeBlogArchive__createDate {
  font-size: 0.75em;
}

@media screen and (max-width: 1280px) {
  .serviceBox__wrap {
    flex-direction: column;
  }
  .worksCategory__worksBox {
    flex-direction: column;
    gap: 2em;
  }
  .worksCategory__img {
    margin: auto;
    width: 30%;
  }
  .homeBlogArchive__wrap {
    flex-direction: column;
  }
}/*# sourceMappingURL=style-home.css.map */