:root {
  --color-primary: #0077cd;
  --color-text: #1b2228;
  --color-text-sub: rgba(27, 34, 40, 0.5);
  --color-bg-list: #fafdff;
  --color-bg-white: #ffffff;
  --color-border-card: rgba(73, 95, 110, 0.12);
  --color-border-sec: rgba(0, 0, 0, 0.12);
  --color-overlay: rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg-list);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.p-search__icon .material-symbols-outlined {
  font-size: 18px;
}

.p-chips__select-arrow .material-symbols-outlined,
.p-filter-dropdown__arrow .material-symbols-outlined {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-gallery__trigger-icon .material-symbols-outlined {
  font-size: 24px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-tab-btn__icon .material-symbols-outlined {
  font-size: 24px;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--color-bg-list);
}

.l-page {
  width: 100%;
  max-width: 430px;
  min-height: 100dvh;
  background-color: var(--color-bg-white);
  overflow-x: hidden;
  position: relative;
}

.l-page--detail {
  background-color: var(--color-bg-white);
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.35;
  border: none;
  text-align: center;
}
.c-btn--primary {
  background-color: var(--color-primary);
  color: #fff;
}
.c-btn--outline {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  border: 0.5px solid var(--color-primary);
}

.c-tab-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 8px;
  border-radius: 20px;
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.c-tab-btn__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-tab-btn__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1px;
  white-space: nowrap;
  min-width: 0;
}
.c-tab-btn__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.c-tab-btn__sub {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.c-tab-btn--primary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fff;
}
.c-tab-btn--outline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.c-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.c-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 90dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  padding: 0;
  font-family: inherit;
}
.c-modal__inner {
  width: 100%;
  background-color: var(--color-bg-white);
  border-radius: 20px 20px 0 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
}
.c-modal--coupon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
}
.c-modal--coupon .c-modal__card {
  max-height: 85dvh;
}
.c-modal--coupon .c-modal__inner {
  border-radius: 20px;
}
.c-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.35;
}
.c-modal__text {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.8;
}

.c-coupon__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #b6dbed;
  border-radius: 8px;
  container-type: inline-size;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-coupon__image span {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: white;
}
.c-coupon__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.c-coupon__used {
  display: none;
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: #d32f2f;
  border-radius: 8px;
  padding: 4px 8px;
}
.c-coupon__used.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-coupon__used-text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.c-coupon__note {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.8;
}
.c-coupon__remain {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.35;
}
.c-coupon__use-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 20px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.c-coupon__use-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.c-coupon__cautions {
  font-size: 11px;
  color: var(--color-text-sub);
  line-height: 1.8;
}
.c-coupon__cautions p + p {
  margin-top: 0;
}
.c-coupon__history {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.35;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-coupon__history-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-search {
  background-color: var(--color-bg-white);
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.p-search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.p-search__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: rgba(2, 9, 13, 0.04);
  border-radius: 360px;
  width: 100%;
}
.p-search__icon {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--color-text-sub);
}
.p-search__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: transparent;
  border: none;
  font-size: 14px;
  color: var(--color-text);
  font-family: inherit;
  line-height: 1.35;
  min-width: 0;
}
.p-search__input::-webkit-input-placeholder {
  color: var(--color-text-sub);
}
.p-search__input::-moz-placeholder {
  color: var(--color-text-sub);
}
.p-search__input:-ms-input-placeholder {
  color: var(--color-text-sub);
}
.p-search__input::-ms-input-placeholder {
  color: var(--color-text-sub);
}
.p-search__input::placeholder {
  color: var(--color-text-sub);
}
.p-search__input:focus {
  outline: none;
}
.p-search__input[type=search] {
  -webkit-appearance: none;
}
.p-search__input[type=search]::-webkit-search-cancel-button {
  display: none;
}

.p-chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 100%;
}
.p-chips__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  line-height: 1.35;
  padding: 10px 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-chips__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 0.5px solid rgba(73, 95, 110, 0.3);
  border-radius: 32px;
  overflow: visible;
  min-width: 0;
}
.p-chips__select-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--color-bg-white);
  border-radius: 32px 0 0 32px;
  overflow: hidden;
}
.p-chips__select-wrap:not(:last-child) {
  border-right: 0.5px solid rgba(73, 95, 110, 0.3);
}
.p-chips__select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 10px 32px 10px 16px;
  background: transparent;
  border: none;
  font-size: 14px;
  color: var(--color-text);
  font-family: inherit;
  line-height: 1.35;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-chips__select:focus {
  outline: none;
}
.p-chips__select-arrow {
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-text);
  font-size: 18px;
}

.p-filter-dropdown {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-filter-dropdown:not(:last-child) {
  border-right: 0.5px solid rgba(73, 95, 110, 0.3);
}
.p-filter-dropdown__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 10px 6px 10px 16px;
  background-color: var(--color-bg-white);
  border: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.35;
  cursor: pointer;
  white-space: nowrap;
  text-align: left;
  border-radius: 0 32px 32px 0;
}
.p-filter-dropdown__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-filter-dropdown__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-text);
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.p-filter-dropdown__panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 200px;
  background-color: var(--color-bg-white);
  border: 0.5px solid rgba(73, 95, 110, 0.3);
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 200;
  padding: 4px 0;
}
.p-filter-dropdown.is-open .p-filter-dropdown__panel {
  display: block;
}
.p-filter-dropdown.is-open .p-filter-dropdown__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-filter-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 16px;
  cursor: pointer;
}
.p-filter-option:active {
  background-color: rgba(0, 0, 0, 0.04);
}
.p-filter-option__input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}
.p-filter-option__label {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.35;
  white-space: nowrap;
}

.p-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
}
.p-filter-overlay.is-active {
  display: block;
}

.p-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 16px;
  background-color: var(--color-bg-list);
}

.p-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid rgba(73, 95, 110, 0.12);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.p-card__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 121px;
  aspect-ratio: 1/1;
  position: relative;
}
.p-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  padding: 8px;
  min-width: 0;
}
.p-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.p-card__name {
  font-size: 14px;
  line-height: 1.35;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-card__category {
  font-size: 11px;
  color: var(--color-text-sub);
  line-height: 1.35;
}
.p-card__offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.p-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-card__conditions {
  font-size: 13px;
  color: var(--color-text-sub);
  white-space: nowrap;
  line-height: normal;
}

[data-card].is-hidden {
  display: none;
}

.p-load-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 16px;
  margin-bottom: 32px;
  width: 100%;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
  font-family: inherit;
}

.p-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100dvh;
  background-color: var(--color-bg-white);
  padding-bottom: calc(88px + env(safe-area-inset-bottom));
}

.p-detail-slider {
  width: 100%;
  overflow: hidden;
  padding: 32px 16px 16px;
}
.p-detail-slider .swiper {
  overflow: visible;
  padding-bottom: 28px;
}
.p-detail-slider .swiper-slide {
  width: 100%;
  aspect-ratio: 300 / 166;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-detail-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-detail-slider .swiper-pagination {
  bottom: 0;
}
.p-detail-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.25);
  opacity: 1;
}
.p-detail-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.p-detail-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 0 16px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.p-detail-facility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-detail-facility__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-detail-facility__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-detail-facility__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.p-detail-facility__name-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.p-detail-facility__name {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-detail-facility__access {
  font-size: 12px;
  color: var(--color-text-sub);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-detail-facility__offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}
.p-detail-facility__offer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: normal;
}
.p-detail-facility__offer-cond {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: normal;
}

.p-detail-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 16px 40px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.p-detail-actions__note {
  font-size: 13px;
  color: var(--color-text-sub);
  text-align: center;
  line-height: normal;
}

.p-detail-actions__link {
  display: block;
  padding: 4px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
  cursor: pointer;
}

.p-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--color-bg-white);
  overflow: hidden;
}
.p-section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 16px 4px;
}
.p-section__title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  line-height: normal;
  white-space: nowrap;
}
.p-section__body {
  padding: 8px 24px;
}
.p-section__text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.8;
}
.p-section__text p + p {
  margin-top: 0;
}
.p-section__dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}
.p-section__dt {
  padding: 4px 0;
  color: var(--color-text-sub);
  white-space: nowrap;
  font-weight: 500;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.p-section__dt:first-child {
  border-top: none;
}
.p-section__dd {
  padding: 4px 0 4px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  min-width: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.p-section__dd:nth-child(2) {
  border-top: none;
}
.p-section__map-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
}
.p-section__map-link .material-symbols-outlined {
  font-size: 16px;
}
.p-section__map {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 8px;
}
.p-section__map iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: 220px !important;
  border: 0;
}
.p-section__ext-link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  word-break: break-all;
}

.p-gallery__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 16px 4px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
}
.p-gallery__trigger-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  line-height: normal;
}
.p-gallery__trigger-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-text);
}
.p-gallery__content {
  display: none;
  padding: 8px 16px 16px;
}
.p-gallery__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.p-gallery__thumb {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.p-gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-gallery.is-open .p-gallery__content {
  display: block;
}

.p-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: var(--color-overlay);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-lightbox.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-lightbox__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-lightbox__img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 85dvh;
  border-radius: 8px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  padding: 0;
}

.p-detail-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 100;
  background-color: var(--color-bg-white);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.p-detail-footer__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.p-detail-footer__indicator {
  height: 4px;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 360px;
  width: 120px;
  margin: 4px auto 0;
}
.p-section__map iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  display: block;
}
.p-section__map { width: 100%; max-width: 100%; overflow: hidden; }
.p-section__dd { min-width: 0; }
/*# sourceMappingURL=main.css.map */