@charset "utf-8";

/* ===== 基本 ===== */
body{
  margin: 0;
  background: #F9F9F9;
  overflow-x: hidden; /* 右端1pxチラ見え対策 */
}

/* ===== ヒーロー（6-6方式：背景をfixed化） ===== */
.heroWrap{
  position: relative;
  z-index: -9999;
  height: 100vh;       /* 100svhでもOKだが挙動安定のためvh */
  overflow: hidden;
}

p {
  letter-spacing: 0.08em;
  font-size: 16px;
  font-weight: 500;
}


/* h2 共通：初期状態 */
.fadeUp{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

/* 表示状態 */
.fadeUp.is-visible{
  opacity: 1;
  transform: translateY(0);
}




:root{
  --header-h: 64px;
  --pad-x: 28px;
  --text: #474747;
  --muted: rgba(17,17,17,.55);
  --border: rgb(179, 179, 179);
  --bg: rgba(255, 255, 255, 0.822);
}

/* fixed用：必須 */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;      /* ← これで全幅になる */
  width: 100%;
  z-index: 1000;
  height: var(--header-h);

  background: var(--bg);           /* 白背景はここ */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1.5px solid var(--border);
}

/* 中身だけ中央寄せ＆幅制限（ここは好みで） */
.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 var(--pad-x);
  max-width: 1200px;   /* いらなければ削除で完全全幅 */
  margin: 0 auto;

  background: transparent; /* ← ここ重要：白にしない */
}

/* fixedで被る分、ページ側に余白を作る */
body{
  margin: 0;
  padding-top: var(--header-h);
}


  /* ========== Header ========== */
  .site-header{
    position: fixed; /* 常に固定したいなら fixed に変更 */
    top: 0;
    z-index: 1000;
    height: var(--header-h);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: var(--bg);
    
  }

  .header-inner{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--pad-x);

    margin: 0 auto;
  }

  header a:hover{
  color: #d4552d; /* オレンジ */
}

  /* Logo */
  .brand{
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .brand-logo{
    height: 34px; /* サイズ調整ここ */
    width: auto;
    display: block;
    opacity: .75; /* ← ここで透けさせる */
  }

  /* Nav */
  .global-nav{
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .nav-list{
    list-style: none;
    display: flex;
    gap: 26px;
    padding: 0;
    margin: 0;
  }

  .nav-list a{
    text-decoration: none;
    color: var(--text);
    font-size: 12px;
    letter-spacing: .16em;
    font-weight: 600;
    opacity: .9;
    padding: 8px 2px;
    position: relative;
  }
  .nav-list a::after{
    content:"";
    position:absolute;
    left:0; right:0; bottom:2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
    opacity: .35;
  }
  .nav-list a:hover::after{ transform: scaleX(1); }

  /* Language switch */
  .lang{
    display: flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: .10em;
    color: var(--muted);
    white-space: nowrap;
  }
  .lang a{
    color: var(--muted);
    text-decoration: none;
    padding: 6px 2px;
    font-weight: 700;
  }
  .lang a[aria-current="page"]{
    color: #DF4005;

  }
  .sep{ opacity: .9; padding: 0 6px; }

  /* ========== Mobile ========== */
  .nav-toggle{
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .nav-toggle__bar{
    display:block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 4px auto;
    opacity: .8;
  }
  .sr-only{
    position:absolute;
    width:1px;height:1px;
    padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);
    white-space:nowrap;border:0;
  }

  @media (max-width: 860px){
    .nav-toggle{ display: inline-flex; align-items:center; justify-content:center; }

    .global-nav{
      position: fixed;
      top: var(--header-h);
      right: 0;
      left: 0;
      background: rgba(255,255,255,.98);
      border-bottom: 1px solid var(--border);
      padding: 18px var(--pad-x) 22px;
      display: none; /* JSで開閉 */
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .global-nav.is-open{ display: flex; }

    .nav-list{
      flex-direction: column;
      gap: 10px;
      width: 100%;
    }

    .nav-list a{
      display: inline-block;
      padding: 10px 0;
      font-size: 13px;
    }

    .lang{
      padding-top: 10px;
      border-top: 1px solid var(--border);
      width: 100%;
    }
  }



/* 右下固定・左上だけ角丸 予約ボタン */
.reserveButton{
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 18px 32px;

  background: #DF4005;
  color: #fff;
  text-decoration: none;

  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;

  /* 形状ここが重要 */
  border-radius: 24px 0 0 0; /* 左上だけ丸 */

  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}

/* 日本語部分 */
.reserveButton span{
  font-size: 14px;
  font-weight: 500;
  opacity: .85;
}

.reserveButton:hover{
  background: #313131; /* ホバーで黒 */
  box-shadow: 0 14px 36px rgba(0,0,0,.6);
}


/* モバイル微調整 */
@media (max-width: 640px){
  .reserveButton{
    padding: 14px 20px;
    font-size: 13px;
  }
}
/* 文字だけ揺らす */
.reserveButton__text{
  display: inline-block;
  animation: none;
}

/* hover時に一度だけ発火 */
.reserveButton:hover .reserveButton__text{
  animation: textShake 420ms ease;
}

/* 揺れアニメーション */
@keyframes textShake{
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-2px); }
  40%  { transform: translateX(2px); }
  60%  { transform: translateX(-1.5px); }
  80%  { transform: translateX(1px); }
  100% { transform: translateX(0); }
}

/* 非表示状態 */
.reserveButton.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}

/* 通常状態（念のため明示） */
.reserveButton{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .3s ease, transform .3s ease;
}







  



/* ヒーロー本体（高さだけ確保） */
.hero{
  position: relative;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: transparent;
}

/* 左右背景レイヤーを fixed にして常に見せる */
.hero__half{
  position: fixed;
  top: 0;
  height: 100vh;
  width: 50vw;
  overflow: hidden;
  z-index: 0;
}

#heroLeft{ left: 0; }
#heroRight{ right: 0; }



/* 画像レイヤー（ズームや切替はここ） */
.hero__media{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 1;
  transition: opacity 800ms ease;
  will-change: transform, opacity;
}

.hero__media.is-fading{
  opacity: 0.18;
}

.hero__media.is-zooming{
  animation: heroZoom var(--cycle, 4500ms) linear forwards;
}

@keyframes heroZoom{
  0%   { transform: scale(1.03) translate3d(0,0,0); }
  100% { transform: scale(1.12) translate3d(1.5%, -1.2%, 0); }
}

/* 下中央バー（固定） */
.hero__progress{
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(360px, 70vw);
  height: 2px;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hero__progressBar{
  display: block;
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,.75);
  border-radius: 999px;
}

/* 中央テキスト（固定） */
.hero__headline{
  position: fixed;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%) scaleY(1.2);
  margin: 0;
  padding: 0 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px rgb(255, 255, 255);
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  font-family: "Gravitas One", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
  z-index: 2;
}

/* スマホ：上下2分割（固定） */
@media (max-width: 720px){
  .hero{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: auto;
  }

  .hero__half{
    width: 100vw;
    height: 50vh;
    left: 0;
    right: auto;
  }
  #heroLeft{ top: 0; }
  #heroRight{ top: 50vh; }

  .hero__progress{
    bottom: 18px;
    width: min(360px, 78vw);
  }

  .hero__headline{
    top: 50%;
    white-space: normal;
    line-height: 1.1;
  }
}

.hero__headline{
  position: fixed;
  top: 52%;
  left: 80%;
  transform: translate(-50%, -50%) scaleY(1.2);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px #fff;
  font-family: "Gravitas One", serif;
  font-size: 80px;
  z-index: 2;

  animation: headline-marquee 30s linear infinite;
}


@keyframes headline-marquee{
  0%{
    transform: translate(-50%, -50%) scaleY(1.2);
  }
  100%{
    transform: translate(-170vw, -50%) scaleY(1.2);
  }
}



@media (prefers-reduced-motion: reduce){
  .hero__media{ transition: none; animation: none !important; }
}







/* ===== スクロール追従（慣性）対象（JSが付ける想定） ===== */
.lag{
  will-change: transform;
  transform: translate3d(0,0,0);
}

/* ===== ヒーロー直下：被さる白い面 ===== */
.section--cover{
  position: relative;
  z-index: 10;      /* ヒーローより上 */
  background: #F9F9F9;
  min-height: 120vh;
}

/* ===== 次セクション：INTRO（見出し＋2枚） ===== */
.section--intro{
  background: #F9F9F9;
  padding: clamp(72px, 10vw, 120px) 0 clamp(72px, 10vw, 140px);
}

.intro{
  width: min(1120px, 88vw);
  margin-inline: auto;
  padding: 60px 0 160px;
}

.intro__title{
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #414141;
}

.intro{
  width: min(1120px, 88vw);
  margin-inline: auto;
  padding: 60px 0 160px;
}

.intro__title{
  margin: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #414141;
}

/* ここから追加 */
.intro__em{
  position: relative;
  display: inline-block;
}

/* 丸のあしらい */
.intro__em::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.82);
  width: 120%;
  aspect-ratio: 1 / 1;
  background: url("./img/maru.png") no-repeat center / contain;

  opacity: 0;
  pointer-events: none;
  z-index: -1;

  transition:
    opacity 1400ms cubic-bezier(.16, 1, .3, 1),
    transform 1600ms cubic-bezier(.16, 1, .3, 1);
  transition-delay: 1.2s; /* ← 文字が出終わってから */
}

/* 表示状態 */
.intro__em.is-visible::after{
  opacity: 0.85;
  transform: translate(-50%, -50%) scale(1) rotate(-6deg);
}



/* 文字分解後の各文字 */
.writeChar{
  display: inline-block;
  opacity: 0;
  transform: translateY(10px) rotate(-1deg);
  filter: blur(0.2px);
  will-change: transform, opacity, filter;
}

/* 発火後 */
.is-writing .writeChar{
  animation: writeIn 900ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(var(--i) * 60ms); /* 1文字ずつの間隔 */
}

@keyframes writeIn{
  0%{
    opacity: 0;
    transform: translateY(10px) rotate(-1deg);
    filter: blur(1.2px);
  }
  60%{
    opacity: 1;
    transform: translateY(-1px) rotate(0.4deg);
    filter: blur(0.2px);
  }
  100%{
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    filter: blur(0);
  }
}

/* “手書き感”のごく薄いにじみ（強すぎ注意） */
.intro__title{
  text-shadow: 0 0 0.6px rgba(0,0,0,.18);
}

/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce){
  .writeChar{
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }
}




.photoPair{
  width: 100vw;
  margin-inline: auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 7vw, 140px);
  align-items: start;
}

.photoPair__item{
  margin: 0;
  overflow: hidden;
  border-radius: 0;
}

.photoPair__item img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.photoPair__item--right{
  margin-top: clamp(28px, 6vw, 72px);
}

@media (max-width: 720px){
  .photoPair{ grid-template-columns: 1fr; }
  .photoPair__item--right{ margin-top: 18px; }
}

/* ===== CONCEPT ===== */
.section--concept{
  position: relative;
  z-index: 20;
  background: #F9F9F9;
  padding: 3rem;
}

.concept{
  width: min(1120px, 88vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);


  align-items: start;
  margin-top: -8rem;
  margin-left: 5rem;

}

.concept__text{
  color: #0b2a6f;
  font-size: 16px;
  line-height: 3;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.concept__label{
  font-size: 16px;
  letter-spacing: 0.18em;
  position: relative;

  font-weight: 700;
  margin: 0 0 56px;
}


.concept__label{
  position: relative;
  padding-left: 16px; /* ●分の余白 */
  letter-spacing: .08em;
}

.concept__label::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}




.concept__text p{
  margin: 0 0 32px;
}

.concept__image{
  margin-top: 24px;
  margin-right: 80px;
}

.concept__image img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 720px){
  .concept{
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .concept__image{ margin-top: 0; }
  .concept__text{
    font-size: 13px;
    line-height: 2.2;
  }
}




/* 画像ふわっと出現 */
.revealImage{
  opacity: 0;
  transform: translateY(18px) / scale(0.97);
  transition:
    opacity 1400ms cubic-bezier(.16, 1, .3, 1),
    transform 1400ms cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

.revealImage.is-in{
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce){
  .revealImage{
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ===== 写真2枚（右だけフルブリード） ===== */
.section--pairBleed{
  position: relative;
  z-index: 20;
  background: #fff;
  padding: clamp(64px, 10vw, 120px) 0;
}

.pairBleed{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(120px, 18vw, 320px);
  align-items: start;

  width: 100vw;
  margin-inline: auto;
}

.pairBleed figure{ margin: 0; }

.pairBleed__left img{
  width: 100%;
  height: auto;
  display: block;
  margin-top: 3rem;
}

/* 右：画面右端まで */
.pairBleed__right{
  margin-right: calc(50% - 50vw);
  padding-right: 2px; /* 右端のチラ見え防止で2pxだけ伸ばす */
}

.pairBleed__right img{
  width: calc(100% + 2px); /* 右端のチラ見え防止で2pxだけ伸ばす */
  height: auto;
  max-height: 520px;       /* ← 右だけ“少し短く”はここで調整（500〜560で微調整） */
  object-fit: cover;
  display: block;
  margin: 0;               /* 端ピタを崩す余計なmargin禁止 */
  max-width: none;
}

@media (max-width: 720px){
  .pairBleed{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pairBleed__right{
    margin-right: 0;
    padding-right: 0;
  }
  .pairBleed__right img{
    width: 100%;
    max-width: 100%;
  }
}





/* ===== ROOM section ===== */
.room {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #F9F9F9;
}

.room__inner {
  margin: 0 auto;
}

.room__head {
  text-align: center;
  margin-bottom: 56px;
}

.room__title {
  font-size: 36px;
  letter-spacing: 0.08em;
  color: #0a2a6a; /* ネイビー系 */
  margin-bottom: 24px;
}

.room__lead {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #0a2a6a;
  font-weight: 500;
}

/* ===== grid ===== */
.roomGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  
}

/* ===== card ===== */
.roomCard {
  position: relative;
  height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
  overflow: hidden; /* はみ出しを隠す */
}

/* 背景レイヤー（ここを動かす） */
.roomCard::before {
  content: "";
  position: absolute;

  /* 見切れ防止の肝：背景をカードより大きくする */
  inset: -60px; /* まずは-60pxでOK（足りなければ-80px） */

  background-position: center;
  background-size: cover;

  /* 左にゆっくり動かす */
  transform: translateX(0);
  animation: slowPanLeft 36s linear infinite alternate;

  will-change: transform;
  z-index: 0;
}

/* 暗幕（文字を読みやすく） */
.roomCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 20, 0.342);
  transition: opacity 0.3s ease;
  z-index: 1;
}

.roomCard:hover::after { opacity: 0.35; }

/* 文字（暗幕より前へ） */
.roomCard__meta,
.roomCard__label {
  position: relative; /* z-index を効かせる */
  z-index: 2;
}

.roomCard__meta {
  font-size: 15px;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.roomCard__label {
  font-size: 28px;
  letter-spacing: 0.15em;
}

/* 背景画像は ::before に設定 */
.roomCard--morning::before { background-image: url("img/morning.png"); }
.roomCard--day::before     { background-image: url("img/day.png"); }
.roomCard--night::before   { background-image: url("img/night.png"); }

/* 左にパン */
@keyframes slowPanLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-60px); } /* 動きが弱い→-60px、強い→-24px */
}

/* 動きが苦手な人への配慮 */
@media (prefers-reduced-motion: reduce) {
  .roomCard::before { animation: none; }
}

/* ===== ROOM marquee ===== */
.room-marquee {
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  background-color: #F9F9F9;
}

/* 流れる文字 */
.room-marquee__track {
  display: inline-flex;
  gap: 160px;
  white-space: nowrap;
  user-select: none;

  /* hero__headline と同じ質感 */
  font-family: "Gravitas One", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0);              /* 塗りなし */
  -webkit-text-stroke: 1px #DF4005;           /* オレンジ縁 */

  transform: scaleY(1.2);                     /* 縦伸ばし */
  opacity: 0.9;

  animation: roomMarqueeLeft 30s linear infinite;
}

/* 左に流す */
@keyframes roomMarqueeLeft {
  from {
    transform: translateX(0) scaleY(1.2);
  }
  to {
    transform: translateX(-50%) scaleY(1.2);
  }
}



.roomCard__meta{
  position: relative;
  padding-left: 16px; /* ●分の余白 */
}

.roomCard__meta::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}



/* ===== ACCESS section ===== */
.access{
  padding: 110px 0;
  background: #F9F9F9; /* 必ず背景を明示する運用 */
}

.access__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.access__grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr; /* 左を少し大きく */
  gap: 164px;
  align-items: center;
}

/* Left */
.access__map{
  margin: 0;
}

.access__map img{
  width: 100%;
  height: auto;
  display: block;
  border: 1.5px solid  rgb(179, 179, 179); 
}

/* Right */
.access__kicker{
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: #0a2a6a;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 500;
}


.access__title{
  margin: 0 0 18px;
  font-size: 34px;
  letter-spacing: 0.08em;
  color: #0a2a6a;
}

.access__text{
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 3;
  letter-spacing: 0.06em;
  color: #0a2a6a;
  font-weight: 500;
}

.access__kicker{
  display: flex;
  align-items: center;
  gap: 8px;
}

.access__dot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}


/* Button */
/* Button（白地＋黒縁） */
.access__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 14px 26px;
  background: #fff;                 /* 白 */
  border: 1.5px solid  rgb(179, 179, 179);           /* 黒縁 */
  border-radius: 999px;

  text-decoration: none;
  color: #0a2a6a;                      /* 文字も黒 */
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 600;

  transition: background 0.2s ease, transform 0.2s ease;
}

.access__button:hover{
  background: rgba(0,0,0,0.04);        /* うっすら */
  transform: translateY(-1px);
}

.access__arrow{
  font-size: 14px;
}


/* ===== Responsive ===== */
@media (max-width: 900px){
  .access{
    padding: 80px 0;
  }

  .access__grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .access__title{
    font-size: 30px;
  }

  .access__text{
    font-size: 14px;
  }
}




/* =========================
   RESERVE
========================= */
.reserve{
  background: #e9e8e6;          /* 薄いグレー背景 */
  border-top: 1.5px solid  rgb(179, 179, 179);
  border-bottom: 1.5px solid  rgb(179, 179, 179);
}

.reserve__inner{
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr; /* 左の縦ラベル幅 */
  min-height: 520px;
}

/* 左縦ラベル */
.reserve__side{
  border-right: 1.5px solid  rgb(179, 179, 179);
  display: grid;
  place-items: center;
  padding: 16px 8px;
}

.reserve__sideText{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg); /* 上から下へ読む向きに合わせる */
  letter-spacing: .18em;
  font-size: 14px;
  color: rgba(59, 59, 59, 0.65);
  font-weight: 900;
}

/* 中央 */
.reserve__content{
  display: grid;
  place-items: center;
  text-align: center;
  padding: 110px 20px 130px; 
}

.reserve__title{
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #d4552d; /* オレンジ */
  line-height: 1.05;
}

.reserve__note{
  margin: 14px 0 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #d4552d;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.reserve__caret{
  font-size: 10px;
  line-height: 1;
}

/* ボタン */
.reserve__buttons{
  margin-top: 34px;
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: center;
}

.reserve__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  width: min(320px, 78vw);
  padding: 0 28px;
  border-radius: 999px;
  border: 1.5px solid  rgb(179, 179, 179);
  background: rgba(255,255,255,.92);
  color: #d4552d;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;

  transition:
    transform 320ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 320ms cubic-bezier(.16, 1, .3, 1),
    background-color 320ms cubic-bezier(.16, 1, .3, 1);
}

.reserve__btn:hover{
  background: rgba(0,0,0,0.04);        /* うっすら */
  transform: translateY(-1px);
}

.reserve__btn:active{
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}

/* 画面が狭い時：ボタン縦並び＆余白調整 */
@media (max-width: 720px){
  .reserve__inner{
    grid-template-columns: 44px 1fr;
    min-height: 340px;
  }

  .reserve__content{
    padding: 64px 18px 72px;
  }

  .reserve__buttons{
    gap: 16px;
    margin-top: 28px;
  }

  .reserve__btn{
    height: 60px;
    width: min(360px, 82vw);
  }
}




/* =========================
   FOOTER
========================= */
.siteFooter{
  background: #565656;
  color: #fff;
}

.siteFooter__inner{
  position: relative;
  min-height: 420px;
  padding: 72px 64px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* 左情報 */
.siteFooter__info{
  max-width: 520px;
}

.siteFooter__logo{
  font-size: 32px;
  letter-spacing: .10em;
  font-weight: 500;
}

.footer-title {
  font-weight: bold;
  font-size: 16px;
}

.siteFooter__address,
.siteFooter__time,
.siteFooter__cancel{
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.8;
  opacity: .9;
}

/* 右操作 */
.siteFooter__actions{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 22px;
}

/* 注意事項ボタン */
.siteFooter__notice{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .04em;

  transition:
    transform 300ms cubic-bezier(.16,1,.3,1),
    background-color 300ms cubic-bezier(.16,1,.3,1);
}

.siteFooter__notice:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* SNS */
.siteFooter__sns{
  color: #fff;
  opacity: .85;
  transition: opacity 200ms ease;
}

.siteFooter__sns:hover{
  color: #d4552d;
}

.siteFooter__snsIcon{
  width: 40px;   /* ← 好みで 26〜30px */
  height: 40px;
}


/* TOPへ */
.siteFooter__toTop{
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  cursor: pointer;

  display: grid;
  place-items: center;

  transition:
    transform 300ms cubic-bezier(.16,1,.3,1),
    background-color 300ms cubic-bezier(.16,1,.3,1);
}

/* 縦棒 */
.siteFooter__toTop{
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  cursor: pointer;

  display: grid;
  place-items: center;

  transition:
    transform 300ms cubic-bezier(.16,1,.3,1),
    background-color 300ms cubic-bezier(.16,1,.3,1);
}

.siteFooter__toTop{
  position: relative;
}

/* シェブロン（∧） */
.siteFooter__toTop::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 14px;
  height: 14px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;

  transform: translate(-50%, -50%) rotate(45deg);
}

/* “中身だけ”を少し下げる（1〜3pxで調整） */
.siteFooter__toTop{ --chevY: 2px; }

.siteFooter__toTop::before{
  top: calc(50% + var(--chevY));
}

/* hover */
.siteFooter__toTop:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}


/*/*/*/*/*/*/*/*/*/*/* MORNING */*/*/*/*/*/*/*/*/*/*/*/*/


/* =========================
   MORNING（FIX版）
========================= */
.morning{
  padding: 110px 0px;
  background: #F9F9F9;
}

.morning__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
  padding-left: 24px;
}

.morning__grid{
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 120px;
  align-items: start;
}

/* ---------- Left ---------- */


.morning__kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: .08em;
  font-weight: 500;
}

.morning__dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}

.morning__title{
  margin: 0 0 64px;
  font-size: 62px;      /* ← 縮小 */
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

/* テキスト */
.morning__text{
  margin: 0;
  font-size: 16px;
  line-height: 2.8;
  letter-spacing: .06em;
  font-weight: 500;
}

/* ---------- Illustration ---------- */
.morning__illust.mg{
  position: absolute;
  top: -80px;            /* ← 上に */
  left: 380px;
  width: 200px;     /* ← 少し小さく */
}

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

/* ---------- Illustration ---------- */

.morning__illust.mg{
  position: absolute;
  top: -80px;
  left: 360px;
  width: 180px;

  transform-origin: 50% 70%;
  animation: illustStepRotate 23s steps(1, end) infinite;
  will-change: transform;
}

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

/* ピキッと角度が変わる */
@keyframes illustStepRotate{
  0%   { transform: rotate(-1deg); }
  20%  { transform: rotate( 0.6deg); }
  40%  { transform: rotate(-0.4deg); }
  60%  { transform: rotate( 0.8deg); }
  80%  { transform: rotate(-0.6deg); }
  100% { transform: rotate(-1deg); }
}




/* ---------- Image ---------- */
.morning__image{
  margin: 0;
  overflow: hidden;
}

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

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

  .morning__title{
    font-size: 48px;
  }

  .morning__illust.mg{
    position: static;
    width: min(200px, 55vw);
    margin-top: 16px;
  }
}


/* MORNING：右画像フルブリード、左だけ余白 */

.morning__inner{

  margin: 0 auto;
  padding-top: 80px;   /* 上だけ */
}

/* 右は端まで行かせるため、grid で外にはみ出させる */
.morning__grid{
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 120px;
  align-items: start;

  /* 右を「画面端まで」広げる */
  margin-right: calc(50% - 50vw);
}

/* 左テキストだけに左右余白を付ける */
.morning__content{
  color: #6496b3;
  position: relative;
  margin-top: 46px;
}

/* 右画像は余白ゼロでOK */
.morning__image{
  margin: 0;
}

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

.lightblue {
    color: rgba(255, 255, 255, 0);              /* 塗りなし */
  -webkit-text-stroke: 1px #6496b3; 
  margin-top: 80px;       /* オレンジ縁 */
} 

.roompage {
  padding-top: 80px;
} 





/* =========================
   LIVING & KITCHEN
========================= */
.lk{
  padding: 110px 0;
  --accent: #e24a00;
}

.lk__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 上段 */
.lk__top{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
  align-items: start;
}

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

.lk__kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 600;
  color: var(--accent);
}

.lk__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.lk__detailText {
    color: var(--text);
    margin-bottom: 24px;
}

.lk__title{
  margin: 0 0 18px;
  font-size: 40px;
  letter-spacing: .08em;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text);
}




.lk__heroImage{
  margin: 0;
  overflow: hidden;
}

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

/* 下段 */
.lk__bottom{
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.lk__subImage{
  margin: 0;
  overflow: hidden;
}

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

.lk__detail{
  display: grid;
  justify-items: center;
  gap: 26px;
}



/* ボタン：白＋黒縁（指定どおり） */
.lk__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 16px 34px;
  border-radius: 999px;
  border: 1.5px solid  rgb(179, 179, 179);  
  background: #fff;
  color: var(--accent);
  text-decoration: none;

  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 700;
}

.lk__buttonPlus{
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
}

.lk__button:hover{
  opacity: .85;
}

/* Responsive */
@media (max-width: 980px){
  .lk{
    padding: 80px 0;
  }

  .lk__top,
  .lk__bottom{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lk__bottom{
    margin-top: 54px;
  }

  .lk__title{
    font-size: 28px;
  }

  .lk__detail{
    justify-items: start;
    text-align: left;
  }
}






/* ===== Modal ===== */
.modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.modal.is-open{
  display: block;
}

.modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.modal__panel{
  position: relative;
  width: min(980px, calc(100vw - 64px));
  max-height: min(680px, calc(100vh - 80px));
  overflow: auto;

  background: #fff;
  border-radius: 22px;
  border: 1.5px solid rgba(0,0,0,.25);

  margin: 40px auto;
  padding: 28px 34px 34px;
  outline: none;
}

.modal__close{
  position: absolute;
  right: 18px;
  top: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 44px;
  cursor: pointer;
  color: #e24a00;
}

.modal__topTitle{
  margin: 4px 0 14px;
  text-align: center;
  font-size: 20px;
  letter-spacing: .08em;
  font-weight: 700;
  color: #e24a00;
}

.modal__divider{
  height: 1px;
  background: rgba(226,74,0,.35);
  margin: 0 0 22px;
}

.modal__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 10px 10px 20px;
}

.modal__heading{
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: .08em;
  font-weight: 900;
  color: #e24a00;
}

.modal__sub{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .06em;
  color: #666;
}

.modal__list{
  margin: 0;
  padding-left: 18px;
  color: #333;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .04em;
}

@media (max-width: 860px){
  .modal__panel{
    width: calc(100vw - 24px);
    margin: 12px auto;
    padding: 22px 18px 22px;
  }
  .modal__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
}





/* =========================
   BED ROOM
========================= */
.bed{
  background: #fff;
  padding: 110px 0;
  --accent: #6496b3; /* 青（kicker用） */
  --title: #2b2b2b;
  --text: #444;
}

.bed__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* kicker */
.bed__kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent);
  letter-spacing: .08em;
  font-weight: 600;
  font-size: 13px;
}

.beds{
  font-size: 14px;
  color: #8b8b8b;
}

.bed__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* title */
.bed__title{
  margin: 0 0 14px;

    font-size: 40px;
  letter-spacing: .08em;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text);
}

/* copy */
.bed__copy{

  margin: 0 0 34px;
}

.bed__text{
  margin: 0 0 12px;
  line-height: 2.6;
  letter-spacing: .06em;
  color: var(--text);
}

.bed__text:last-child{
  margin-bottom: 0;
}

/* gallery */
.bed__gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.bed__photo{
  margin: 0;
  overflow: hidden;
  background: #f3f3f3;
}

.bed__photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4; /* スクショっぽい横長比率 */
}

/* responsive */
@media (max-width: 980px){
  .bed{
    padding: 80px 0;
  }

  .bed__gallery{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bed__title{
    font-size: 28px;
  }
}







/* =========================
   OTHERS
========================= */
.others{

  padding: 110px 0;
  --accent: #e24a00;
    color: var(--text);
}

.others__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* kicker */
.others__kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 500;
}

.others__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.others__title{
  margin: 0 0 28px;
      font-size: 40px;
  letter-spacing: .08em;
  line-height: 1.35;
  font-weight: 800;
  color: var(--text);
}

/* cards */
.others__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.others__card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
}

.others__thumb{
  margin: 0;
  overflow: hidden;
}

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

.others__meta{
  padding: 18px 18px 16px;
}

.others__name{
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: .06em;
  font-weight: 800;
}

.others__jp{
  margin: 0;
  font-size: 11px;
  letter-spacing: .06em;
  color: #777;
}

/* CTA button */
.others__cta{
  display: grid;
  place-items: center;
  margin-top: 36px;
}

.others__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,.25);
  background: #fff;
  color: var(--accent);
  text-decoration: none;

  font-size: 14px;
  letter-spacing: .08em;
  font-weight: 700;
}

.others__button:hover{
  opacity: .85;
}

.others__plus{
  font-weight: 800;
  line-height: 1;
}

/* Responsive */
@media (max-width: 900px){
  .others{
    padding: 80px 0;
  }

  .others__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .others__title{
    font-size: 28px;
  }
}



/* OTHERS image swap */
.others__thumb{
  position: relative;
}

.others__thumb img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.others__thumb img.is-active{
  opacity: 1;
  position: relative;
}


/* =========================
   BED ROOM image pan
========================= */

.bed__photo{
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;   /* 縦長 */
  background: #fff;
}

/* 背景レイヤー */
.bed__photo::before{
  content: "";
  position: absolute;

  /* 見切れ防止：枠より大きく */
  inset: -120px;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  transform: translateX(0);
  animation: bedPan 36s linear infinite alternate;

  will-change: transform;
  z-index: 0;
}

/* 画像指定 */
.bed__photo--1::before{
  background-image: url("img/bed1.png");
}

.bed__photo--2::before{
  background-image: url("img/bed2.png");
}

.bed__photo--3::before{
  background-image: url("img/bed3.png");
}

/* パンアニメーション */
@keyframes bedPan{
  from{
    transform: translateX(-40px);
  }
  to{
    transform: translateX(40px);
  }
}





/* =========================
   FACILITIES
========================= */
.facilities{

  padding: 110px 0;
  --accent: #0a2a6a; /* ドット/小見出し */
  --title: #2b2b2b;
  --text: #444;
}

.facilities__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* kicker */
.facilities__kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 500;
}

.facilities__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* title */
.facilities__title{
  margin: 0 0 14px;
  font-size: 34px;
  letter-spacing: .10em;
  font-weight: 800;
  color: var(--text);
}

/* copy */
.facilities__copy{
  max-width: 760px;
  margin: 0 0 34px;
}

.facilities__text{
  margin: 0 0 14px;
  line-height: 2.6;
  color: var(--text);
}

.facilities__text:last-child{
  margin-bottom: 0;
}

/* grid */
.facilities__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  align-items: start;
}

.facilities__card{
  background: #fff;
}

.facilities__photo{
  overflow: hidden;

}

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

/* captions */
.facilities__name{
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: .06em;
  font-weight: 800;
  color: var(--text);
}


.fc {
  padding: 18px 18px 16px;
}

.facilities__jp{
  margin: 0;
  font-size: 11px;
  letter-spacing: .06em;
  color: #777;
}

/* responsive */
@media (max-width: 980px){
  .facilities{
    padding: 80px 0;
  }

  .facilities__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .facilities__title{
    font-size: 28px;
  }
}

.facilities__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
}


