/* ページ内リンクをなめらかにスクロール */
html {
  scroll-behavior: smooth;
}

.l-contents__inner {
  padding-top: 0 !important;
  padding-bottom: 0!important;
}

.l-contents {
  margin-bottom: -1px;
}

.c-entry__title {
  /* display: none; */
}

.c-entry__header {
  display: none;
}

/* 画像へホバーした時｜拡大と明るさ */
.u-link__image {
  overflow: hidden;
}

.u-link__image img {
  display: block;
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
  transform: scale(1);
  filter: grayscale(100%) brightness(0.7);
  will-change: transform, filter;
}

.u-link__image:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1);
}

/* ホバーした時にキャプションが浮き出る */
/* 画像全体 */
.u-text__image {
  position: relative;
  overflow: hidden;
}

/* 画像 */
.u-text__image img {
  display: block;
  transition:
    filter 0.8s ease,
    transform 0.8s ease;
  filter: grayscale(100%) brightness(0.7);
  transform: scale(1);
  will-change: filter, transform;
}

/* キャプション */
.u-text__image figcaption,
.u-text__image .wp-element-caption {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* ホバー時 */
.u-text__image:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.03);
}

.u-text__image:hover figcaption,
.u-text__image:hover .wp-element-caption {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
  右下追尾LINE CTA
   ========================= */

.line-contact--floating {
  position: fixed;
  right: 24px;
  bottom: 68px;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;

  transition:
    opacity 0.5s ease,
    visibility 0.5s ease,
    transform 0.5s ease;
}

.line-contact--floating.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.line-contact--floating .line-contact__btn-original {
  display: inline-block;
  min-width: 260px;
  padding: 14px 20px;

  color: #f7f1e8;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-size: 14px;
  font-weight: 500;

  background: linear-gradient(
    to bottom,
    rgba(20, 16, 12, 0.92) 0%,
    rgba(12, 10, 8, 0.96) 100%
  );
  border: 1px solid rgba(214, 186, 120, 0.42);
  border-radius: 2px;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 244, 214, 0.10);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.line-contact--floating .line-contact__btn-original:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 204, 140, 0.62);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 244, 214, 0.14);
}

@media (max-width: 767px) {
  .line-contact--floating {
    right: 12px;
    left: 12px;
    bottom: 72px;
  }

  .line-contact--floating .line-contact__btn-original {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.5;
  }
}

/* =========================
  投稿サムネ
  通常時は暗め / hoverで拡大＋明るく
   ========================= */

/* 画像の見切れ防止 */
.c-entry-summary__figure {
  overflow: hidden;
}

/* サムネ画像 */
.c-entry-summary__figure img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  filter: brightness(0.58);
  transition:
    transform 0.9s ease,
    filter 0.6s ease;
  will-change: transform, filter;
}

/* カード全体にhoverしたら画像を反応させる */
.c-entry-summary:hover .c-entry-summary__figure img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* =========================
  ヘッダー背景そのものを
  上濃いめ → 下透明にする
   ========================= */
.l-header__content {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.56) 0%,
    rgba(0, 0, 0, 0.34) 28%,
    rgba(0, 0, 0, 0.14) 58%,
    rgba(0, 0, 0, 0.04) 82%,
    rgba(0, 0, 0, 0) 100%
  ) ;
}

/* サイトロゴ */
.c-site-branding__title a {
  color: #faf8f3;
  background: linear-gradient(
    to top,
    #d8c08b 0%,
    #ead8ad 34%,
    #f7f1df 68%,
    #fffdf8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    0 0 3px rgba(255, 244, 214, 0.32),
    0 0 8px rgba(255, 224, 160, 0.24),
    0 0 14px rgba(255, 210, 120, 0.18),
    0 0 24px rgba(255, 196, 98, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
}

/* =========================
  FV 全体
========================= */
.fv {
  position: relative;
  overflow: hidden;
}

/* Snow MonkeyのFV内コンテンツ位置調整 */
.fv .smb-section__contents-wrapper {
  position: relative;
  z-index: 2;
}

/* 画像の上にタイトルやボタンを重ねる基準 */
.fv .smb-section__body {
  position: relative;
  min-height: 75vh;
}

/* =========================
  FVタイトル
========================= */
.fv .fv__title {
  position: absolute;
  left: 6%;
  top: 30%;
  z-index: 3;
  margin: 0;

  max-width: 20em;
  color: #F7F1E8;
  font-family: "BIZ UDPMincho", serif;
  font-size: clamp(20px, 2vw, 44px);
  line-height: 1.5;
  letter-spacing: 0.06em;

  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.28);

  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  animation: fvFadeUp 1.6s ease-out forwards;
  animation-delay: 0.35s;
  will-change: transform, opacity, filter;
}

/* =========================
  FVボタン
========================= */
.fv .fv__btn {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;

  width: max-content;
  max-width: calc(100% - 32px);

  opacity: 0;
  animation: fvBtnFade 1.2s ease-out forwards;
  animation-delay: 1.05s;
}

/* buttonsブロックの横幅暴れ防止 */
.fv .fv__btn.wp-block-snow-monkey-blocks-buttons {
  display: flex;
  justify-content: center;
}

/* ボタン本体 */
.fv .fv__btn .smb-btn {
  min-width: 280px;
  justify-content: center;
}

/* 実際のボタン見た目 */
.fv .fv__btn .smb-btn__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  border-radius: 999px;
  background: #C8A96B;
  color: #1A1714;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.fv .fv__btn .smb-btn__inner:hover {
  background: #D6B87E;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

/* =========================
  アニメーション
========================= */
@keyframes fvFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }

  60% {
    opacity: 1;
    transform: translateY(-2px);
    filter: blur(1px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fvBtnFade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* =========================
  タブレット
========================= */
@media (max-width: 1024px) {
  .fv .fv__title {
    left: 6%;
    top: 10%;
    font-size: clamp(24px, 4.2vw, 40px);
    max-width: 15em;
  }

  .fv .fv__btn {
    bottom: 6%;
  }
}

/* =========================
  スマホ
========================= */
@media (max-width: 767px) {
  .fv .smb-section__body {
    min-height: 68vh;
  }

  .fv .fv__title {
    left: 5%;
    right: 5%;
    top: 5%;
    max-width: none;

    font-size: clamp(16px, 5.2vw, 24px);
    line-height: 1.45;
    letter-spacing: 0.04em;

    transform: translateY(14px);
    filter: blur(3px);
  }

  .fv .fv__btn {
    left: 50%;
    bottom: 5%;
    width: calc(100% - 24px);
    max-width: 360px;
  }

  .fv .fv__btn .smb-btn {
    width: 100%;
    min-width: 0;
  }

  .fv .fv__btn .smb-btn__inner {
    width: 100%;
    padding: 13px 18px;
    font-size: 13px;
  }
}

.fv .fv__title.fv__title--tate {
  position: absolute;
  top: 10%;
  left: 45%;
  z-index: 3;
  margin: 0;

  color: #F7F1E8;
  font-family: "BIZ UDPMincho", serif;
  font-size: clamp(20px, 2vw, 38px);
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);

  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;

  opacity: 0;
  transform: translate(-50%, 18px);
  filter: blur(4px);
  animation: fvFadeUp 1.6s ease-out forwards;
  animation-delay: 0.35s;
  will-change: transform, opacity, filter;
}

@media (max-width: 1024px) {
  .fv .fv__title.fv__title--tate {
    right: auto;
    left: 6%;
    top: 10%;
  }
}

@media (max-width: 767px) {
  .fv .fv__title.fv__title--tate {
    right: auto;
    top: 8%;
    left: 15%;
  }
}

/* =========================
  Vacancy Status
  vacancy-status__media なし版
========================= */
.vacancy-status .wp-block-columns {
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.5s ease,
    transform 0.5s ease;
}

/* 左カラムの画像ブロック */
.vacancy-status .wp-block-columns > .wp-block-column:first-child .wp-block-image,
.vacancy-status .wp-block-columns > .wp-block-column:first-child figure {
  overflow: hidden;
}

/* 左カラム内の画像 */
.vacancy-status .wp-block-columns > .wp-block-column:first-child img,
.vacancy-status .wp-block-columns > .wp-block-column:first-child .wp-block-cover__image-background {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 1.2s ease;
}

/* ホバー時：左画像だけゆっくり拡大 */
.vacancy-status .wp-block-columns:hover > .wp-block-column:first-child img,
.vacancy-status .wp-block-columns:hover > .wp-block-column:first-child .wp-block-cover__image-background {
  transform: scale(1.05);
}

/* カード全体の空気感 */
.vacancy-status .wp-block-columns:hover {
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    0 0 28px rgba(170, 210, 255, 0.08);
}

/* =========================
  部屋番号ランプ
  ネオン強め
========================= */
.vacancy-status .room-lamp {
  display: inline-block;
  position: relative;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  color: rgba(190, 225, 255, 0.78);
  background:
    radial-gradient(circle at 50% 50%, rgba(120, 190, 255, 0.16) 0%, rgba(120, 190, 255, 0.06) 45%, rgba(120, 190, 255, 0.02) 70%, rgba(120, 190, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(120, 160, 210, 0.10) 100%);
  border: 1px solid rgba(170, 215, 255, 0.28);
  text-shadow:
    0 0 4px rgba(160, 220, 255, 0.16),
    0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 0 6px rgba(120, 190, 255, 0.08);
  transition:
    color 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease,
    text-shadow 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s ease;
}

.vacancy-status .room-lamp::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: radial-gradient(
    circle at center,
    rgba(170, 225, 255, 0.18) 0%,
    rgba(170, 225, 255, 0.06) 45%,
    rgba(170, 225, 255, 0) 75%
  );
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.vacancy-status .wp-block-columns:hover .room-lamp {
  color: rgba(245, 252, 255, 1);
  border-color: rgba(185, 230, 255, 0.72);
  background:
    radial-gradient(circle at 50% 50%, rgba(120, 210, 255, 0.34) 0%, rgba(120, 210, 255, 0.14) 44%, rgba(120, 210, 255, 0.04) 72%, rgba(120, 210, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(120, 180, 255, 0.16) 100%);
  text-shadow:
    0 0 8px rgba(235, 250, 255, 0.95),
    0 0 16px rgba(180, 235, 255, 0.88),
    0 0 28px rgba(120, 210, 255, 0.72),
    0 0 44px rgba(120, 210, 255, 0.52),
    0 0 60px rgba(120, 210, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10),
    0 0 10px rgba(170, 230, 255, 0.38),
    0 0 22px rgba(120, 205, 255, 0.34),
    0 0 42px rgba(120, 205, 255, 0.26);
  transform: translateY(-1px);
}

.vacancy-status .wp-block-columns:hover .room-lamp::before {
  opacity: 1;
  filter: blur(1px);
}

/* 左カラム内の画像 */
.vacancy-status .wp-block-columns > .wp-block-column:first-child img,
.vacancy-status .wp-block-columns > .wp-block-column:first-child .wp-block-cover__image-background {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center center;
  filter: brightness(0.28);
  transition:
    transform 1.2s ease,
    filter 1.2s ease;
}

/* ホバー時：左画像だけゆっくり拡大＋明るさを戻す */
.vacancy-status .wp-block-columns:hover > .wp-block-column:first-child img,
.vacancy-status .wp-block-columns:hover > .wp-block-column:first-child .wp-block-cover__image-background {
  transform: scale(1.05);
  filter: brightness(1);
}


/* =========================
  Letter：テキストボックス
========================= */
.letter .letter__text-box {
  position: relative;
  z-index: 3;
  overflow: hidden;

  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.10);
}

/* 黒のグラデーションレイヤー */
.letter .letter__text-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.08) 24%,
    rgba(0, 0, 0, 0.03) 48%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* 上面の薄い光 */
.letter .letter__text-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 16%,
    rgba(255, 255, 255, 0) 36%
  );
}

/* 中の文字をレイヤーより前に */
.letter .letter__text-box > * {
  position: relative;
  z-index: 3;
}

/* 手紙内の本文テキスト */
.letter .letter__text-box p,
.letter .letter__text-box li,
.letter .letter__text-box span {
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.45),
    0 2px 4px rgba(0, 0, 0, 0.32),
    0 6px 16px rgba(0, 0, 0, 0.14);
}

/* 見出しだけ少し強め */
.letter .letter__text-box h2,
.letter .letter__text-box h3,
.letter .letter__text-box h4 {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.40),
    0 4px 10px rgba(0, 0, 0, 0.24),
    0 0 20px rgba(0, 0, 0, 0.10);
}

/* =========================
  Letter：画像側
========================= */
/* =========================
  Letter：画像本体だけで立体感
========================= */
.letter .smb-section-break-the-grid__figure {
  position: relative;
  z-index: auto;
  box-shadow: none;
}

.letter .smb-section-break-the-grid__figure img {
  display: block;
  width: 100%;
  height: auto;

  /* 黒オーバーレイっぽい締まり */
  filter: brightness(0.8) contrast(1.06) saturate(0.92);

  /* 画像だけに立体感 */
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.08);

  /* 薄いフレーム感 */
  outline: 1px solid rgba(255, 255, 255, 0.08);
  outline-offset: -1px;
}



/* ------------------------------------ Room Service */
.room .wp-block-snow-monkey-blocks-items {
  background-color: #000;
}

.room__card-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  overflow: visible;
}

/* ボタンブロック全体 */
.room__card-bottom .wp-block-snow-monkey-blocks-buttons,
.room__card-bottom .smb-buttons {
  width: 100%;
}

/* ボタンラッパー */
.room__card-bottom .smb-btn-wrapper,
.room__card-bottom .smb-btn {
  width: 100%;
}

/* ボタン本体 */
.room__card-bottom .smb-btn__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 22px;
}

/* 手書きメモ */
.room__card-badge {
  position: absolute;
  top: -50px;
  left: -10px;
  right: auto;
  z-index: 6;

  display: inline-block;
  padding: 7px 12px;

  background: linear-gradient(180deg, #f3e3ae 0%, #e7d39a 100%);
  color: #4a3823;

  border: 1px solid rgba(120, 96, 48, 0.14);
  border-radius: 2px;

  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  white-space: nowrap;

  transform: rotate(-6deg);

  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.18),
    0 3px 8px rgba(0, 0, 0, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 0 -1px 0 rgba(120, 96, 48, 0.08);
}

/* =========================
  Roomセクション 画像ホバー拡大
   ========================= */

/* 画像の見切れ対策 */
.room .wp-block-cover {
  overflow: hidden;
}

/* 画像をなめらかに拡大できるように */
.room .wp-block-cover__image-background {
  transition: transform 0.8s ease;
  transform: scale(1);
  will-change: transform;
}

/* カード全体にホバーしたら画像だけ拡大 */
.room .wp-block-cover:hover .wp-block-cover__image-background {
  transform: scale(1.08);
}

/* ボタン本体 */
/* room service ボタン：電話アイコンのみ / 角丸なし */
.room__btn .smb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 22px;
  border-radius: 0;
  background: linear-gradient(180deg, #c9a764 0%, #b99043 100%);
  color: #fff;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: roomCallPulse 2.2s ease-in-out infinite;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

/* 元の文字を消す */
.room__btn .smb-btn__label {
  font-size: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 電話アイコンをSVGで表示 */
.room__btn .smb-btn__label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M6.62 10.79a15.053 15.053 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.85 21 3 13.15 3 3c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/></svg>");
}

/* hover */
.room__btn .smb-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: brightness(1.04);
}

/* 控えめな強調エフェクト */
@keyframes roomCallPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.18),
      0 0 0 0 rgba(201, 167, 100, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  70% {
    transform: scale(1.035);
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.20),
      0 0 0 12px rgba(201, 167, 100, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.18),
      0 0 0 0 rgba(201, 167, 100, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
}

/* ------------------------------------- 設備紹介 Amenities */
/* Gutenberg側の背景色を消す */
.amenities__card,
.amenities__card.has-dark-gray-background-color,
.amenities__card.has-background {
  background-color: transparent !important;
}

/* 共通カード */
.amenities__card {
  position: relative;
  color: #f6f3ea;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(28, 31, 36, 0.40) !important;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.amenities__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.32) 18%,
    transparent 42%
  );
}

/* 中央のゴールド */
.amenities__card--gold,
.amenities__card--gold.has-background {
  background-color: transparent !important;
  background: rgba(74, 57, 30, 0.64) !important;
  border: 1px solid rgba(225, 195, 138, 0.24) !important;
}

.amenities__card--gold::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 244, 220, 0.16) 0%,
    rgba(255, 232, 192, 0.42) 18%,
    transparent 42%
  );
}

/* .amenities__card-memo {
  position: absolute;
  top: -55px;
  right: -20px;
  max-width: 70%;
  transform: rotate(-5deg);
} */

.amenities__card-memo {
  position: absolute;
  top: -44px;
  right: -18px;
  z-index: 5;

  width: min(260px, 72%);
  padding: 18px 18px 18px;

  background: linear-gradient(180deg, #f7e9b8 0%, #f0dfaa 100%);
  color: #4a3a22;

  border: 1px solid rgba(120, 96, 48, 0.14);
  border-radius: 2px;

  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.22),
    0 4px 10px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(120, 96, 48, 0.08);

  transform: rotate(-4deg);
}

/* ピン頭＋針（控えめ版） */
.amenities__card-memo::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 16px;
  pointer-events: none;
  z-index: 2;

  background:
    linear-gradient(180deg,
      transparent 0,
      transparent 8px,
      #d7dbe0 8px,
      #8c939b 100%);
  background-size: 1px 16px;
  background-repeat: no-repeat;
  background-position: center top;

  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.16));
}

.amenities__card-memo::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
  border-radius: 50%;

  background: radial-gradient(circle at 30% 30%,
      #b86a7d 0%,
      #8f3048 38%,
      #5f1427 72%,
      #3f0a18 100%);

  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.22),
    inset 0 -1px 2px rgba(40, 6, 16, 0.28);
}

/* バリエーション */
.amenities__card-memo.memo-02 {
  transform: rotate(3deg);
  top: -40px;
  right: -12px;
}

.amenities__card-memo.memo-03 {
  transform: rotate(-2deg);
  top: -48px;
  right: -22px;
}

@media (max-width: 767px) {
  .amenities__card-memo {
    top: -28px;
    right: 8px;
    width: min(220px, 78%);
    padding: 14px 14px 14px;
    transform: rotate(-3deg);
  }

  .amenities__card-memo::before {
    top: 3px;
    width: 7px;
    height: 14px;
    background-size: 1px 14px;
  }

  .amenities__card-memo::after {
    top: 3px;
    width: 7px;
    height: 7px;
  }
}

/* SOLD OUTのリボン */
.amenities__media {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.amenities__card--sold-out .amenities__media::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -30px;
  z-index: 20;
  width: 110px;
  height: 24px;
  background: linear-gradient(135deg, #8b1e34 0%, #6d1327 45%, #4b0b1a 100%);
  transform: rotate(-45deg);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.amenities__card--sold-out .amenities__media::after {
  content: "SOLD OUT";
  position: absolute;
  top: 18px;
  left: -8px;
  z-index: 21;
  width: 72px;
  text-align: center;
  color: #f8f3ea;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  transform: rotate(-45deg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}


/* ------------------------------------ 施設案内 Info/Q&A */
.rule .smb-accordion__item__body {
  background: rgba(10, 10, 10, 0.42);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  backdrop-filter: blur(10px) saturate(115%);
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #A8ADB4;
}

/* =========================
  LINE 招待ボタン
========================= */
.line-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.line-contact__btn-original {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 18px 34px 18px 34px;

  background:
    linear-gradient(180deg, #1a1411 0%, #0d0a09 100%);
  color: #f4eadb;
  text-decoration: none;
  font-family: "BIZ UDPMincho", serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;

  border: 1px solid rgba(214, 184, 126, 0.42);
  border-radius: 0;

  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 6px 14px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease,
    border-color 0.35s ease;
}

/* 上品な金属ライン */
.line-contact__btn-original::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(214, 184, 126, 0.18);
}

/* 封蝋風アクセント */
.line-contact__btn-original::after {
  content: "LINE";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);

  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at 30% 30%, #b85a68 0%, #7a1d2e 58%, #4a0e1c 100%);
  color: #f8f1ea;
  font-family: "BIZ UDPMincho", serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;

  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);

  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.24),
    inset 0 1px 2px rgba(255, 255, 255, 0.18),
    inset 0 -2px 4px rgba(0, 0, 0, 0.28);
}

/* hover */
.line-contact__btn-original:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  border-color: rgba(214, 184, 126, 0.6);
  box-shadow:
    0 24px 42px rgba(0, 0, 0, 0.32),
    0 8px 18px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.24);
}

/* 呼吸するような控えめエフェクト */
.line-contact__btn-original {
  animation: invitePulse 2.8s ease-in-out infinite;
}

@keyframes invitePulse {
  0% {
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(122, 29, 46, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  }
  70% {
    box-shadow:
      0 22px 42px rgba(0, 0, 0, 0.30),
      0 0 0 14px rgba(122, 29, 46, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  }
  100% {
    box-shadow:
      0 18px 36px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(122, 29, 46, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  }
}

/* スマホ */
@media (max-width: 767px) {
  .line-contact__btn-original {
    min-width: 220px;
    padding: 15px 24px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .line-contact__btn-original::after {
    width: 46px;
    height: 46px;
    right: -12px;
    font-size: 10px;
  }
}

/* ------------------------------------ invitation */
.invitation .wp-block-group {
  position: relative;
}

.invitation .line-contact {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.footer-legal__disclaimer {
  color: rgba(184, 196, 210, 0.34);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.42),
    0 -1px 0 rgba(255, 255, 255, 0.03);
}

.c-copyright {
  background-color: #000;
}

/* =========================
   投稿サムネ
   通常時は暗め / hoverで拡大＋明るく
   ========================= */

.c-entry-summary__figure {
  position: relative;
  overflow: hidden;
}

/* 暗さレイヤー */
.c-entry-summary__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 0.7s ease;
}

/* 画像本体 */
.c-entry-summary .c-entry-summary__figure img {
  display: block;
  width: 100%;
  height: auto;

  transform: scale(1) translateZ(0) !important;
  transform-origin: center center;
  will-change: transform;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transition-property: transform !important;
  transition-duration: 1s !important;
  transition-timing-function: ease !important;
}

/* hover時 */
.c-entry-summary:hover .c-entry-summary__figure img {
  transform: scale(1.05) translateZ(0) !important;
}

.c-entry-summary:hover .c-entry-summary__figure::after {
  opacity: 0;
}
