/* ============================================================
   THE LIVELY YAMAGUCHI — Main Stylesheet
   カラーパレット:
   --ivory:       #F5F0E8
   --charcoal:    #2C2A27
   --warm-gray:   #8A8580
   --moss-green:  #4A5240
   --terracotta:  #A85C4A
   --deep:        #1A1815
   --border:      #D4CFC6
   --mid-warm:    #3A3530
============================================================ */

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ivory:       #F5F0E8;
  --charcoal:    #2C2A27;
  --warm-gray:   #8A8580;
  --moss-green:  #4A5240;
  --terracotta:  #A85C4A;
  --deep:        #1A1815;
  --border:      #D4CFC6;
  --mid-warm:    #3A3530;
  --light-bg:    #EFEADF;

  --font-en-display: 'Cormorant Garamond', Georgia, serif;
  --font-en-body:    'Inter', sans-serif;
  --font-ja-serif:   'Noto Serif JP', 'Yu Mincho', serif;
  --font-ja-sans:    'Noto Sans JP', 'Hiragino Sans', sans-serif;

  --nav-height: 64px;
  --transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-ja-sans);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ========== TYPOGRAPHY UTILITIES ========== */
.section-label {
  font-family: var(--font-en-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.section-label--light {
  color: #C8A090;
}

.section-title {
  font-family: var(--font-ja-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}

.section-title--light {
  color: var(--ivory);
}

.section-title--display {
  font-family: var(--font-ja-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ivory);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.pc-only {
  display: inline;
}
.sp-only {
  display: none;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal-up,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }


/* ========== NAVIGATION ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.site-nav.is-scrolled {
  background-color: rgba(26, 24, 21, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-img {
  display: block;
  height: 18px;
  width: auto;
  /* PNG白抜きなのでそのまま使用 */
}

.nav-logo-sub {
  font-family: var(--font-en-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: rgba(245, 240, 232, 0.55);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-en-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--ivory);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}


/* ========== HERO ========== */
.section-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg-image.is-loaded {
  transform: scale(1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 24, 21, 0.05) 0%,
    rgba(26, 24, 21, 0.0) 30%,
    rgba(26, 24, 21, 0.3) 65%,
    rgba(26, 24, 21, 0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 72px;
  display: flex;
  flex-direction: column;
}

.hero-top-label {
  align-self: flex-start;
  margin-bottom: 24px;
}

.label-text {
  font-family: var(--font-en-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  border-bottom: 1px solid rgba(245, 240, 232, 0.25);
  padding-bottom: 8px;
}

.hero-main-copy {
  margin-bottom: 48px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 24px;
  gap: 4px;
}

.hero-logo-img {
  display: block;
  height: clamp(14px, 1.6vw, 22px);
  width: auto;
  max-width: none;
}

.hero-title-location {
  font-family: var(--font-en-display);
  font-size: clamp(36px, 5.5vw, 74px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ivory);
  line-height: 0.9;
}

.hero-tagline {
  font-family: var(--font-ja-serif);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 400;
  color: rgba(245, 240, 232, 0.85);
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(
    to bottom,
    var(--ivory),
    transparent
  );
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-text {
  font-family: var(--font-en-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(245, 240, 232, 0.45);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}


/* ========== NOTICE BAR ========== */
.notice-bar {
  background-color: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 48px;
  margin-top: 0;
  text-align: center;
}

.notice-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.notice-bar-texts {
  flex: 1;
}

.notice-bar-text {
  font-family: var(--font-ja-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  line-height: 1.6;
}

.notice-bar-text + .notice-bar-text {
  margin-top: 6px;
}

.notice-bar-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ja-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 10px 20px;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.notice-bar-btn:hover {
  background-color: var(--charcoal);
  color: var(--ivory);
}

@media (max-width: 768px) {
  .notice-bar {
    padding: 16px 24px;
    margin-top: 0;
  }
  .notice-bar-text {
    font-size: 12px;
  }
}


/* ========== CONCEPT ========== */
.section-concept {
  background-color: var(--ivory);
}

/* PC: 画像 */
.concept-image-figure {
  display: block;
  margin: 0;
  overflow: hidden;
  line-height: 0;
}

.concept-bg-image {
  display: block;
  width: 100%;
  height: auto;
}

/* PC: アスペクト比固定 */
.concept-image-figure .concept-bg-image {
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center center;
}

/* PC: テキスト2カラム */
.concept-text-content {
  background-color: var(--ivory);
  padding: 80px 0;
}

.concept-text-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-text-left .section-label--dark {
  color: var(--terracotta);
}

.concept-heading-pc {
  font-family: var(--font-ja-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 0;
}

.concept-body {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: #4A4845;
}

.concept-body p + p {
  margin-top: 20px;
}

/* スマホ用は非表示（PC） */
.concept-sp-only,
.concept-body-sp {
  display: none;
}

/* スマホ用: overlay付き見出し・本文（後述のmediaで表示） */
.concept-image-wrap {
  position: relative;
  width: 100%;
}

.concept-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 24, 21, 0.0) 20%,
    rgba(26, 24, 21, 0.78) 100%
  );
}

.concept-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0;
}

.concept-text-col {
  padding: 16px 24px 28px;
}

.concept-heading {
  font-family: var(--font-ja-serif);
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

@media (min-width: 769px) {
  .concept-body-sp {
    display: none;
  }
}


/* ========== YAMAGUCHI ========== */
.section-yamaguchi {
  background-color: var(--charcoal);
}

/* PC/SP 切り替え */
.yamaguchi-pc-only { display: block; }
.yamaguchi-sp-only { display: none; }

/* PC: オーバーレイ */
.yamaguchi-overlay-wrap {
  position: relative;
  overflow: hidden;
}

.yamaguchi-bg-figure {
  margin: 0;
  line-height: 0;
}

.yamaguchi-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

.yamaguchi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 28, 26, 0.75) 0%,
    rgba(30, 28, 26, 0.45) 60%,
    rgba(30, 28, 26, 0.15) 100%
  );
}

.yamaguchi-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.yamaguchi-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.yamaguchi-header {
  margin-bottom: 48px;
}

.yamaguchi-body {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: rgba(245, 240, 232, 0.75);
  max-width: 560px;
}

.yamaguchi-body p + p {
  margin-top: 12px;
}

.yamaguchi-emphasis {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.75);
  line-height: 2.1;
  padding-top: 12px;
}

/* SP: 画像＋テキスト縦並び */
.yamaguchi-photo {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.yamaguchi-photo--main .yamaguchi-photo-img {
  width: 100%;
  height: auto;
  display: block;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: rgba(255,255,255,0.04);
  border: 1px dashed rgba(245, 240, 232, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-inner {
  text-align: center;
}

.placeholder-label {
  display: block;
  font-family: var(--font-en-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(245, 240, 232, 0.3);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.placeholder-note {
  display: block;
  font-family: var(--font-ja-sans);
  font-size: 12px;
  color: rgba(245, 240, 232, 0.2);
  line-height: 1.6;
}


/* ========== PUBLIC SPACE ========== */
.section-public-space {
  background-color: var(--ivory);
}

.public-space-image-wrap {
  display: block;
  margin: 0;
  overflow: hidden;
  line-height: 0;
}

.public-space-bg {
  display: block;
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center center;
}

.public-space-content {
  background-color: var(--ivory);
  padding: 80px 0;
}

.public-space-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.public-space-text .section-title {
  color: var(--charcoal);
  margin-bottom: 0;
}

.public-space-body {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: #4A4845;
}

.public-space-body p + p {
  margin-top: 20px;
}

.public-space-subtitle {
  font-family: var(--font-ja-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin-bottom: 0;
}


/* ========== EAT & DRINK ========== */
.section-eat-drink {
  background-color: var(--ivory);
  padding: 120px 0;
}

.eat-drink-header {
  max-width: 1400px;
  margin: 0 auto 64px;
  padding: 0 48px;
}

.eat-drink-header .section-title {
  color: var(--charcoal);
}

.eat-drink-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}

.eat-drink-card {
  overflow: hidden;
}

.eat-drink-image-wrap {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.eat-drink-card-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.eat-drink-card--restaurant .eat-drink-card-image {
  aspect-ratio: 16/10;
}

.eat-drink-card--bar .eat-drink-card-image {
  aspect-ratio: 4/3;
}

.eat-drink-card:hover .eat-drink-card-image {
  transform: scale(1.03);
}

.eat-drink-card-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-en-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background-color: rgba(26, 24, 21, 0.6);
  padding: 6px 12px;
}

.eat-drink-card-body {
  padding: 28px 0 0;
}

.eat-drink-card-title {
  font-family: var(--font-ja-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.eat-drink-card-desc {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: #4A4845;
}


/* ========== GATHER ========== */
.section-gather {
  background-color: var(--mid-warm);
  padding: 120px 0;
}

.gather-header {
  max-width: 1400px;
  margin: 0 auto 64px;
  padding: 0 48px;
}

.gather-header .section-title {
  color: var(--ivory);
}

.gather-header .section-label {
  color: #C8A090;
}

.gather-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}

.gather-card {
  overflow: hidden;
}

.gather-image-wrap {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.gather-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gather-card--banquet .gather-image {
  aspect-ratio: 16/10;
}

.gather-card--conference .gather-image {
  aspect-ratio: 4/3;
}

.gather-card:hover .gather-image {
  transform: scale(1.03);
}

.gather-card-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-en-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background-color: rgba(26, 24, 21, 0.6);
  padding: 6px 12px;
}

.gather-card-body {
  padding: 28px 0 0;
}

.gather-card-title {
  font-family: var(--font-ja-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.gather-card-desc {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: rgba(245, 240, 232, 0.65);
}

.gather-body {
  max-width: 1400px;
  margin: 64px auto 0;
  padding: 0 48px;
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: rgba(245, 240, 232, 0.6);
}

.gather-contact {
  max-width: 1400px;
  margin: 48px auto 0;
  padding: 48px 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.gather-contact-text {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: rgba(245, 240, 232, 0.6);
}

.gather-contact-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ja-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  white-space: nowrap;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.gather-contact-btn:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}


/* ========== STAY ========== */
.section-stay {
  background-color: var(--deep);
  padding: 120px 0;
}

.stay-header {
  max-width: 1400px;
  margin: 0 auto 64px;
  padding: 0 48px;
}

.stay-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.stay-room {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.stay-image-wrap {
  overflow: hidden;
  margin: 0;
}

.stay-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.stay-image-wrap:hover .stay-image {
  transform: scale(1.02);
}

.stay-room-body {
  padding-left: 20px;
}

.stay-room-label {
  font-family: var(--font-en-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.stay-room-text {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: rgba(245, 240, 232, 0.7);
}

.stay-amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.stay-amenity-card {
  background-color: rgba(255,255,255,0.03);
  overflow: hidden;
}

.amenity-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: rgba(255,255,255,0.04);
  border: 1px dashed rgba(245, 240, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-image-wrap {
  position: relative;
  overflow: hidden;
}

.amenity-image {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.7);
}

.amenity-image--grayscale {
  filter: grayscale(100%) brightness(0.7);
}

.amenity-coming-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en-display);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.75);
  pointer-events: none;
}

.amenity-body {
  padding: 24px 24px 28px;
}

.amenity-title {
  font-family: var(--font-en-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 8px;
}

.amenity-desc {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
}

.stay-body {
  max-width: 1400px;
  margin: 64px auto 0;
  padding: 0 48px;
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: rgba(245, 240, 232, 0.65);
}


/* ========== INFORMATION ========== */
.section-information {
  background-color: var(--charcoal);
  padding: 120px 0 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.information-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.information-header {
  margin-bottom: 32px;
  border-bottom: none;
  padding-bottom: 0;
}

.information-header .section-title--light {
  font-family: var(--font-en-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: 0.06em;
  font-style: italic;
  margin-bottom: 16px;
}

.information-opening {
  font-family: var(--font-en-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.information-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.information-block-title {
  font-family: var(--font-en-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.information-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 24px;
}

.information-list dt {
  font-family: var(--font-ja-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.4);
  white-space: nowrap;
  padding-top: 2px;
}

.information-list dd {
  font-family: var(--font-ja-sans);
  font-size: 13px;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.7;
}

.information-map-link {
  color: rgba(245, 240, 232, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.information-map-link:hover {
  color: rgba(245, 240, 232, 1);
}

.information-contact-note {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 16px;
}

.information-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-family: var(--font-ja-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.information-contact-btn:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.information-brand {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.information-brand-text {
  font-family: var(--font-en-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.3);
  line-height: 1.8;
}

.information-recruit {
  margin-bottom: 64px;
}

.information-recruit-inner {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.information-recruit-label {
  font-family: var(--font-en-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.information-recruit-heading {
  font-family: var(--font-ja-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.information-recruit-desc {
  font-family: var(--font-ja-sans);
  font-size: 14px;
  line-height: 2.1;
  color: rgba(245, 240, 232, 0.6);
}

.information-recruit-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ja-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 16px 32px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.information-recruit-btn:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.information-recruit-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.information-recruit-btn:hover .information-recruit-arrow {
  transform: translateX(4px);
}

.information-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
}

.information-copyright {
  font-family: var(--font-en-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.25);
}


/* ========== PARALLAX ========== */
[data-parallax] {
  will-change: transform;
}


/* ========== RESPONSIVE — TABLET ========== */
@media (max-width: 1024px) {
  :root {
    --nav-height: 60px;
  }

  .nav-inner {
    padding: 0 28px;
  }

  .nav-menu {
    gap: 20px;
  }

  .concept-layout {
    gap: 48px;
    padding: 0 28px;
  }

  .concept-text-col {
    padding-right: 0;
  }

  .yamaguchi-inner,
  .eat-drink-header,
  .eat-drink-grid,
  .eat-drink-body,
  .gather-header,
  .gather-grid,
  .gather-body,
  .stay-header,
  .stay-main,
  .stay-body,
  .information-inner {
    padding: 0 28px;
  }

  .public-space-content {
    padding: 100px 28px 80px;
    gap: 48px;
  }

  .information-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .information-grid > .information-block:last-child {
    grid-column: 1 / -1;
  }
}


/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  /* Nav */
  .nav-inner {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
    z-index: 10;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 24, 21, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 5;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 12px;
    letter-spacing: 0.28em;
    color: rgba(245, 240, 232, 0.8);
  }

  /* Hero */
  .hero-content {
    padding: 0 24px 56px;
  }

  .hero-logo-img {
    height: clamp(12px, 3.5vw, 18px);
    max-width: 120px;
  }

  .hero-title-location {
    font-size: clamp(30px, 9vw, 56px);
  }

  .hero-tagline {
    font-size: 15px;
  }

  /* Concept — スマホはPC用要素を非表示、SP用を表示 */
  .concept-image-figure,
  .concept-text-content {
    display: none;
  }

  .concept-sp-only {
    display: block;
  }

  .concept-bg-image--sp {
    aspect-ratio: unset !important;
    object-fit: unset !important;
    height: auto !important;
    display: block;
    width: 100%;
  }

  /* ラベルも白に */
  .concept-text-col .section-label--light {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
  }

  /* スマホ用本文: 画像の外・下にアイボリー背景で表示 */
  .concept-body-sp {
    display: block;
    background-color: var(--ivory);
    padding: 32px 24px 48px;
    font-family: var(--font-ja-sans);
    font-size: 13px;
    line-height: 2.0;
    color: #4A4845;
  }

  .concept-body-sp p + p {
    margin-top: 20px;
  }

  /* Yamaguchi */
  .yamaguchi-pc-only { display: none; }
  .yamaguchi-sp-only { display: block; }

  .yamaguchi-inner {
    padding: 40px 24px 64px;
  }

  .yamaguchi-header {
    margin-bottom: 32px;
  }

  /* Public Space */
  .public-space-bg {
    aspect-ratio: 3/2;
    object-position: center center;
  }

  .public-space-content {
    padding: 56px 0;
  }

  .public-space-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }

  /* EAT & DRINK */
  .section-eat-drink {
    padding: 80px 0;
  }

  .eat-drink-header {
    padding: 0 24px;
    margin-bottom: 40px;
  }

  .eat-drink-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 8px;
  }

  .eat-drink-card--bar .eat-drink-card-image {
    aspect-ratio: 16/10;
  }

  /* Gather */
  .section-gather {
    padding: 80px 0;
  }

  .gather-header {
    padding: 0 24px;
    margin-bottom: 40px;
  }

  .gather-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 8px;
  }

  .gather-body {
    padding: 0 24px;
    margin-top: 48px;
  }

  .gather-contact {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px 0;
    gap: 20px;
  }

  .gather-contact-btn {
    width: 100%;
    justify-content: center;
  }

  .notice-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .notice-bar-btn {
    width: 100%;
    justify-content: center;
  }

  /* Stay */
  .section-stay {
    padding: 80px 0;
  }

  .stay-header {
    padding: 0 24px;
    margin-bottom: 40px;
  }

  .stay-main {
    padding: 0 8px;
  }

  .stay-room {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .stay-room-body {
    padding-left: 0;
  }

  .stay-amenities {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .stay-body {
    padding: 0 24px;
    margin-top: 48px;
  }

  /* Information */
  .section-information {
    padding: 80px 0 48px;
  }

  .information-inner {
    padding: 0 24px;
  }

  .information-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .information-recruit-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 28px;
    gap: 28px;
  }

  .information-recruit-btn {
    width: 100%;
    justify-content: center;
  }

  .information-grid > .information-block:last-child {
    grid-column: auto;
  }

  .information-header {
    margin-bottom: 56px;
    padding-bottom: 40px;
  }

  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .section-title--display {
    font-size: clamp(26px, 7vw, 40px);
  }
}


/* ========== 一時非表示（お問い合わせフォーム準備中） ==========
   公開時に削除またはコメントアウト解除してください
============================================================ */
.gather-contact {
  display: none !important;
}


/* ========== GATHER: SECTION-TITLE COLOR & SIZE OVERRIDE ========== */
.section-gather .section-title {
  color: var(--ivory);
  font-size: clamp(20px, 2.6vw, 36px);
  max-width: 640px;
}


/* ========== STAY: HEADING SIZE ========== */
.section-stay .stay-header .section-title--light {
  font-size: clamp(22px, 2.8vw, 38px);
  max-width: 600px;
}

/* ========== STAY: AMENITY CARD HOVER ========== */
.stay-amenity-card {
  transition: background-color var(--transition-base);
}
.stay-amenity-card:hover {
  background-color: rgba(255,255,255,0.06);
}

/* ========== INFORMATION: HOVER LINK ========== */
.information-list dd a {
  color: rgba(245, 240, 232, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.information-list dd a:hover {
  color: var(--ivory);
}

/* ========== UTILITY: VISUALLY HIDDEN ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}


/* ========== SMOOTH PARALLAX TWEAKS ========== */
@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-line {
    animation: none;
  }

  .hero-bg-image {
    transform: none;
    transition: none;
  }
}
