@charset "UTF-8";
/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, 50px);
}

.fadeIn-down {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, -80px);
}

.fadeIn-left {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(-50px, 0);
}

.fadeIn-right {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(50px, 0);
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  opacity: 1;
  transform: translate(0, 80px);
}

.slideIn-down {
  opacity: 1;
  transform: translate(0, -80px);
}

.slideIn-left {
  opacity: 1;
  transform: translate(-80px, 0);
}

.slideIn-right {
  opacity: 1;
  transform: translate(80px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0);
}

/*-------------------------------------*/
/* common                              */
/*-------------------------------------*/
.sectionTtl {
  display: flex;
  gap: 0.5rem 2rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
@media screen and (max-width: 640px) {
  .sectionTtl {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3.2rem;
  }
}
.sectionTtl__enttl {
  color: var(--color-primary);
  font-size: clamp(5.6rem, 13vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.sectionTtl__jattl {
  font-size: clamp(1.2rem, 6vw, 1.4rem);
  letter-spacing: 0.06em;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*-------------------------------------*/
/* header                              */
/*-------------------------------------*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 24px 0;
  z-index: 999;
}
@media screen and (max-width: 640px) {
  .header {
    padding: 10px 10px 0;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 24px 40px 24px 30px;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.17);
}
@media screen and (max-width: 640px) {
  .header__inner {
    position: relative;
    display: block;
    padding: 18px 20px;
  }
}
@media screen and (max-width: 890px) {
  .header__logo {
    width: 22vw;
  }
}
@media screen and (max-width: 640px) {
  .header__logo {
    width: 40vw;
  }
}
@media screen and (max-width: 640px) {
  .header__nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
  }
  .header__nav.is-open {
    max-height: 300px;
  }
}
.header__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 890px) {
  .header__list {
    gap: 1.3vw;
  }
}
@media screen and (max-width: 640px) {
  .header__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 8px 0;
  }
}
.header__link {
  font-weight: var(--fw-bold);
}
@media screen and (max-width: 890px) {
  .header__link {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 640px) {
  .header__link {
    font-size: 3.8vw;
  }
}
.header__link:hover {
  color: var(--color-primary);
}
.header__link::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 5px;
  vertical-align: middle;
  margin-left: 8px;
  background: url("../../assets/img/header_jump_icon.svg") no-repeat center/contain;
}
.header__link.blank::after {
  width: 17px;
  height: 17px;
  background: url("../../assets/img/header_blank_icon.svg") no-repeat center/contain;
}
.header__hamburger-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  display: none;
  height: 40px;
  width: 30px;
  position: absolute;
  right: 20px;
  top: 8px;
}
@media screen and (max-width: 640px) {
  .header__hamburger-btn {
    display: block;
  }
}
.header__hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  position: absolute;
  left: 50%;
  transition: all 0.3s ease-in-out;
}
.header__hamburger-btn span:nth-child(1) {
  top: 25%;
  transform: translateX(-50%);
}
.header__hamburger-btn span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%);
}
.header__hamburger-btn span:nth-child(3) {
  top: 75%;
  transform: translateX(-50%);
}
.header__hamburger-btn.is-open span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(135deg);
}
.header__hamburger-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger-btn.is-open span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-135deg);
}

/*-------------------------------------*/
/* mv                                  */
/*-------------------------------------*/
.mv {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.mv__wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.mv__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}
.mv__panel--left {
  -webkit-clip-path: polygon(0 0, 101% 0, 0 101%);
          clip-path: polygon(0 0, 101% 0, 0 101%);
  transform: translateX(0%);
}
.mv__panel--right {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: translateX(0%);
}
.mv__logo-wrap {
  text-align: center;
  pointer-events: none;
}
.mv__logo {
  display: block;
  margin: 0 auto 40px;
}
@media screen and (max-width: 940px) {
  .mv__logo {
    width: 250px;
  }
}
@media screen and (max-width: 640px) {
  .mv__logo {
    width: 65%;
  }
}
.mv__ttl {
  font-size: 3rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
}
@media screen and (max-width: 940px) {
  .mv__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .mv__ttl {
    font-size: 5.5vw;
    letter-spacing: 0.05em;
  }
}
.mv__scroll-guide {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.mv__scroll-guide::after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background-color: var(--color-black);
  margin: 0 auto;
  transform: scaleY(1);
  transform-origin: bottom;
}

/*-------------------------------------*/
/* open                                */
/*-------------------------------------*/
.open {
  color: var(--color-white);
  width: 100%;
  height: 100%;
  background: url("../../assets/img/open_bg.png") no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
@media screen and (max-width: 690px) {
  .open .inner {
    padding-top: 50px;
  }
}
.open__wrap {
  opacity: 0;
  transform: translateY(40px);
}
.open__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 690px) {
  .open__flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
}
.open__ttl-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 86px;
  line-height: 1;
  letter-spacing: -0.01em;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--color-white);
}
@media screen and (max-width: 690px) {
  .open__ttl-wrap {
    padding-bottom: 3vw;
    font-size: 12vw;
  }
}
.open__year {
  font-size: 27px;
  writing-mode: sideways-lr;
  vertical-align: middle;
}
@media screen and (max-width: 690px) {
  .open__year {
    font-size: 4vw;
  }
}
.open__week {
  font-size: 40px;
  font-weight: 600;
  padding: 14px;
  margin-inline: 8px;
  color: var(--color-black);
  background-color: var(--color-white);
}
@media screen and (max-width: 690px) {
  .open__week {
    font-size: 7vw;
    padding: 2vw;
    margin-inline: 2vw;
  }
}
.open__txt {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 20px;
}
@media screen and (max-width: 690px) {
  .open__txt {
    font-size: 5vw;
    margin-top: 3vw;
  }
}
.open__txt strong {
  font-size: 30px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
@media screen and (max-width: 690px) {
  .open__txt strong {
    font-size: 5.5vw;
  }
}
.open__map-wrap {
  position: relative;
}
@media screen and (max-width: 690px) {
  .open__map-wrap {
    width: min(90%, 400px);
  }
}
.open__map-wrap::after {
  content: "";
  display: block;
  width: 130px;
  height: 130px;
  background: url("../../assets/img/open_map_deco.png") no-repeat center/contain;
  position: absolute;
  bottom: 100%;
  left: 100%;
  transform: translate(-50%, 50%);
}
@supports (background: url("../../assets/img/test_webp.webp")) {
  .open__map-wrap::after {
    background: url("../../assets/img/open_map_deco.webp") no-repeat center/cover;
  }
}
@media screen and (max-width: 940px) {
  .open__map-wrap::after {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 690px) {
  .open__map-wrap::after {
    width: 15vw;
    height: 15vw;
  }
}
.open__slider {
  position: absolute;
  display: flex;
}
.open__slider picture {
  flex-shrink: 0;
}
@media screen and (max-width: 640px) {
  .open__slider img {
    width: 1000px;
  }
}
.open__slider.top {
  top: 10px;
}
.open__slider.top picture {
  -webkit-animation: infinity-scroll-left 80s infinite linear;
          animation: infinity-scroll-left 80s infinite linear;
}
.open__slider.bottom {
  bottom: 10px;
}
.open__slider.bottom picture {
  animation: infinity-scroll-left 80s infinite linear reverse;
}

/*-------------------------------------*/
/* about                               */
/*-------------------------------------*/
.about {
  padding: clamp(100px, 16vw, 160px) 0 clamp(32px, 6vw, 48px);
  background: url("../../assets/img/about_bg.jpg") no-repeat center/cover;
}
@supports (background: url("../../assets/img/test_webp.webp")) {
  .about {
    background: url("../../assets/img/about_bg.webp") no-repeat center/cover;
  }
}
.about__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem 3rem;
}
@media screen and (max-width: 690px) {
  .about__flex {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 640px) {
  .about__txt-wrap {
    width: 100%;
  }
}
.about__ttl {
  font-size: clamp(5.6rem, 9vw, 8rem);
  color: var(--color-primary);
  line-height: 1.05;
}
.about__txt {
  font-size: 1.5rem;
  line-height: 2;
  margin: clamp(16px, 4vw, 40px) 0 clamp(14px, 2vw, 24px);
}
.about__btm-txt {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.about__btm-txt img {
  display: inline-block;
  margin-inline: 1.7rem;
  vertical-align: bottom;
}
@media screen and (max-width: 640px) {
  .about__btm-txt img {
    width: 6rem;
    margin-inline: 1.2rem;
  }
}
.about__img-wrap {
  padding: 24px 32px 48px 32px;
  background-color: #fff;
  position: relative;
}
.about__img-wrap::before, .about__img-wrap::after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  --position: 2em;
}
@media screen and (max-width: 940px) {
  .about__img-wrap::before, .about__img-wrap::after {
    width: 80px;
    --position: 1em;
  }
}
.about__img-wrap::before {
  top: var(--position);
  left: var(--position);
  transform: translate(-50%, -50%) rotate(-40deg);
}
.about__img-wrap::after {
  bottom: var(--position);
  right: var(--position);
  transform: translate(50%, 50%) rotate(-40deg);
}
.about__message {
  margin-top: clamp(6rem, 9vw, 8.8rem);
  padding: clamp(48px, 6vw, 72px) clamp(24px, 6vw, 64px) clamp(32px, 5vw, 64px);
  background: url("../../assets/img/about_img.png") no-repeat right/contain #fff;
}
@supports (background: url("../../assets/img/test_webp.webp")) {
  .about__message {
    background: url("../../assets/img/about_img.webp") no-repeat right/contain #fff;
  }
}
@media screen and (max-width: 640px) {
  .about__message {
    background: #fff;
    padding: 0;
  }
}
.about__message-txt {
  width: min(100%, 492px);
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .about__message-txt {
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 2.4rem 3rem;
  }
}
.about__slider {
  display: flex;
  margin-top: clamp(80px, 15vw, 160px);
}
.about__slider picture {
  flex-shrink: 0;
  -webkit-animation: infinity-scroll-left 80s infinite linear;
          animation: infinity-scroll-left 80s infinite linear;
}
@media screen and (max-width: 940px) {
  .about__slider img {
    width: 2000px;
  }
}

/*-------------------------------------*/
/* floorGuide                          */
/*-------------------------------------*/
.floorGuide {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.floorGuide__shadow {
  padding-bottom: 9px;
  filter: drop-shadow(0px 4px 1px rgba(0, 0, 0, 0.1));
}
.floorGuide__top-ctr {
  position: relative;
  z-index: 3;
  padding: clamp(40px, 10vw, 140px) 0 clamp(56px, 12vw, 192px);
  color: var(--color-white);
  background: url("../../assets/img/floorGuide_catch_bg.jpg") no-repeat center/cover;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
          clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
}
@supports (background: url("../../assets/img/test_webp.webp")) {
  .floorGuide__top-ctr {
    background: url("../../assets/img/floorGuide_catch_bg.webp") no-repeat center/cover;
  }
}
@media screen and (max-width: 640px) {
  .floorGuide__top-ctr {
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 85%, 50% 100%, 0 85%);
            clip-path: polygon(0% 0%, 100% 0, 100% 85%, 50% 100%, 0 85%);
  }
}
.floorGuide__catch {
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  transform: skewX(-10deg);
  text-shadow: 0 0 13px rgba(0, 0, 0, 0.75);
}
.floorGuide__catch strong {
  display: flex;
  justify-content: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.4;
}
.floorGuide__catch span {
  font-size: clamp(70px, 9vw, 94px);
  line-height: 0.8;
  opacity: 0.75;
  margin: 0 0.5rem;
}
.floorGuide__mid-ctr {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: clamp(5.6rem, 8vw, 10rem) 0 clamp(7.2rem, 10vw, 12rem);
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 88%, 50% 100%, 0 88%);
          clip-path: polygon(0% 0%, 100% 0, 100% 88%, 50% 100%, 0 88%);
}
@media screen and (max-width: 640px) {
  .floorGuide__mid-ctr {
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 95%, 50% 100%, 0 95%);
            clip-path: polygon(0% 0%, 100% 0, 100% 95%, 50% 100%, 0 95%);
  }
}
.floorGuide__mid-ctr .inner {
  padding-bottom: clamp(4rem, 8vw, 11rem);
}
@media screen and (max-width: 640px) {
  .floorGuide__mid-ctr .inner {
    padding-bottom: 4rem;
  }
}
.floorGuide__btm-ctr {
  position: relative;
  z-index: -1;
  padding: min(30vw, 25.5rem) 0 clamp(6.4rem, 8vw, 10rem);
  margin-top: -15rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .floorGuide__btm-ctr {
    padding: 14rem 0 8rem;
    margin-top: -9rem;
  }
}
.floorGuide__btm-ctr::before, .floorGuide__btm-ctr::after {
  content: "";
  display: block;
  width: 177vw;
  height: 10vw;
  background-color: var(--color-white);
  position: absolute;
  transform: translate(25%, 0) rotate(320deg);
  right: 0;
  z-index: -1;
  opacity: 0.5;
}
.floorGuide__btm-ctr::before {
  top: -8%;
}
.floorGuide__btm-ctr::after {
  top: 108%;
}
.floorGuide .place:not(:last-child) {
  margin-bottom: clamp(7.2rem, 10vw, 8rem);
}
.floorGuide .place:nth-child(2) .place__txt-wrap {
  margin-left: auto;
}
.floorGuide .place__txt-wrap {
  position: relative;
  width: min(90%, 745px);
  margin-top: -115px;
  padding: 56px clamp(24px, 6vw, 40px);
  background-color: rgba(243, 238, 233, 0.8);
  -webkit-backdrop-filter: blur(29px);
          backdrop-filter: blur(29px);
  position: relative;
}
@media screen and (max-width: 640px) {
  .floorGuide .place__txt-wrap {
    width: 95%;
    margin-top: -2rem;
    padding: 4rem 2.4rem 0;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}
.floorGuide .place__txt-wrap::after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  top: 2em;
  left: 2em;
  transform: translate(-50%, -50%) rotate(-40deg);
}
@media screen and (max-width: 640px) {
  .floorGuide .place__txt-wrap::after {
    width: 80px;
    top: 1em;
    left: 1em;
  }
}
.floorGuide .place__num {
  font-size: clamp(5.6rem, 14vw, 12rem);
  line-height: 1;
  position: absolute;
  top: -0.5em;
  right: 2rem;
  background: linear-gradient(45deg, #ff730f 0%, #00ffd4 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: screen;
}
.floorGuide .place__ttl {
  color: var(--color-primary);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 640px) {
  .floorGuide .place__ttl {
    margin-bottom: 1.6rem;
  }
}
.floorGuide .place__txt {
  line-height: 2;
  font-size: clamp(14px, 3.8vw, 16px);
}
@media screen and (max-width: 640px) {
  .floorGuide .place__txt {
    line-height: 1.7;
  }
}
.floorGuide .place .btn {
  width: min(387px, 100%);
  display: block;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin-top: 3.2rem;
  padding: clamp(16px, 3vw, 24px) clamp(40px, 9vw, 92px) clamp(16px, 3vw, 24px) clamp(20px, 4vw, 32px);
  color: var(--color-white);
  background-color: var(--color-primary);
  position: relative;
}
@media screen and (max-width: 640px) {
  .floorGuide .place .btn {
    margin-top: 2.4rem;
  }
}
.floorGuide .place .btn:hover {
  background-color: color-mix(in srgb, var(--color-primary) 50%, var(--color-black) 50%);
}
.floorGuide .place .btn::after {
  content: "";
  display: block;
  width: min(6vw, 40px);
  height: min(6vw, 40px);
  aspect-ratio: 1/1;
  background: url("../../assets/img/btn_arw.svg") no-repeat center/contain;
  position: absolute;
  right: min(3vw, 32px);
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 640px) {
  .floorGuide .place .btn::after {
    width: 24px;
    height: 24px;
  }
}

/*-------------------------------------*/
/* schedule                            */
/*-------------------------------------*/
.schedule {
  padding: clamp(80px, 21vw, 120px) 0;
}
.schedule__ttl-wrap {
  padding-bottom: 11px;
  margin-bottom: 24px;
  border-bottom: solid 1px var(--color-border);
}
.schedule__sub-ttl {
  color: var(--color-primary);
  font-size: clamp(1.6rem, 4vw, 2rem);
}
.schedule__sub-ttl::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: var(--color-primary);
  transform: rotate(-45deg);
  vertical-align: super;
  margin-right: 3px;
}
.schedule__ttl {
  font-size: clamp(2.4rem, 6vw, 3.2rem);
}
.schedule__banner {
  color: var(--color-white);
  display: block;
  margin-top: 48px;
  padding: 193px 38px 38px;
  background: url("../../assets/img/schedule_banner.png") no-repeat center/cover;
  transition: filter 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .schedule__banner {
    padding: 8rem 2rem 2rem;
  }
}
.schedule__banner:hover {
  filter: brightness(0.6);
}
.schedule__banner-txt-wrap {
  position: relative;
  padding-right: clamp(3.2rem, 8.5vw, 5.4rem);
}
.schedule__banner-txt-wrap::after {
  content: "";
  display: block;
  width: clamp(3.2rem, 8.5vw, 5.4rem);
  height: clamp(3.2rem, 8.5vw, 5.4rem);
  aspect-ratio: 1/1;
  background: url("../../assets/img/banner_arw.svg") no-repeat center/contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
.schedule__banner-sub-ttl {
  font-size: clamp(16px, 4vw, 24px);
}
.schedule__banner-ttl {
  font-size: clamp(24px, 6.2vw, 32px);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/*-------------------------------------*/
/* access                              */
/*-------------------------------------*/
.access__top-area {
  padding: clamp(80px, 21vw, 120px) 0;
}
@media screen and (max-width: 640px) {
  .access__top-area {
    padding: 80px 0 40px;
  }
}
.access__map {
  width: 100%;
  height: 710px;
  filter: saturate(0);
}
@media screen and (max-width: 640px) {
  .access__map {
    height: 500px;
  }
}
.access__store-list-wrap {
  display: flex;
  gap: 72px 20px;
  align-items: flex-start;
}
@media screen and (max-width: 1195px) {
  .access__store-list-wrap {
    flex-wrap: wrap;
    gap: 50px 20px;
  }
}
.access__floor-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 800px) {
  .access__floor-wrap {
    width: 100%;
    gap: 16px;
  }
}
.access__floor-num {
  width: min(120px, 100%);
  text-align: center;
  display: inline-block;
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: solid 1px var(--color-primary);
}
@media screen and (max-width: 640px) {
  .access__floor-num {
    font-size: 18px;
    width: min(80px, 100%);
  }
}
.access__store-columns {
  display: flex;
  gap: 40px 20px;
  align-items: flex-start;
}
@media screen and (max-width: 600px) {
  .access__store-columns {
    flex-wrap: wrap;
  }
}
.access__store-col {
  width: 366px;
  display: flex;
  flex-direction: column;
  gap: 54px;
  list-style: none;
}
@media screen and (max-width: 800px) {
  .access__store-col {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .access__store-col {
    width: 100%;
    gap: 32px;
  }
}
.access__store-item {
  padding: 4px 24px;
  border-left: solid 1px var(--color-border);
}
.access__store-name {
  font-size: 20px;
  margin-bottom: 8px;
}
@media screen and (max-width: 640px) {
  .access__store-name {
    font-size: 18px;
    margin-bottom: 2px;
  }
}
.access__store-group:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 640px) {
  .access__store-group:not(:last-child) {
    margin-bottom: 10px;
  }
}
.access__store-groupTtl {
  display: inline-block;
  font-size: 12px;
  padding: 0 7px;
  background-color: var(--color-white);
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .access__store-groupTtl {
    margin-bottom: 7px;
  }
}
.access table {
  font-size: 14px;
}
.access table th,
.access table td {
  padding: 3px 0;
}
@media screen and (max-width: 640px) {
  .access table th,
.access table td {
    padding: 2px 0;
  }
}
.access table th {
  color: var(--color-primary);
  font-weight: 500;
  white-space: nowrap;
}
.access table td {
  padding-left: 5px;
}
.access table small {
  display: inline-block;
  font-size: 12px;
  margin-top: 4px;
  text-indent: -1em;
  padding-left: 1em;
}

/*-------------------------------------*/
/* footer                               */
/*-------------------------------------*/
.footer {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
  background-color: var(--color-black);
  padding: 24px 0;
}
@media screen and (max-width: 640px) {
  .footer {
    font-size: 2.5vw;
    font-weight: 500;
    padding: 5vw 0;
  }
}
/*# sourceMappingURL=style.css?transform-only.map */