@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;
  }
}

/* ====================================================
ACCESS
==================================================== */
.access {
  background: linear-gradient(to bottom, transparent, #111827);
  color: var(--wh);
  padding: clamp(4.375rem, 10vw, 9.375rem) 0 0;
}
.access__title {
  text-align: center;
  font-size: clamp(1.5rem, 2vw, 3rem);
  margin: 0 auto clamp(1.25rem, 4vw, 3.125rem) auto;
  padding-bottom: clamp(0.9375rem, 2vw, 1.875rem);
  line-height: 1;
  border-bottom: 1px solid var(--wh);
  position: relative;
  width: 40vw;
}
.access__title::after {
  content: "";
  display: block;
  width: 3vw;
  height: 3px;
  background-color: var(--yellow);
  position: absolute;
  bottom: -2px;
  left: 0;
  animation-name: verticalMove;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
@keyframes verticalMove {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  1% {
    opacity: 1;
  }
  55% {
    transform: translateX(38vw);
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}
.access__desc {
  text-align: center;
  margin-bottom: clamp(0.625rem, 2vw, 1.25rem);
}
.access__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-bottom: clamp(3.125rem, 8vw, 6.25rem);
  border-bottom: 1px solid rgb(156, 163, 175);
}
@media screen and (max-width: 834px) {
  .access__content {
    display: flex;
    flex-direction: column-reverse;
  }
}
.access__img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 1rem 0.5rem;
}
.access__img-item:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}
.access__img-item:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}
.access__img-item:nth-of-type(3) {
  grid-column: 1;
  grid-row: 2;
}
.access__img-item:nth-of-type(3) img {
  aspect-ratio: 3/2;
}
.access__img-item:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}
.access__img-item:nth-of-type(4) img {
  aspect-ratio: 3/2;
}
.access__img-item img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.access__img-desc {
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (max-width: 834px) {
  .access__img-desc {
    margin-top: 0.3125rem;
  }
}
.access__iframe iframe {
  width: 100%;
  height: auto;
  border: none;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 834px) {
  .access__iframe iframe {
    aspect-ratio: 2/1;
  }
}
@media screen and (max-width: 640px) {
  .access__iframe iframe {
    aspect-ratio: 1/1;
  }
}/*# sourceMappingURL=access.css.map */