.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: inline-block;
  }
}

.pc {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

:root {
  --bg:#1f376b;
  --bg2:#0d1c39;
  --text:rgba(255,255,255,.94);
  --muted:rgba(0,0,0,.76);
  --accent:#132c4a;
  --shadow: 0 28px 120px rgba(0,0,0,.55);
  --max: 1120px;
  --radius: 0px;
}

:root {
  --key:#b9d4ef;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

body {
  margin: 0;
  font-family: "EB Garamond", "Noto Serif JP", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: normal;
  color: var(--text);
  /*
  background:
    radial-gradient(1100px 700px at 70% 10%, rgba(143,227,255,.20), transparent 55%),
    radial-gradient(900px 650px at 10% 20%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg) 55%, var(--bg2));
    */
  overflow-x: hidden;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 0;
}
body::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  background-image: linear-gradient(to top, #09203f 0%, #537895 100%);
}

a {
  color: inherit;
}

b {
  font-weight: 600;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* Ensure content sits above canvas */
header, main, section, footer {
  position: relative;
  z-index: 2;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
@media (max-width: 560px) {
  .nav__inner {
    padding: 14px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__mark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(143, 227, 255, 0.55));
  box-shadow: 0 0 0 8px rgba(143, 227, 255, 0.1);
}

.brand__logo {
  width: 11rem;
}

.brand__text {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__links a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  transition: all 0.5s;
}
.nav__links a:hover {
  opacity: 0.5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
  will-change: transform;
}
@media (max-width: 560px) {
  .btn {
    font-size: 1rem;
  }
}

.btn--ghost {
  background: transparent;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/image/image05-2.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.1) brightness(1.1);
  transform: scale(1.02);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: 6% 0 44px;
}
.hero__content .container {
  width: 100%;
  display: flex;
}

.hero__copy {
  max-width: 96ch;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 560px) {
  .eyebrow {
    font-size: 10px;
  }
}

/* Bigger headings with safe mobile wrap */
h1 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4.6vw, 46px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}
h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.95;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.kicker {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* Scroll hint */
.scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll__dot {
  width: 18px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll__dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(143, 227, 255, 0.95);
  animation: scrollDot 1.2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  30% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}
/* Sections */
.section {
  padding: 5rem 0;
}
@media (max-width: 560px) {
  .section {
    padding: 3rem 0;
  }
}

.section--tight {
  padding-top: 30px;
}

.section__head {
  margin-bottom: 20px;
}

.sub {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
  max-width: 78ch;
}

.copy {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.9);
}

.copy--muted {
  color: rgba(255, 255, 255, 0.76);
}

.two {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

/* Media (avoid too big verticals) */
.media, .shot {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, filter 0.35s ease;
  will-change: transform;
}

.media img, .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media--tall {
  /* smaller than before */
  min-height: 360px;
  max-height: 520px;
}
@media (max-width: 560px) {
  .media--tall {
    min-height: 260px;
  }
}

.media--tall img {
  height: 100%;
}

/* About collage */
.aboutCollage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.shot--b {
  transform: translateY(-10px);
}

.shot--a {
  transform: translateY(18px);
  opacity: 0.95;
}

.shot--c {
  transform: translateY(28px);
  opacity: 0.95;
}

.leadBlock {
  margin-top: 20px;
}

.note {
  display: inline-block;
  margin-left: 0.35em;
  opacity: 0.75;
  font-size: 12px;
}

/* Sauna */
.saunaGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.saunaGrid .media--tall {
  grid-row: span 2;
}

.saunaCopy {
  align-self: end;
  padding-top: 6px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.bullets li {
  display: block;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.bullets li:first-child {
  border-top: 0;
}

/* Gallery collage (slightly smaller heights) */
.galleryCollage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  align-items: stretch;
}

.galleryCollage .g1 {
  grid-column: span 7;
  min-height: 380px;
}

.galleryCollage .g2 {
  grid-column: span 5;
  min-height: 250px;
}

.galleryCollage .g3 {
  grid-column: span 5;
  min-height: 250px;
}

.galleryCollage .g4 {
  grid-column: span 7;
  min-height: 300px;
}

/* Hotel block */
.hotelBlock {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
}

.hotelText {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
}

.hotelName {
  font-size: 22px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.hotelNameEn {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hotelAddr {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.86);
}

.hotelHint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.hotelPhoto {
  /* prevent oversized vertical */
}

/* CTA / Footer */
.cta {
  padding: 24px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  padding: 24px 0 78px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__copy {
  opacity: 0.72;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Canvas bubbles behind photos/content */
.bubbleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  /* behind all content */
  mix-blend-mode: normal;
  mask-image: linear-gradient(to top, transparent 0%, black 30%, black 80%, transparent 100%);
}

/* Responsive */
@media (max-width: 980px) {
  .two {
    grid-template-columns: 1fr;
  }

  .aboutCollage {
    grid-template-columns: 1fr;
  }

  .shot--a, .shot--b, .shot--c {
    transform: none;
  }

  .saunaGrid {
    grid-template-columns: 1fr;
  }

  .saunaGrid .media--tall {
    grid-row: auto;
  }

  .galleryCollage {
    grid-template-columns: repeat(6, 1fr);
  }

  .galleryCollage .g1, .galleryCollage .g4 {
    grid-column: span 6;
  }

  .galleryCollage .g2, .galleryCollage .g3 {
    grid-column: span 6;
  }

  .hotelBlock {
    grid-template-columns: 1fr;
  }

  .hotelPhoto {
    max-height: 360px;
  }
}
@media (max-width: 560px) {
  .nav__links {
    display: none;
  }

  .hero__content {
    padding: 92px 0 52px;
  }
}
.bullets span {
  display: none;
}

.bullets li {
  word-break: normal;
  overflow-wrap: anywhere;
}

/* Hero copy positioning for better image visibility */
/* Hotel photo: show full building */
.hotelPhoto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: 500px;
}

/* CTA more prominent */
.cta {
  margin-top: 10px;
  padding: 20px 18px;
  box-shadow: none;
}

.cta h2 {
  margin-bottom: 6px;
}

.kicker span {
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.kicker span:last-child {
  border-right: 0;
  padding-right: 0;
}

/* Disable image hover motion */
/* Lighter typography */
body {
  font-weight: 300;
  letter-spacing: 0.02em;
}

h1, h2, h3 {
  font-weight: 400;
}

/* Brighter background */
:root {
  --accent:#c8bfa8;
}

/* Gallery loop slider */
.gallery-loop {
  overflow: hidden;
}

.gallery-loop__track {
  display: flex;
  gap: 20px;
  animation: galleryLoop 35s linear infinite;
}
@media (max-width: 560px) {
  .gallery-loop__track {
    animation: galleryLoop 5s linear infinite;
  }
}

.gallery-loop img {
  height: 300px;
  width: auto;
}
@media (max-width: 560px) {
  .gallery-loop img {
    height: 190px;
  }
}

@keyframes galleryLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* News */
.news__list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.news__list li {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
}

.news__list time {
  opacity: 0.7;
  min-width: 90px;
}

.media:hover, .shot:hover {
  transform: none !important;
  filter: none !important;
}

/* News */
.news__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.news__list li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text);
}

.news__list time {
  color: rgba(20, 20, 20, 0.6);
  min-width: 92px;
  font-variant-numeric: tabular-nums;
}

/* Force dark text (improve readability) */
body {
  color: var(--text);
}

.sub, .copy, .copy--muted, .eyebrow, .kicker span, .nav__links a, .brand__text {
  color: var(--text) !important;
}

.footer, .footer__copy {
  color: rgba(255, 255, 255, 0.72) !important;
}

.nav {
  color: var(--text);
}

.hero__copy {
  text-shadow: none !important;
}

/* Full-bleed gallery loop (edge-to-edge) */
#gallery .container {
  max-width: var(--max);
}

.gallery-loop {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.gallery-loop__viewport {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.gallery-loop__track {
  padding: 18px 0;
  gap: 3rem;
}

/* Stagger images for a more editorial feel */
.gallery-loop img {
  border-radius: 0;
  box-shadow: none;
}

.gallery-loop img:nth-child(odd) {
  transform: translateY(3rem);
}

/* Keep motion smooth */
.gallery-loop__track {
  will-change: transform;
}

/* CTA without shadow */
.cta {
  box-shadow: none !important;
}

.btn {
  box-shadow: none !important;
}

/* ===============================
   Key Color Accent (#3d62ad)
   =============================== */
/* Headings & emphasis */
h1 .accent,
h2,
.section__head h2 {
  color: var(--key);
}

/* Eyebrow & kicker */
.eyebrow {
  color: var(--key) !important;
  letter-spacing: 0.18em;
}

.kicker span {
  color: rgba(61, 98, 173, 0.85) !important;
}

/* Links & nav */
a:hover {
  color: var(--key);
}

/* Buttons */
.btn--primary {
  color: #fff !important;
  border-color: var(--key) !important;
}

.btn--ghost {
  border-color: var(--key) !important;
}

/* Section dividers */
.section:first-of-type {
  border-top: 0;
}

/* News accent */
.news__list time {
  color: var(--key) !important;
  font-weight: 500;
}

/* Gallery subtle accent line */
.gallery-loop__viewport {
  padding-bottom: 8rem;
}
@media (max-width: 560px) {
  .gallery-loop__viewport {
    padding-bottom: 2rem;
  }
}

/* CTA emphasis */
.cta {
  border-radius: 30rem;
  padding: 3rem;
}
@media (max-width: 560px) {
  .cta {
    padding: 1rem;
  }
}

/* Key color background accents (subtle) */
.section--tint {
  background: linear-gradient(180deg, rgba(61, 98, 173, 0.06), rgba(61, 98, 173, 0));
}

#sauna, #reserve {
  background: linear-gradient(180deg, rgba(61, 98, 173, 0.05), rgba(61, 98, 173, 0));
}

#news {
  background: linear-gradient(180deg, rgba(61, 98, 173, 0.04), rgba(61, 98, 173, 0));
}

/* Restore text color (keep key color as accent only) */
h1, h2, h3, .eyebrow {
  color: var(--text) !important;
}

h1 .accent {
  color: var(--key) !important;
}

/* keep only accent word */
/* About: single large image */
.aboutHero {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.aboutHero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Flow (steps 1-6) */
.flow {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.flow li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.flow__num {
  font-size: 1.3em;
  line-height: 1;
  padding: 0.5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--muted);
  font-weight: normal;
  letter-spacing: 0.2em;
  font-variant-numeric: tabular-nums;
}
.flow__num::before {
  content: "STEP";
  margin-right: 0.5em;
}

.flow__body b {
  display: block;
  font-weight: normal;
  margin-bottom: 4px;
  font-size: 1.2em;
  color: var(--muted);
  padding: 0.8em 0;
}

.flow__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  text-align: justify;
}

.flow__body img {
  width: 100%;
}

@media (max-width: 560px) {
  .flow li {
    grid-template-columns: 38px 1fr;
  }

  .flow__num {
    width: 38px;
    height: 38px;
  }
}
/* Amenities */
.amenities {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch;
}

.amenities__item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 14px 16px;
}

.amenities__item b {
  display: block;
  margin-bottom: 6px;
}

.amenities__item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.amenities__note {
  grid-column: 1/-1;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

@media (max-width: 980px) {
  .amenities {
    grid-template-columns: 1fr;
  }
}
/* Hotel text black */
.hotel--darktext, .hotel--darktext * {
  color: #111 !important;
}

/* About key section */
.about--key {
  color: #fff;
  padding: 60px 0;
  width: 100%;
}

.about--key .section__head h2,
.about--key .sub {
  color: #fff;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about--key {
    grid-template-columns: 1fr;
  }
}
/* Flow horizontal */
.flow--horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .flow--horizontal {
    grid-template-columns: repeat(1, 1fr);
  }
}

.flow--horizontal li {
  grid-template-columns: 1fr;
  text-align: center;
}

.flow--horizontal .flow__num {
  margin: 0 auto 10px;
}

/* Hero text adjustment */
/* About (key section) full-bleed media + white text */
.about__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

.about__media {
  width: 100%;
  height: 100%;
}

.about__media img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
  display: block;
}

.about__content {
  padding: 56px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about--key .section__head h2,
.about--key .sub,
.about--key .copy,
.about--key .note {
  color: #fff !important;
}

.about--key .note {
  opacity: 0.8;
}

@media (max-width: 980px) {
  .about__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about__media {
    height: 320px;
  }

  .about__content {
    padding: 32px 22px;
  }
}
/* News visibility */
.news__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.news__list li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.news__list time {
  color: var(--key);
  min-width: 92px;
  font-variant-numeric: tabular-nums;
}

.caption {
  font-size: 12px;
}

/*# sourceMappingURL=style.css.map */
