@charset "UTF-8";
.c-card2-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .c-card2-list {
    grid-template-columns: 1fr;
  }
}

a.c-card2:hover .c-card2__image img {
  scale: 1.03;
}

.c-card2 {
  border-radius: 2rem;
  background-color: #fff;
  padding: 3rem;
  display: block;
}
@media (max-width: 768px) {
  .c-card2 {
    padding: 2rem 1.5rem;
  }
}
.c-card2__subtitle {
  font-size: 1.6rem;
  color: var(--accent1);
  font-family: var(--font-en);
  margin-bottom: 0.7rem;
  margin-top: 1.6rem;
}
@media (max-width: 768px) {
  .c-card2__subtitle {
    font-size: 1.2rem;
    margin-top: 1.2rem;
  }
}
.c-card2__title {
  font-size: 2.4rem;
  margin: 1.5rem 0 2rem;
}
@media (max-width: 768px) {
  .c-card2__title {
    font-size: 2rem;
    margin: 0.3rem 0 1.5rem;
  }
}
.c-card2__image {
  overflow: hidden;
  border-radius: 1rem;
}
.c-card2__image img {
  object-fit: cover;
  transition: 0.4s;
}
@media print, screen and (min-width: 769px) {
  .c-card2--holizontal {
    gap: 4rem;
    display: grid;
    grid-template-columns: 52rem 1fr;
    align-items: center;
  }
  .c-card2--holizontal .c-link-mark {
    margin-top: 4rem;
  }
  .c-card2--holizontal .c-card2__subtitle {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .c-card2--holizontal .c-card2__title {
    font-size: 3.2rem;
    line-height: 1.8;
    margin: 0 0 2rem;
  }
}

.p-floormap-tabs {
  display: grid;
  grid-template-columns: repeat(2, 20rem);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .p-floormap-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.p-floormap-tab {
  background-color: #fff;
  font-weight: bold;
  background-color: #fff;
  border-radius: 4rem;
  color: #a2a4a7;
  text-align: center;
  align-content: center;
  transition: 0.4s;
  height: 4.4rem;
  cursor: pointer;
}
.p-floormap-tab:hover {
  opacity: 0.8;
}
.p-floormap-tab.is-active {
  background-color: var(--accent2);
  color: #fff;
}

.p-floormap-detail-slider {
  position: relative;
  width: 100%;
}
.p-floormap-detail-slider .splide__navi {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-floormap-detail-slider .splide__navi {
    margin-top: 1rem;
  }
}
.p-floormap-detail-slider .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
.p-floormap-detail-slider .splide__arrow {
  position: relative;
  inset: auto;
  transform: none;
  transform: scaleX(-1) !important;
  background: none;
  outline: none;
}
.p-floormap-detail-slider .splide__arrow svg {
  width: 0.9rem;
}
.p-floormap-detail-slider .splide__pagination {
  position: relative;
  inset: auto;
  bottom: 0;
}
.p-floormap-detail-slider .splide__pagination__page {
  width: 1rem;
  height: 1rem;
  transform: scale(1) !important;
  margin: 0 0.75rem;
  opacity: 1 !important;
}
.p-floormap-detail-slider .splide__pagination__page.is-active {
  background-color: var(--accent1);
}
.p-floormap-detail-slider .splide__track {
  border-radius: 1.2rem;
  overflow: hidden;
}
.p-floormap-detail-slider .splide__slide a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
}
.p-floormap-detail-slider .splide__slide a:hover {
  opacity: 0.8;
}
.p-floormap-detail-slider .splide__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .p-floormap-detail-slider .splide__slide img {
    aspect-ratio: 4/3;
  }
}
.p-floormap-detail-slider__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .p-floormap-detail-slider__controls {
    margin-top: 1.5rem;
    gap: 2rem;
  }
}
.p-floormap-detail-slider__arrow {
  position: static !important;
  transform: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  cursor: pointer;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
  width: auto !important;
  height: auto !important;
  opacity: 1 !important;
}
.p-floormap-detail-slider__arrow:hover {
  color: var(--accent1);
}
.p-floormap-detail-slider__arrow svg {
  width: 2.4rem;
  height: 2.4rem;
}
.p-floormap-detail-slider__arrow:disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
}
.p-floormap-detail-slider__pagination {
  position: static !important;
  transform: none !important;
  display: flex !important;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  width: auto !important;
}
@media (max-width: 768px) {
  .p-floormap-detail-slider__pagination {
    gap: 1rem;
  }
}
.p-floormap-detail-slider__pagination li {
  display: flex;
  align-items: center;
}
.p-floormap-detail-slider__pagination .splide__pagination__page {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  opacity: 1 !important;
  margin: 0 !important;
}
.p-floormap-detail-slider__pagination .splide__pagination__page:hover {
  background-color: #b3b3b3;
}
.p-floormap-detail-slider__pagination .splide__pagination__page.is-active {
  background-color: var(--accent1) !important;
  transform: scale(1.25);
}

.p-floormap-detail-slide-label {
  position: absolute;
  z-index: 2;
  inset: 2rem auto auto 2rem;
  background-color: #fff;
  padding: 0.5rem 1.5rem;
  width: fit-content;
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .p-floormap-detail-slide-label {
    font-size: 1.6rem;
    inset: 1rem auto auto 1rem;
    padding: 0.2rem 1rem;
  }
}

.p-floormap-iframe iframe {
  border-radius: 2rem;
  width: 100%;
  height: 54rem;
}
@media (max-width: 768px) {
  .p-floormap-iframe iframe {
    height: 22.5rem;
    aspect-ratio: 345/225;
    border-radius: 1rem;
  }
}

.p-floormap-map__buttons {
  display: flex;
  gap: 12rem;
}
@media (max-width: 768px) {
  .p-floormap-map__buttons {
    display: grid;
    gap: 3.5rem;
  }
}

.p-floor-btns {
  display: flex;
  gap: 12rem;
}
@media (max-width: 768px) {
  .p-floor-btns {
    display: grid;
    gap: 3.5rem;
  }
}

/* SP Floor Map Modal */
.p-floormap-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  box-sizing: border-box;
}
@media print, screen and (min-width: 769px) {
  .p-floormap-modal {
    display: none !important;
  }
}
.p-floormap-modal__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  line-height: 1;
  user-select: none;
}
.p-floormap-modal__content-wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: block;
  padding: 12rem 2rem 4rem;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.p-floormap-modal__map {
  display: block;
  width: 250%; /* SPで十分に拡大して見られるように拡大率を高めに設定 */
  max-width: none;
  height: auto;
  margin: 0 auto;
}
.p-floormap-modal__map svg {
  width: 100%;
  height: auto;
  display: block;
}
