.top {
  display: grid;
  grid-template-columns: 38rem 1fr;
  align-items: end;
  gap: 6rem;
}
.top__image {
  margin-left: -53rem;
  width: 91rem;
  object-position: bottom right;
}
@media (max-width: 1023px) {
  .top {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .top__image {
    margin-left: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height) - 15rem);
    height: calc(100svh - var(--header-height) - 15rem);
  }
}

.top-section__logo {
  width: 15rem;
}
.top-section__heading {
  margin-top: 5rem;
  font-size: var(--font-size-4xl);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-normal);
  color: var(--color-secondary);
}
.top-section__text {
  margin-top: 6rem;
  color: var(--color-secondary);
}
@media (max-width: 1023px) {
  .top-section {
    padding-top: 4rem;
    padding-bottom: 0;
  }
  .top-section__logo {
    display: none;
  }
  .top-section__heading {
    margin-top: 0;
    font-size: var(--font-size-3xl);
  }
}

.service-section {
  margin-top: 4rem;
}
.service-section .container {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 35rem;
  gap: 6rem 10rem;
}
.service-section__text {
  grid-column: 1;
  padding-left: 2.5rem;
}
.service-section__image {
  grid-row: 1/span 2;
  grid-column: 2;
}
.service-section__image figcaption {
  margin-top: 1rem;
  text-align: right;
  font-size: var(--font-size-sm);
  color: var(--color-lightgray);
}
@media (max-width: 719px) {
  .service-section {
    margin-top: 0;
    padding-bottom: 0;
  }
  .service-section .container {
    grid-template-columns: 1fr 15rem;
    gap: 3rem 2rem;
  }
  .service-section__heading {
    grid-column: 1/span 2;
    margin: 0 auto;
  }
  .service-section__text {
    padding-left: 0;
    font-size: var(--font-size-sm);
  }
  .service-section__image {
    grid-row: unset;
  }
}

.works-section__heading {
  margin: 0 auto;
}
.works-section__content {
  margin-top: 1rem;
}
.works-section__content > section {
  margin-top: 3rem;
}
.works-section__content > section h3 {
  position: relative;
  padding: 1.4rem;
  text-align: center;
  font-size: var(--font-size-xl);
  color: var(--color-secondary);
  box-shadow: 0 4px 4px rgba(192, 233, 248, 0.49);
  cursor: pointer;
}
.works-section__content > section h3::after {
  content: url("../../img/svg/arrow-up.svg");
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.works-section__content > section ul > li {
  display: grid;
  grid-template-columns: 16rem 1fr;
  padding: 2rem 0;
  border-bottom: 1px solid #c0e9f8;
}
.works-section__content > section ul > li > time, .works-section__content > section ul > li > p {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-normal);
}
.works-section__content > section ul > li > time {
  text-align: center;
}
.works-section__content > section ul > li > p {
  align-self: center;
  font-size: var(--font-size-xl);
}
@media (max-width: 719px) {
  .works-section {
    padding-bottom: 0;
  }
  .works-section__content > section ul > li {
    grid-template-columns: 8rem 1fr;
  }
  .works-section__content > section ul > li > time, .works-section__content > section ul > li > p {
    font-size: var(--font-size-md);
  }
}

.center-slider {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.center-slider-container {
  position: relative;
  margin-top: 9rem;
}
.center-slider__slide {
  width: fit-content;
}
.center-slider__image {
  width: 28.8rem;
  height: auto;
}

.technology-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 22rem;
}
.technology-section .container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(177.23deg, rgba(255, 255, 255, 0.56) 22.61%, rgba(192, 233, 248, 0.7) 50.8%, rgba(255, 255, 255, 0.56) 78%);
  filter: blur(20px);
  z-index: -1;
}
.technology-section__heading {
  margin: 0 auto;
  color: var(--color-secondary);
}
.technology-section__heading::before, .technology-section__heading::after {
  display: none;
}
.technology-section__button {
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 34rem;
  width: 100%;
  height: 3.6rem;
  margin: 3rem auto 0;
  font-family: var(--font-ja-gothic);
  color: var(--color-secondary);
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  transition: 0.2s ease-out;
  transition-property: color, background-color;
}
.technology-section__button::after {
  display: none;
  content: url("../../img/svg/arrow-right.svg");
  margin-left: 0.4em;
  padding-top: 0.2rem;
}
.technology-section__button:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.technology-section__button:hover::after {
  content: url("../../img/svg/arrow-right-white.svg");
}
@media (max-width: 719px) {
  .technology-section {
    padding-bottom: 0;
  }
}

.recruit-section {
  padding-top: 10rem;
  padding-bottom: 20rem;
}
.recruit-section__table {
  display: grid;
  grid-template-columns: 31rem 1fr;
  margin-top: 4.4rem;
}
.recruit-section__table > dt, .recruit-section__table > dd {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-primarylight);
}
.recruit-section__table > dt {
  padding-left: 10rem;
}
.recruit-section__table > dd {
  line-height: var(--line-height-normal);
}
@media (max-width: 719px) {
  .recruit-section {
    padding-bottom: 10rem;
  }
  .recruit-section__table {
    grid-template-columns: 1fr;
  }
  .recruit-section__table > dt {
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
}

/*# sourceMappingURL=home.css.map */
