@charset "UTF-8";
/* =========== 基本設定 =========== */
:root {
  --c-text: #1e1e1e;
  --c-muted: #6b7280;
  --c-bg: #ffffff;
  --c-bg-alt: #d9d9d9;
  --c-key: #306ed2;
  --c-key-ink: #fff;
  --c-card-bg: #dbeafe;
  --c-card-gray-bg: #f5f5f5;
  --c-best: #f7931e;
  /* オレンジ枠 */
  --c-best-bg: #fcf2e8;
  /* クリーム背景 */
  --c-heiwajima: #f4621f;
  --c-haneda: #bbe26b;
  --c-kamata: #6db1ff;
  --radius: 16px;
  --container: 980px;
  --container-sm: 780px;
  --container-xs: 720px;
}

.gallery__stage {
  position: relative;
}

.gallery__main {
  position: relative;
  height: 292px;
  overflow: hidden;
  background: #f7f7f7;
  margin-bottom: 1rem;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transition: opacity 0.35s ease;
}
.gallery__main img.is-fading {
  opacity: 0;
}

.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: none;
  background-color: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.gallery__nav:hover, .gallery__nav:focus {
  outline: none;
}
.gallery__nav--prev {
  left: 0;
  z-index: 1;
}
.gallery__nav--next {
  right: 0;
}
.gallery__nav svg {
  width: 100%;
  height: auto;
  display: block;
}

.gallery__zoom {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.1rem 1rem;
  border: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.gallery__zoom:hover, .gallery__zoom:focus {
  background-color: rgba(244, 244, 244, 0.95);
  outline: none;
}

.gallery__thumbs {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 768px) {
  .gallery__thumbs {
    display: none;
  }
}

.gallery__thumb {
  position: relative;
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 482/292;
  min-height: 0;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
  opacity: 0.6;
}
.gallery__thumb:hover, .gallery__thumb:focus {
  outline: none;
  opacity: 1;
}
.gallery__thumb.is-active {
  opacity: 1;
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
}
.gallery-modal:not([hidden]) {
  display: flex;
}

.gallery-modal__overlay {
  position: absolute;
  inset: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.gallery-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.gallery-modal__nav {
  position: fixed;
  top: 50vh;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.gallery-modal__nav:hover, .gallery-modal__nav:focus {
  background-color: rgba(0, 0, 0, 0.8);
  outline: none;
}
.gallery-modal__nav--prev {
  left: clamp(1rem, 4vw, 3rem);
  z-index: 1;
}
.gallery-modal__nav--next {
  right: clamp(1rem, 4vw, 3rem);
}
.gallery-modal__nav svg {
  width: 24px;
  height: 24px;
  display: block;
}

.gallery-modal__image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: var(--radius, 16px);
  display: block;
  opacity: 1;
  transition: opacity 0.35s ease;
  margin-top: -2rem;
}
@media (max-width: 640px) {
  .gallery-modal__image {
    margin-top: 0;
  }
}
.gallery-modal__image.is-fading {
  opacity: 0;
}

.gallery-modal__counter {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  position: absolute;
  bottom: -3rem;
}
.gallery-modal__counter .gallery-modal__counter-sep {
  opacity: 0.7;
}

.gallery-modal__close {
  position: fixed;
  top: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.gallery-modal__close:hover, .gallery-modal__close:focus {
  background-color: rgba(0, 0, 0, 0.75);
  outline: none;
}
@media (max-width: 640px) {
  .gallery-modal__close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

.facility__hero {
  display: grid;
  grid-template-columns: minmax(0, 482px) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .facility__hero {
    grid-template-columns: 1fr;
  }
}
.facility h1 {
  font-size: 1.5rem;
}
.facility h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.facility__gallery {
  position: relative;
}
.facility__meta {
  display: grid;
}
.facility__meta dt,
.facility__meta dd {
  margin: 0;
}
.facility .facility__schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
  margin: 0;
}
.facility .facility__schedule-item {
  display: grid;
  gap: 0.25rem;
}
.facility .facility__schedule-item dt {
  background: var(--c-card-bg);
  padding: 0.2rem 1rem;
  text-align: center;
  font-size: 0.8rem;
}
.facility .facility__schedule-item dd {
  background: var(--c-card-gray-bg);
  padding: 0.2rem 1rem;
  text-align: center;
  font-size: 0.8rem;
}
.facility .facility__content {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin: 0.5rem 0;
}
.facility .facility__content div {
  display: flex;
  flex-direction: row;
  gap: 0.2rem;
}
.facility .facility__content dt {
  font-weight: 600;
  color: var(--c-text);
}
.facility .facility__content dd {
  margin: 0;
  font-weight: 500;
}
.facility__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 1rem;
}
.facility__desc {
  margin-bottom: 1.5rem;
}
.facility__anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}
.facility__anchor {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 999px;
  background: var(--c-key);
  color: var(--c-key-ink);
  text-decoration: none;
  font-size: 0.8rem;
}
.facility__details details {
  border-bottom: 1px solid #ddd;
  padding: 0.2rem 0;
}
.facility__details details summary {
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 2.5rem;
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}
.facility__details details summary::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/ac_down.svg") no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.facility__details details p {
  margin: 0 0 0.5rem;
}
.facility__details details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.facility__access {
  margin: 2rem 0;
  display: grid;
  gap: 0 2rem;
  grid-template-columns: 1fr 1fr; /* 左:タイトル&情報, 右:地図 */
  grid-template-areas: "title map" "info  map";
  align-items: start;
}
.facility__access > h2 {
  grid-area: title;
  margin-bottom: 0;
}
.facility__access-info {
  grid-area: info;
}
.facility__map {
  grid-area: map;
}
.facility__access-info {
  display: grid;
  gap: 0.5rem;
}
.facility__access-info h2 {
  margin: 0;
}
.facility__access-info p {
  margin: 0;
}
.facility__access-info > div {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .facility .facility__access {
    grid-template-columns: 1fr; /* 1カラム */
    gap: 1rem;
    grid-template-areas: "title" "map" "info";
  }
}
.facility .facility__address-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.facility .facility__address-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.facility .facility__address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
}
.facility .facility__postal {
  font-weight: 600;
  margin: 0;
}
.facility .facility__address {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}
.facility .facility__map-link {
  font-weight: 700;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
}
.facility .facility__map-link span {
  text-decoration: underline;
}
.facility .facility__map-link::after {
  content: "→";
  font-size: 1.1rem;
}
.facility .facility__map-link:hover, .facility .facility__map-link:focus {
  opacity: 0.75;
}
.facility .facility__map-link:hover span, .facility .facility__map-link:focus span {
  text-decoration: none;
}
.facility__map {
  overflow: hidden;
  min-height: 260px;
  width: 100%;
}
.facility__map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

.room__title {
  border-bottom: 2px solid #ddd;
}
.room__title h1 {
  font-size: 1.5rem;
  margin-top: 0;
}
.room__title a {
  text-decoration: underline;
}
.room__title a:hover, .room__title a:focus {
  text-decoration: none;
}

.room__price {
  text-align: right;
  font-weight: 700;
  font-size: 1.2rem;
}

.room__content {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}
.room__content.room__style {
  font-weight: 800;
  font-size: 0.8rem;
}

.room_submit {
  margin: 1rem auto;
  text-align: center;
}

.rooms-same-building__list {
  margin: 0;
  padding-left: 0;
}

.facility__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  grid-auto-rows: 1fr;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.facility__cards > * {
  scroll-snap-align: start;
  height: 100%;
}
.facility__cards.is-dragging {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.card-room {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
}
.card-room__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #fff;
  padding: 0.25rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 1;
}
.card-room .card__thumb {
  position: relative;
  flex-shrink: 0;
}
.card-room .card__body {
  gap: 0.75rem;
  flex: 1;
}
.card-room__meta {
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
.card-room__meta span {
  margin-right: 0.75rem;
  display: inline-block;
}
.card-room__details {
  padding: 0.75rem;
  background: #fff;
}
.card-room__details span {
  font-size: 0.9rem;
  margin-right: 1rem;
}
.card-room__price {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: right;
}
.card-room__cta {
  margin-top: auto;
  display: flex;
}

.faqs {
  display: flex;
  gap: 2rem;
}
.faqs h2 {
  margin: 0;
}
.faqs .faq__details {
  flex: 1;
}
.faqs .faq__details details {
  border-bottom: 1px solid #ddd;
  padding: 0.2rem 0;
}
.faqs .faq__details details summary {
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 2.5rem;
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}
.faqs .faq__details details summary::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url("../images/ac_down.svg") no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.faqs .faq__details details p {
  margin: 0 0 0.5rem;
}
@media (max-width: 980px) {
  .faqs {
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
  }
}/*# sourceMappingURL=stay-single.css.map */