@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");
:root {
  --ai-900: #002347;
  --ai-800: #003366;
  --ai-700: #003c78;
  --ai-600: #0a4d92;
  --ai-300: #9db5cd;
  --ai-100: #e7eef4;
  --sumi-900: #1a1a1a;
  --sumi-700: #333333;
  --gray-600: #666666;
  --gray-500: #8a8a8a;
  --gray-300: #cdcdcd;
  --gray-200: #dcdcdc;
  --gray-100: #efefef;
  --gray-50: #f7f7f7;
  --white: #ffffff;
  --beni-600: #a4343a;
  --beni-100: #f3e3e4;
  --charcoal-900: #2b2b2b;
  --positive: #2e7d4f;
  --warning: #b07b1e;
  --color-bg: var(--white);
  --color-surface: var(--white);
  --color-surface-muted: var(--gray-100);
  --color-surface-band: var(--gray-50);
  --color-surface-tint: var(--ai-100);
  --text-heading: var(--sumi-900);
  --text-body: var(--sumi-700);
  --text-muted: var(--gray-600);
  --text-caption: var(--gray-500);
  --text-on-primary: var(--white);
  --color-primary: var(--ai-700);
  --color-primary-hover: var(--ai-600);
  --color-primary-press: var(--ai-900);
  --color-link: var(--ai-700);
  --color-link-hover: var(--ai-600);
  --border-hairline: var(--gray-200);
  --border-strong: var(--sumi-900);
  --tab-inactive: var(--gray-300);
  --accent-beni: var(--beni-600);
  --surface-footer: var(--charcoal-900);
  --font-mincho: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --font-gothic: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-display: var(--font-mincho);
  --font-body: var(--font-gothic);
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fs-display: 48px;
  --fs-h1: 40px;
  --fs-h2: 32px;
  --fs-h3: 24px;
  --fs-h4: 19px;
  --fs-lead: 18px;
  --fs-body: 16px;
  --fs-sm: 14px;
  --fs-xs: 13px;
  --lh-tight: 1.3;
  --lh-snug: 1.5;
  --lh-body: 1.9;
  --ls-display: 0.04em;
  --ls-heading: 0.02em;
  --ls-body: 0.02em;
  --ls-label: 0.08em;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --section-gap: var(--space-9);
  --content-max: 1180px;
  --page-max: 1280px;
  --page-pad: var(--space-5);
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-pill: 999px;
  --bw-hairline: 1px;
  --bw-accent: 2px;
  --shadow-none: none;
  --shadow-card: 0 2px 10px rgba(0, 30, 64, 0.06);
  --shadow-raised: 0 8px 28px rgba(0, 30, 64, 0.10);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 140ms;
  --dur-base: 220ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

p {
  margin: 0;
  text-wrap: pretty;
}

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

button {
  font-family: inherit;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  font-weight: var(--fw-medium);
  margin: 0;
}

a {
  color: var(--color-link);
  transition: color var(--dur-fast) var(--ease-standard), opacity var(--dur-fast) var(--ease-standard);
}
a:hover {
  color: var(--color-link-hover);
}

.eyebrow-en {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-label);
  color: var(--color-primary);
}

main a {
  text-decoration: none !important;
}

.l-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.l-section {
  margin-block: var(--section-gap);
}
.l-section#access {
  margin-block: var(--section-gap) 0;
}

.l-section-band {
  background: var(--color-surface-band);
  padding: var(--space-8) 0;
}

.l-section-white-band {
  background: var(--white);
  margin-top: var(--section-gap);
  padding: var(--space-8) 0;
}

.l-point-band {
  background: #e8e9ec;
}
@media (max-width: 896px) {
  .l-point-band {
    padding-bottom: 0 !important;
  }
}

.l-footer-spacer {
  height: var(--space-9);
}

.c-breadcrumb-wrap {
  max-width: var(--page-max);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 20px var(--page-pad) 0;
}

.c-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--text-caption);
}
.c-breadcrumb a {
  color: var(--text-muted);
  text-decoration: underline !important;
  text-underline-offset: 2px;
}
.c-breadcrumb a:hover {
  color: var(--text-body);
}
.c-breadcrumb__sep {
  color: var(--gray-300);
}
.c-breadcrumb__current {
  color: var(--text-caption);
}

.c-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-block: 9px;
  padding-inline: 18px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-hairline);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--text-body) !important;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease-standard);
}
.c-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.c-pill:not([target=_blank]) {
  gap: 8px;
  padding-inline: 18px;
}
.c-pill:not([target=_blank])::after {
  content: "›";
  color: var(--color-primary);
  font-size: 1.5em;
  transform: translate(0, -3px);
}
.c-pill__icon {
  flex-shrink: 0;
  margin-right: 2px;
}
.c-pill-row {
  display: flex;
  justify-content: center;
  margin-top: var(--space-7);
}

.c-chevron-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 18px;
  width: fit-content;
  color: var(--color-link);
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-body);
  line-height: 1.6;
}
.c-chevron-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  z-index: 10;
  transform: translate(0, -50%);
  width: 13px;
  height: 13px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="%230a4d92" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><rect x="8" y="3" width="13" height="13" rx="2"></rect> <path d="M16 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h3"></path></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-label);
  line-height: 1;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--color-primary);
  padding: 13px 30px;
  font-size: var(--fs-sm);
  background: var(--color-primary);
  color: var(--text-on-primary) !important;
  transition: background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}
.c-button:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--text-on-primary) !important;
}

.c-section-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-hairline);
  margin-bottom: var(--space-6);
}
.c-section-bar h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  letter-spacing: 0.04em;
  margin: 0;
}

.p-hero {
  padding-top: var(--space-6);
}
.p-hero__titlerow {
  display: flex;
  align-items: flex-end;
  gap: var(--space-4);
  flex-wrap: wrap;
}
@media (max-width: 896px) {
  .p-hero__titlerow {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}
.p-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  letter-spacing: var(--ls-display);
  line-height: 1.2;
  margin: 0;
  flex: 0 1 auto;
}
@media (max-width: 896px) {
  .p-hero__title {
    font-size: clamp(32px, 8.5vw, 48px) !important;
  }
}
.p-hero__rule {
  border: 0;
  border-top: 1px solid var(--border-hairline);
  margin: var(--space-6) 0 0;
}
.p-hero__lead {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.9;
  text-align: center;
  margin: var(--space-6) 0;
}
.p-hero__actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.p-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--beni-600);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (max-width: 896px) {
  .p-alert {
    max-width: 100%;
    box-sizing: border-box;
    font-size: 11px !important;
    gap: 6px !important;
    padding: 7px 12px !important;
  }
}
.p-alert__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
@media (max-width: 896px) {
  .p-alert__dot {
    width: 7px !important;
    height: 7px !important;
  }
}
.p-alert__detail {
  font-weight: 500;
}

.p-hero-splide {
  position: relative;
  aspect-ratio: 16/9.5;
  border-radius: var(--radius-xs);
  overflow: hidden;
  background: var(--gray-50);
}
.p-hero-splide .splide__track,
.p-hero-splide .splide__list,
.p-hero-splide .splide__slide {
  height: 100%;
}

.p-hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-hero-feature {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.p-hero-feature:hover {
  opacity: 1;
}
.p-hero-feature__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 28, 56, 0.5), rgba(0, 28, 56, 0) 52%);
  opacity: 0;
  transition: opacity 0.35s var(--ease-standard);
}
.p-hero-feature:hover .p-hero-feature__grad, .p-hero-feature:focus-visible .p-hero-feature__grad {
  opacity: 1;
}
.p-hero-feature__cta {
  position: absolute;
  z-index: 10;
  right: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 4px;
}
@media (max-width: 896px) {
  .p-hero-feature__cta {
    bottom: 0;
  }
}
.p-hero-feature__label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  transition: opacity 0.3s;
}
@media (max-width: 896px) {
  .p-hero-feature__label {
    font-size: 14px;
  }
}
.p-hero-feature:hover .p-hero-feature__label, .p-hero-feature:focus-visible .p-hero-feature__label {
  opacity: 0.85;
}
.p-hero-feature__arrow {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s var(--ease-standard);
}
.p-hero-feature:hover .p-hero-feature__arrow, .p-hero-feature:focus-visible .p-hero-feature__arrow {
  transform: translateX(4px);
}

.p-hero-splide .splide__arrows {
  position: static;
}
.p-hero-splide .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 1;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-card);
  border: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-hero-splide .splide__arrow:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.85);
  opacity: 1;
}
.p-hero-splide .splide__arrow svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
}
@media (max-width: 896px) {
  .p-hero-splide .splide__arrow {
    width: 28px !important;
    height: 28px !important;
  }
  .p-hero-splide .splide__arrow svg {
    width: 11px !important;
    height: 11px !important;
  }
}
.p-hero-splide .splide__arrow--prev svg {
  transform: scaleX(-1);
}
.p-hero-splide .splide__arrow--prev {
  left: 14px;
}
@media (max-width: 896px) {
  .p-hero-splide .splide__arrow--prev {
    left: 8px !important;
  }
}
.p-hero-splide .splide__arrow--next {
  right: 14px;
}
@media (max-width: 896px) {
  .p-hero-splide .splide__arrow--next {
    right: 8px !important;
  }
}
.p-hero-splide .splide__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
}
.p-hero-splide .splide__pagination__page {
  width: 9px;
  height: 9px;
  margin: 0 4px;
  border-radius: 50%;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  transform: none;
  border: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}
.p-hero-splide .splide__pagination__page.is-active {
  background: var(--white);
  transform: none;
}

.p-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 896px) {
  .p-card-row {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}
.p-card-row::-webkit-scrollbar {
  display: none;
}

.p-news-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.p-news-card__img {
  aspect-ratio: 2100/1082;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--gray-50);
}
.p-news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--dur-base) var(--ease-standard);
}
.p-news-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
}

a.p-news-card:hover a.p-news-card__img img {
  opacity: 0.85;
}

.p-prod-row {
  gap: var(--space-7);
}
@media (max-width: 896px) {
  .p-prod-row {
    gap: 20px !important;
  }
}

.p-prod-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
@media (max-width: 896px) {
  .p-prod-card {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 16px !important;
  }
}
.p-prod-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--gray-50);
}
.p-prod-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 896px) {
  .p-prod-card__img {
    width: 120px;
    flex-shrink: 0;
  }
}
.p-prod-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.p-prod-card__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  margin: 4px 0 0;
  letter-spacing: 0.02em;
}
.p-prod-card__body p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  flex: 1;
}

.p-rest-stack {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-7);
  align-items: start;
  margin: var(--space-6) 0 var(--space-7);
}
@media (max-width: 896px) {
  .p-rest-stack {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

.p-rest-intro__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  margin: 0 0 var(--space-3);
}
.p-rest-intro p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.9;
  color: var(--text-body);
}

.p-rest-info-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  margin: var(--space-4) 0 0;
  letter-spacing: 0.02em;
}

.p-rest-hours {
  margin: var(--space-2) 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
}

.p-rest-interior {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--gray-50);
}
.p-rest-interior img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-rest-menu-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  margin: 0 0 var(--space-4);
}

.p-dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.p-dish-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.p-dish-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--gray-50);
}
.p-dish-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-dish-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  margin: 6px 0 0;
  line-height: 1.5;
}
.p-dish-card p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
}

.p-rest-note {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--text-caption);
  line-height: 1.8;
  margin: var(--space-4) 0 0;
}

.p-staff-row {
  display: flex;
  gap: var(--space-7);
  align-items: flex-start;
}
@media (min-width: 897px) {
  .p-staff-row {
    justify-content: center;
  }
}
@media (max-width: 896px) {
  .p-staff-row {
    gap: 16px !important;
    align-items: flex-start !important;
  }
}

.p-staff-portrait {
  flex-shrink: 0;
  width: 176px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
@media (max-width: 896px) {
  .p-staff-portrait {
    width: 72px !important;
  }
}
.p-staff-portrait__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
}
.p-staff-portrait__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media (max-width: 896px) {
  .p-staff-portrait__photo {
    width: 72px !important;
    height: 72px !important;
  }
}

.p-staff-bubble {
  position: relative;
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 26px 30px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 2;
  color: var(--text-body);
  letter-spacing: 0.04em;
}
.p-staff-bubble::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 40px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 16px solid var(--white);
}
.p-staff-bubble img {
  display: block;
  width: 50%;
  height: auto;
  margin-top: var(--space-4);
  border-radius: 10px;
}
.p-staff-bubble a {
  text-decoration: underline !important;
}
.p-staff-bubble a:hover {
  text-decoration: none !important;
}
.p-staff-bubble a[target=_blank] {
  position: relative;
  padding-right: 18px;
}
.p-staff-bubble a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  z-index: 10;
  transform: translate(0, -50%);
  width: 13px;
  height: 13px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="%230a4d92" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><rect x="8" y="3" width="13" height="13" rx="2"></rect> <path d="M16 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h3"></path></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 897px) {
  .p-staff-bubble {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .p-staff-bubble img {
    width: 430px;
  }
}
@media (max-width: 896px) {
  .p-staff-bubble {
    padding: 14px 16px !important;
  }
}

.p-gallery-splide {
  position: relative;
  padding-bottom: var(--space-5);
}

.p-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 896px) {
  .p-gallery-grid {
    grid-template-columns: 1fr;
  }
}
.p-gallery-grid .p-gtile {
  flex: 1 1 0;
}

.p-gtile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--gray-50);
}
.p-gtile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease-standard);
}

.p-gallery-splide .splide__arrows {
  position: static;
}
.p-gallery-splide .splide__arrow {
  position: absolute;
  top: calc(50% - 17px);
  transform: translateY(-50%);
  z-index: 3;
  background: none;
  border: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-300);
  opacity: 1;
  transition: color var(--dur-fast) var(--ease-standard);
}
.p-gallery-splide .splide__arrow:hover:not(:disabled) {
  color: var(--color-primary);
  background: none;
  opacity: 1;
}
.p-gallery-splide .splide__arrow svg {
  display: block;
  width: 18px;
  height: 34px;
  fill: currentColor;
}
@media (max-width: 896px) {
  .p-gallery-splide .splide__arrow {
    top: calc(50% - 17px);
  }
}
.p-gallery-splide .splide__arrow--prev svg {
  transform: scaleX(-1);
}
.p-gallery-splide .splide__arrow--prev {
  left: -26px;
}
.p-gallery-splide .splide__arrow--next {
  right: -26px;
}
.p-gallery-splide .splide__pagination {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.p-gallery-splide .splide__pagination__page {
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid #bcbcbc;
  background: transparent;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  opacity: 1;
  transform: none;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.p-gallery-splide .splide__pagination__page.is-active {
  background: var(--sumi-900);
  border-color: var(--sumi-900);
  transform: none;
}

.p-insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
@media (max-width: 896px) {
  .p-insta-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

.p-insta-tile {
  text-decoration: none;
}
.p-insta-tile__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--white);
}
.p-insta-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-insta-tile__user {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-caption);
  margin-top: 6px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-video-frame {
  position: relative;
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--sumi-900);
}
@media (max-width: 896px) {
  .p-video-frame {
    width: 100% !important;
  }
}
.p-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-point-banner {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: var(--space-4);
  align-items: center;
  border-radius: var(--radius-md);
  padding-right: var(--space-6);
  overflow: hidden;
  min-height: 245px;
}
@media (max-width: 896px) {
  .p-point-banner {
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    gap: 16px !important;
    padding: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 0 !important;
  }
}
.p-point-banner img {
  align-self: stretch;
  width: 100%;
  height: calc(100% + 20px);
  max-height: none;
  object-fit: cover;
  object-position: 50% top;
}
@media (max-width: 896px) {
  .p-point-banner img {
    order: 3;
    width: auto !important;
    height: auto !important;
    max-width: 216px !important;
    max-height: 198px !important;
    align-self: center !important;
    object-fit: contain !important;
    border-radius: 4px 4px 0 0;
  }
}
@media (max-width: 896px) {
  .p-point-banner > div {
    order: 1;
  }
}

.p-point-banner-accent {
  color: var(--color-primary);
}

.p-point-banner h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 8px;
}
@media (max-width: 896px) {
  .p-point-banner h3 {
    font-size: 22px !important;
    text-align: center;
  }
}

.p-point-banner-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
@media (max-width: 896px) {
  .p-point-banner-desc {
    text-align: center;
  }
}

.p-point-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: center;
}
@media (max-width: 896px) {
  .p-point-banner-actions {
    order: 2;
    align-self: stretch !important;
    width: 100%;
  }
}
.p-point-banner-actions .c-button {
  padding: 16px 20px;
  font-size: 14px;
}
@media (max-width: 896px) {
  .p-point-banner-actions .c-button {
    width: auto;
    align-self: center;
    padding: 10px 16px;
    font-size: 13px;
  }
}

.p-access-stack {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
@media (max-width: 896px) {
  .p-access-stack {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

.p-access-map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xs);
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-access-map__label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-caption);
  letter-spacing: 0.06em;
}
.p-access-map__pill {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.p-access-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  margin: 0 0 var(--space-3);
}
.p-access-info .list {
  margin: 0;
}

.p-access-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-hairline);
}
@media (max-width: 896px) {
  .p-access-row {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
}
.p-access-row:first-child {
  border-top: 1px solid var(--border-hairline);
}
.p-access-row dt {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}
.p-access-row dd {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}
.p-access-row dd a {
  text-decoration: underline !important;
}
.p-access-row dd a:hover {
  text-decoration: none !important;
}
.p-access-row dd a[target=_blank] {
  position: relative;
  padding-right: 18px;
}
.p-access-row dd a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  z-index: 10;
  transform: translate(0, -50%);
  width: 13px;
  height: 13px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="%230a4d92" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><rect x="8" y="3" width="13" height="13" rx="2"></rect> <path d="M16 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h3"></path></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-blockEditor h2.wp-block-heading {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  letter-spacing: 0.04em;
  margin: 0 0 var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-hairline);
}
@media (max-width: 896px) {
  .p-blockEditor h2.wp-block-heading {
    margin: 0 0 var(--space-4);
  }
}
.p-blockEditor h3.wp-block-heading {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  margin: 0 0 var(--space-3);
}
.p-blockEditor > h3.wp-block-heading {
  margin: var(--space-7) 0 var(--space-3);
}
.p-blockEditor h4.wp-block-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  margin: var(--space-4) 0 0;
  letter-spacing: 0.02em;
}
@media (max-width: 896px) {
  .p-blockEditor h4.wp-block-heading {
    margin: var(--space-4) 0 0;
  }
}
.p-blockEditor p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.9;
  color: var(--text-body);
  margin: var(--space-2) 0 0 !important;
}
@media (max-width: 896px) {
  .p-blockEditor p {
    margin-top: var(--space-2);
  }
}
.p-blockEditor p.has-small-font-size {
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--text-caption);
  margin: var(--space-4) 0 0;
}
.p-blockEditor > figure.wp-block-image {
  margin: 0 !important;
}
.p-blockEditor > figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-blockEditor .wp-block-columns {
  display: flex;
}
.p-blockEditor .wp-block-columns .wp-block-column {
  flex: 1;
  min-width: 0;
}
.p-blockEditor .wp-block-columns.column-2, .p-blockEditor .wp-block-columns.column-2-rtl {
  gap: var(--space-7);
  align-items: start;
  margin: var(--space-7) 0 0;
}
@media (max-width: 896px) {
  .p-blockEditor .wp-block-columns.column-2, .p-blockEditor .wp-block-columns.column-2-rtl {
    flex-direction: column !important;
    gap: var(--space-2);
  }
}
@media (max-width: 896px) {
  .p-blockEditor .wp-block-columns.column-2.column-2-rtl, .p-blockEditor .wp-block-columns.column-2-rtl.column-2-rtl {
    flex-direction: column-reverse !important;
  }
}
.p-blockEditor .wp-block-columns.column-2 .wp-block-column p:first-child, .p-blockEditor .wp-block-columns.column-2-rtl .wp-block-column p:first-child {
  margin-top: 0 !important;
}
.p-blockEditor .wp-block-columns.column-2 .wp-block-column .wp-block-image, .p-blockEditor .wp-block-columns.column-2-rtl .wp-block-column .wp-block-image {
  margin: 0;
}
.p-blockEditor .wp-block-columns.column-2 .wp-block-column .wp-block-image img, .p-blockEditor .wp-block-columns.column-2-rtl .wp-block-column .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-blockEditor .wp-block-columns.column-3 {
  gap: var(--space-6);
}
@media (max-width: 896px) {
  .p-blockEditor .wp-block-columns.column-3 {
    flex-direction: column;
    gap: var(--space-6);
  }
}
.p-blockEditor .wp-block-columns.column-3 .wp-block-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
@media (max-width: 896px) {
  .p-blockEditor .wp-block-columns.column-3 .wp-block-column {
    gap: var(--space-1);
  }
}
.p-blockEditor .wp-block-columns.column-3 .wp-block-column .wp-block-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--gray-50);
  margin: 0 !important;
}
@media (max-width: 896px) {
  .p-blockEditor .wp-block-columns.column-3 .wp-block-column .wp-block-image {
    margin: 0;
  }
}
.p-blockEditor .wp-block-columns.column-3 .wp-block-column .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-blockEditor .wp-block-columns.column-3 .wp-block-column h4.wp-block-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  margin: 6px 0 0;
  line-height: 1.5;
}
.p-blockEditor .wp-block-columns.column-3 .wp-block-column p.desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 !important;
}
.p-blockEditor .wp-block-columns.column-3 .wp-block-column p.price {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin: 2px 0 0 !important;
}
.p-blockEditor .a-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-block: 9px;
  padding-inline: 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-hairline);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--text-body) !important;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease-standard);
}
.p-blockEditor .a-button[target=_blank] {
  position: relative;
  padding-right: 24px;
}
.p-blockEditor .a-button[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 10;
  transform: translate(0, -50%);
  width: 13px;
  height: 13px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><rect x="8" y="3" width="13" height="13" rx="2"></rect> <path d="M16 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h3"></path></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-blockEditor .a-button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.u-sp-only {
  display: none;
}
@media (max-width: 896px) {
  .u-sp-only {
    display: inline;
  }
}