@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100..900&display=swap");
:root {
  --text-color: #191919;
  --wh: #fff;
  --bk: #191919;
  --gray: #8A8B88;
  --green: #6AC643;
  --yellow: #FFD700;
  --footer-bg: #111827;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 499px) {
  .pc-xsl {
    display: none !important;
  }
}

@media screen and (min-width:500px) {
  .sp-xsl {
    display: none !important;
  }
}

@media screen and (max-width: 376px) {
  .pc-xs {
    display: none !important;
  }
}

@media screen and (min-width: 377px) {
  .sp-xs {
    display: none !important;
  }
}

.freespace .banner-wrapper {
  display: flex;
  gap: 1rem;
  color: var(--wh);
  margin: 6.25rem auto;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .freespace .banner-wrapper {
    flex-direction: column;
    margin-bottom: 3.125rem;
  }
}
@media screen and (max-width: 640px) {
  .freespace .banner-wrapper {
    margin-bottom: 1.25rem;
  }
}
.freespace .banner-item {
  position: relative;
  overflow: hidden;
  max-width: 20rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .freespace .banner-item {
    max-width: 100%;
  }
}
.freespace .banner-item a {
  overflow: hidden;
}
.freespace .banner-item img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 834px) {
  .freespace .banner-item img {
    aspect-ratio: 4/1;
  }
}
.freespace .banner-item img:hover {
  transform: scale(1.05);
}
.freespace .banner-item h2.banner-title {
  text-shadow: 1px 0 16px #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  z-index: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .freespace .banner-item h2.banner-title {
    font-size: 1.125rem;
  }
}
.freespace .banner-item h2.banner-title::after {
  content: "expand_circle_right";
  font-family: "Material Symbols Outlined";
  font-size: 1.25rem;
  transition: all 0.3s ease-in-out;
}
.freespace .banner-item:hover h2::after {
  transform: translateX(5px);
  transition: all 0.3s ease-in-out;
}/*# sourceMappingURL=freespace.css.map */