.informationInner,
.businessInner,
.recruitInner,
.newsInner {
  width: min(100% - var(--side-space) * 2, var(--content-width));
  margin: 0 auto;
}

.visionContainer {
  padding: 100px 0 130px;
  max-width: 1000px;
  width: 90.9%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .visionContainer {
    width: 87.5%;
    padding: 5% 0 47%;
  }
}
.visionContent {
  padding: 6% 0 0;
}
.visionInner {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1fr;
  gap: 5%;
}
@media screen and (max-width: 640px) {
  .visionInner {
    position: relative;
    display: block;
    gap: unset;
  }
}
.vision__copy {
  margin-bottom: 9%;
  font-size: 30px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.13em;
  font-family: var(--font-serif);
}
@media screen and (max-width: 640px) {
  .vision__copy {
    font-size: 4.6875vw;
    text-align: center;
    margin-bottom: 14.9%;
  }
}
.vision__img {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 641px) and (max-width: 1100px) {
  .vision__img {
    border-radius: 0.9090909091vw;
  }
}
@media screen and (max-width: 640px) {
  .vision__img {
    border-radius: 1.5625vw;
  }
}
@media screen and (max-width: 640px) {
  .vision__btn {
    position: absolute;
    display: flex;
    width: 41.40625vw;
    height: 10.9375vw;
    border-radius: 5.46875vw;
    inset: auto 0 -22.5%;
    margin: auto;
    padding: 0;
    background: #be8f86;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 3.125vw;
  }
  .vision__btn span {
    position: absolute;
    width: 2vw;
    height: 2vw;
    inset: 8% 0 0 74%;
    margin: auto;
    border-top: #fff 1px solid;
    border-right: #fff 1px solid;
    transform: rotate(45deg);
    background: none;
  }
}

.informationContainer {
  padding-bottom: 203px;
}
@media screen and (max-width: 640px) {
  .informationContainer {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .informationInner {
    width: 100%;
  }
}
.informationList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.informationList__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 9px;
}
@media screen and (max-width: 640px) {
  .informationList__item {
    border-radius: 0px;
  }
}
.informationList__item--off {
  pointer-events: none;
  position: relative;
}
.informationList__item--off::before {
  position: absolute;
  content: "coming soon";
  display: flex;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  inset: 0;
  z-index: 10;
}
.informationList__txt {
  position: absolute;
  display: flex;
  height: 75px;
  z-index: 1;
  color: var(--color-white);
  inset: auto 0 8%;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(20px, 3.90625vw, 20px);
  align-items: center;
  justify-content: center;
  line-height: 1.9;
}
@media screen and (max-width: 640px) {
  .informationList__txt {
    height: auto;
    inset: auto 7% 12% auto;
    font-size: 3.90625vw;
  }
}

.businessContainer {
  padding: 0 0 128px;
  background: var(--color-pink-light);
}
@media screen and (max-width: 640px) {
  .businessContainer {
    padding: 25% 0 27%;
  }
}
.businessList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  padding: 0 5%;
}
@media screen and (max-width: 640px) {
  .businessList {
    padding: 0;
  }
}
.businessList__item {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .businessList__item {
    position: relative;
    min-height: 37vw;
    margin: 4.5% 0 0;
    padding: 11.6% 0 0 52%;
  }
}
.businessList__logo {
  display: grid;
  width: min(100%, 230px);
  aspect-ratio: 1;
  margin: 0 auto;
  place-items: center;
  border-radius: 50%;
}
@media screen and (max-width: 640px) {
  .businessList__logo {
    position: absolute;
    display: block;
    width: 41.3%;
    inset: 0 auto auto 2.9%;
  }
}
.businessList__heading {
  margin: 12% 0 7%;
  font-size: clamp(16px, 2.5vw, 16px);
  font-weight: 500;
}
@media screen and (max-width: 640px) {
  .businessList__heading {
    font-size: 3.125vw;
    margin: 0 0 5%;
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  .businessList__txt {
    font-size: 2.8125vw;
    text-align: left;
    line-height: 1.75;
  }
}

.galleryList {
  display: flex;
  width: max-content;
  margin-left: -5vw;
  animation: galleryListLoop 80s linear infinite;
  will-change: transform;
}
.galleryList__group {
  display: flex;
  width: 2133px;
  flex: 0 0 2133px;
}
.galleryList__item {
  width: 12.5%;
  flex: 0 0 12.5%;
}

@keyframes galleryListLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.recruitContainer {
  padding: 196px 0 150px;
}
@media screen and (max-width: 640px) {
  .recruitContainer {
    padding: 26% 0 25%;
  }
}
.recruitInner {
  max-width: 1000px;
}
.recruitPanel {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.814fr 1.186fr;
  border-radius: 10px;
}
@media screen and (max-width: 640px) {
  .recruitPanel {
    border-radius: 1.5625vw;
  }
}
.recruitPanel__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-pink);
}
@media screen and (max-width: 640px) {
  .recruitPanel__content {
    padding: 0 0 8%;
  }
}
.recruitPanel__txt {
  margin: 4% 0 9%;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .recruitPanel__txt {
    width: 90%;
    margin: 0 auto;
    font-size: 2.8125vw;
    margin: 10% 0 6%;
  }
}

.newsContainer {
  padding-bottom: 160px;
}
@media screen and (max-width: 640px) {
  .newsContainer {
    padding-bottom: 45%;
  }
}
.newsInner {
  max-width: 1000px;
}
.newsList {
  border-top: 1px solid #4d4d4d;
}
.newsList__item {
  position: relative;
  display: block;
  padding: 2.9% 1% 3.4%;
  border-bottom: 1px solid #4d4d4d;
}
@media screen and (max-width: 640px) {
  .newsList__item {
    padding: 3.9% 7% 4.4%;
  }
}
.newsList__information {
  display: flex;
  margin: 0 0 0.7%;
}
@media screen and (max-width: 640px) {
  .newsList__information {
    margin: 0 0 4%;
  }
}
.newsList__date {
  font-size: 16px;
  margin: 0 1% 0 0;
  color: #4d4d4d;
}
@media screen and (max-width: 640px) {
  .newsList__date {
    margin: 0 3% 0 0;
    font-size: 2.5vw;
  }
}
.newsList__category {
  min-width: 96px;
  padding: 0.35% 1% 0;
  font-size: 10px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .newsList__category {
    font-size: 2.03125vw;
    padding: 0.2vw 1vw;
  }
}
.newsList__category--press-release {
  border: 1px solid #be8f86;
  color: #be8f86;
}
.newsList__category--news {
  border: 1px solid #bea054;
  color: #bea054;
}
.newsList__heading {
  display: block;
  color: #4d4d4d;
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .newsList__heading {
    font-size: 2.5vw;
  }
}
.newsList__arrow {
  position: absolute;
  display: block;
  width: 20%;
  aspect-ratio: 1/1;
  inset: 0 0 0 90%;
  margin: auto;
}
.newsList__arrow::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  inset: 0;
  background: #4d4d4d;
}

@media screen and (max-width: 640px) {
  .businessInner,
  .recruitInner,
  .newsInner {
    width: 87.5%;
  }
  .informationList,
  .businessList {
    display: block;
  }
  .recruitPanel {
    display: flex;
    flex-direction: column-reverse;
  }
  .galleryList {
    margin-left: -45vw;
  }
  .galleryList__group {
    width: 190vw;
    flex-basis: 190vw;
  }
  .newsList__item {
    grid-template-columns: auto 1fr 6vw;
  }
  .newsList__date {
    grid-column: 1;
  }
  .newsList__category {
    min-width: 19vw;
    padding: 0.2vw 1vw;
    grid-row: 1;
    grid-column: 2;
    justify-self: start;
    font-size: 2vw;
  }
  .newsList__heading {
    grid-row: 2;
    grid-column: 1/3;
  }
  .newsList__allow {
    grid-row: 1/3;
    grid-column: 3;
  }
}/*# sourceMappingURL=top.css.map */