/* -- about -- */
.about {
  font-size: 1.125rem;
  font-weight: 500;
}
.about .section-title {
  margin-bottom: clamp(1.875rem, 10vw, 5rem);
}
.about .c-button-link {
  margin-bottom: 2.5rem;
}
@media (768px <= width) {
  .about .c-button-link {
    margin-bottom: 0;
  }
}
@media (768px <= width) {
  .about {
    font-size: 1.25rem;
  }
}

@media (768px <= width) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: clamp(1.875rem, 4vw, 3.75rem);
       -moz-column-gap: clamp(1.875rem, 4vw, 3.75rem);
            column-gap: clamp(1.875rem, 4vw, 3.75rem);
  }
}

@media (768px <= width) {
  .about__contents {
    -webkit-box-flex: 60;
        -ms-flex: 60;
            flex: 60;
  }
}

.about__image {
  max-width: 450px;
  margin-inline: auto;
}
@media (768px <= width) {
  .about__image {
    -webkit-box-flex: 54;
        -ms-flex: 54;
            flex: 54;
    -ms-flex-item-align: center;
        align-self: center;
    max-width: none;
  }
}

/* -- business -- */
.business {
  background-color: #F7F7F9;
  padding-top: clamp(3.75rem, 10vw, 6.25rem);
  padding-bottom: clamp(3.75rem, 10vw, 5rem);
  border-radius: 0 80px 0 0;
}
@media (768px <= width) {
  .business {
    border-radius: 0 200px 0 0;
  }
}

.business__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem 0.625rem;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (768px <= width) {
  .business__list {
    row-gap: 3.75rem;
  }
}

.business__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  max-width: 100%;
}
@media (min-width: 480px) {
  .business__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 0.625rem);
            flex: 1 1 calc(50% - 0.625rem);
    max-width: calc(50% - 0.625rem);
  }
}
@media (768px <= width) {
  .business__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 1.25rem) / 3);
            flex: 0 0 calc((100% - 1.25rem) / 3);
    max-width: calc((100% - 1.25rem) / 3);
  }
}

.business__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (hover: hover) {
  .business__link:focus .business__image, .business__link:hover .business__image {
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
}

.business__image {
  max-width: 335px;
  aspect-ratio: 335/160;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0.3125rem;
}
@media (768px <= width) {
  .business__image {
    max-width: none;
    aspect-ratio: auto;
  }
}
.business__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* -- news -- */
.news .c-button-link {
  font-size: 1.125rem;
  margin-bottom: 3.75rem;
}
.news .c-button-link__arrow {
  font-size: 0.875rem;
}
@media (768px <= width) {
  .news .c-button-link {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  .news .c-button-link__arrow {
    font-size: 1rem;
  }
}

.news__title {
  margin-bottom: 1.25rem;
}

@media (768px <= width) {
  .news__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: clamp(1.875rem, -10.2678571429rem + 25.2976190476vw, 12.5rem);
       -moz-column-gap: clamp(1.875rem, -10.2678571429rem + 25.2976190476vw, 12.5rem);
            column-gap: clamp(1.875rem, -10.2678571429rem + 25.2976190476vw, 12.5rem);
  }
}

@media (768px <= width) {
  .news__list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/* -- recruit -- */
.recruit {
  background-color: #F7F7F9;
  border-radius: 80px 0 0 0;
  padding-top: clamp(3.75rem, 10vw, 6.25rem);
}
.recruit .c-button-link {
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.4em;
     -moz-column-gap: 0.4em;
          column-gap: 0.4em;
  margin-left: 2rem;
}
@media (768px <= width) {
  .recruit .c-button-link {
    font-size: 1.5625rem;
  }
}
.recruit .c-button-link::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: -1.2em;
  width: 0.5em;
  height: 0.5em;
  background-color: #004DE6;
  border-radius: 50%;
}
.recruit .c-button-link .c-button-link__arrow {
  margin-left: 0;
}
.recruit .c-button-link__close {
  font-size: 0.6em;
}
@media (768px <= width) {
  .recruit {
    position: relative;
    background-color: transparent;
  }
  .recruit::after {
    content: "";
    display: block;
    width: calc(34.5rem + 35vw);
    height: 93%;
    min-height: 35rem;
    border-radius: 200px 0 0 200px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #F7F7F9;
  }
}

@media (768px <= width) {
  .recruit__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-column-gap: clamp(1.875rem, 4vw, 7.5rem);
       -moz-column-gap: clamp(1.875rem, 4vw, 7.5rem);
            column-gap: clamp(1.875rem, 4vw, 7.5rem);
  }
}

@media (768px <= width) {
  .recruit__contents {
    max-width: 34.5rem;
    padding-bottom: 3.75rem;
  }
}

@media (768px <= width) {
  .recruit__text {
    font-size: 1.125rem;
  }
}

.recruit__list {
  list-style: none;
  margin-bottom: 1.875rem;
}

.recruit__item {
  margin-bottom: 1.125rem;
}

.recruit__image {
  width: 100vw;
  aspect-ratio: 375/180;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
}
@media (768px <= width) {
  .recruit__image {
    aspect-ratio: auto;
    max-height: 550px;
    margin-bottom: 8.75rem;
  }
  .recruit__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}

.c-button-link__close {
  font-size: 0.6em;
}

.c-button-link.top-link--closed {
  font-weight: 500;
  color: #6E6E6E;
}
.c-button-link.top-link--closed::before {
  background-color: #6E6E6E;
}

@media screen and (min-width: 1440px) {
  .recruit__contents.top-link--closed {
    min-width: 34.5rem;
  }
}

.recruit__text.top-link--closed {
  margin-bottom: 3.75rem;
}

@media (768px <= width) {
  .recruit__image.top-link--closed {
    margin-bottom: 0;
  }
}

@media (768px <= width) {
  .recruit::after {
    min-height: auto;
  }
}/*# sourceMappingURL=top.css.map */