@charset "UTF-8";
/* ==========================================================================
   common.css — サイト共通の独自スタイル（全ページで読み込む）
   支給テンプレート（common/css/common.css・css/style.css）への上書きと、
   下層誘導スライダー・金色ボタン・注釈などページ横断のパーツをまとめる。
   トップページ固有のスタイルは css/top.css。
   ========================================================================== */
/* ==========================================================================
   contents.css — 自由設計エリア（contentArea）とメインビジュアルの独自スタイル
   共通部（ヘッダー・コンテンツメニュー・CV・フッター）は common/css/common.css、
   TOPの規定セクション（USP・お知らせ・キャンペーン）は css/style.css が持つ。
   このファイルは支給テンプレートに無い、本物件固有の見せ場だけを担当する。
   ・p-top-hero   … 空撮プレート＋光レイヤー4枚の加算合成と地図キャプション
     ・p-top-gallery … SECTIONS（全画面ギャラリー）
   ・c-entry / c-contents … ENTRY FLOW と下層コンテンツスライダー
   ========================================================================== */

/* 本サイトの地の書体は明朝。テンプレートの共通CSSはゴシックを基準にしているため、
   後読みのこのファイルで上書きする（規定: 書体はサイトのトーンに合わせて変更可） */
body,
.currentPage,
input,
button,
textarea,
select {
  font-family: 'YakuHanMP', 'Shippori Mincho B1', 'Shippori Mincho', 'Noto Serif JP', serif;
}

/* 1920px 設計の見せ場を、テンプレートのレスポンシブ版面を壊さずに収める土台。
   TOP のみ js/common.js が zoom を掛けて画面幅に合わせる（sticky 演出のため等比縮小を維持）。
   下層ページは .currentPage.js-fluid が付いており、下の「下層ページの通常レスポンシブ」で上書きする */
.contentArea__stage,
#mainVisual .p-top-hero,
#mainVisual .p-loc-hero {
  width: 1920px;
  margin: 0 auto;
}

/* はみ出しは切るが、overflow:hidden はスクロール枠を作って position:sticky を殺すため clip を使う
   （SECTIONS の全画面ギャラリーが sticky で成立している） */
.contentArea {
  overflow-x: clip;
}

#mainVisual {
  overflow-x: clip;
}

.heroCapsTop__inner {
  position: relative;
  width: 1920px;
  height: 924px;
  /* メインビジュアル内のキャプション層と同じ拡縮（空撮の cover 倍率）を掛けて位置を揃える */
  transform: scale(var(--hero-k, 1));
}

/* 見出しタグの既定マージンだけ落とす。
   font-size / font-weight はテンプレートの共通リセットが既に 100% / normal にしており、
   ここで inherit を足すと要素セレクタぶんセレクタが強くなって各クラスの指定を打ち消してしまう */
.contentArea h2,
.contentArea h3,
.uspBand h2 {
  margin: 0;
}

/* 物件名（ロゴデータ支給までのテキスト組み）
   ヘッダーはメインビジュアル上に重なるため白抜き。コンテンツメニュー／CVメニューは
   テンプレートのテーマ色（site-theme-black）に合わせて同じく白 */
.mansionSymbol-bukkenLogo__name {
  display: block;
  font-family: 'YakuHanMP', 'Shippori Mincho B1', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  white-space: nowrap;
  color: rgb(255,255,255);
}


.mansionSymbol-bukkenLogo__link {
  text-decoration: none;
  color: inherit;
}

/* フッターの支給アイコン（電話・案内図・物件概要）は黒版のみの支給。
   支給データは改変不可のため、暗色テーマのフッター上では CSS で白へ反転させる */
.site-theme-black .footer-contact__tel img,
.site-theme-black .footer-subNav__icon {
  filter: invert(1);
}

.p-top-gallery__div-3 br.only-sp {
  display: none;
}

.p-top-gallery__a {
  height: 70px;
  margin-top: 40px;
  box-sizing: border-box;
  border-radius: 3px;
  background: linear-gradient(90deg, rgb(44,43,31) 0%, rgb(136,134,105) 53.37%, rgb(44,43,31) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), filter 0.35s, box-shadow 0.35s;
}

.p-top-gallery__a:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.p-top-gallery__a-2 {
  height: 70px;
  margin-top: 40px;
  box-sizing: border-box;
  border-radius: 3px;
  background: linear-gradient(90deg, rgb(44,43,31) 0%, rgb(136,134,105) 53.37%, rgb(44,43,31) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), filter 0.35s, box-shadow 0.35s;
}

.p-top-gallery__a-2:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.p-top-gallery__a-3 {
  height: 70px;
  margin-top: 40px;
  box-sizing: border-box;
  border-radius: 3px;
  background: linear-gradient(90deg, rgb(44,43,31) 0%, rgb(136,134,105) 53.37%, rgb(44,43,31) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), filter 0.35s, box-shadow 0.35s;
}

.p-top-gallery__a-3:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.p-top-gallery__a-4 {
  height: 70px;
  margin-top: 40px;
  box-sizing: border-box;
  border-radius: 3px;
  background: linear-gradient(90deg, rgb(44,43,31) 0%, rgb(136,134,105) 53.37%, rgb(44,43,31) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), filter 0.35s, box-shadow 0.35s;
}

.p-top-gallery__a-4:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}


/* ==========================================================================
   c-entry — ENTRY FLOW
   ========================================================================== */

.c-entry {
  position: relative;
  z-index: 2;
  width: 1920px;
  padding: 120px 108px;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgb(50,47,42) 0%, rgb(127,122,115) 53.37%, rgb(50,47,42) 100%);
}

.c-entry__div {
  max-width: 1704px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.c-entry__rise {
  text-align: center;
  font-family: 'Cormorant Infant', ui-serif, Georgia, serif;
  font-size: 14px;
  letter-spacing: 1.4px;
  color: rgb(255,255,255);
}

.c-entry__rise-2 {
  text-align: center;
  font-family: 'YakuHanMP', 'Shippori Mincho', serif;
  /* Shippori Mincho は 400/500 のみ読み込んでいるため、600 だと合成ボールドで太って見える */
  font-weight: 500;
  font-size: 30px;
  line-height: 38.4px;
  letter-spacing: 1.8px;
  color: rgb(255,255,255);
}

.c-entry__div-2 {
  display: flex;
  gap: 72px;
  padding: 69px 0;
}

.c-entry__rise-3 {
  position: relative;
  flex: 1;
  border-radius: 5px;
  background: rgb(48,46,34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-entry__div-3 {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 18px 0;
}

.c-entry__div-4 {
  width: 32px;
  flex-shrink: 0;
  font-family: 'Cormorant Infant', ui-serif, Georgia, serif;
  font-size: 32px;
  line-height: 39px;
  color: rgb(255,255,255);
}

.c-entry__div-5 {
  font-family: 'YakuHanMP', 'Shippori Mincho', serif;
  font-size: 24px;
  line-height: 34.8px;
  color: rgb(255,255,255);
}

.c-entry__a {
  margin: 41.188px 0;
  height: 80px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgb(154,153,131) 7.13%, rgb(218,215,203) 50.54%, rgb(154,153,131) 90.73%);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}



.c-entry__span {
  font-family: 'YakuHanMP', 'Shippori Mincho', serif;
  font-size: 20px;
  line-height: 20px;
  color: rgb(11,11,11);
}

.c-entry__div-6 {
  position: absolute;
  left: -46px;
  top: 108px;
  width: 20px;
  height: 20px;
  border-top: 1px solid rgb(255,255,255);
  border-right: 1px solid rgb(255,255,255);
  transform: rotate(45deg);
}

.c-entry__div-7 {
  margin: 25px 0;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 25px 20px;
  box-sizing: border-box;
  font-family: 'YakuHanMP', 'Shippori Mincho', serif;
  font-size: 18px;
  line-height: 28.8px;
  letter-spacing: 0.54px;
  color: rgb(255,255,255);
}

.c-entry__a-2 {
  margin: 41.188px 0;
  height: 80px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgb(154,153,131) 7.13%, rgb(218,215,203) 50.54%, rgb(154,153,131) 90.73%);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}



.c-entry__div-8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 49px 0;
}

.c-entry__div-9 {
  text-align: center;
  font-family: 'YakuHanMP', 'Shippori Mincho', serif;
  font-size: 20px;
  line-height: 40px;
  color: rgb(255,255,255);
}

.c-entry__a-3,
.c-goldBtn {
  width: 440px;
  max-width: 100%;
  min-height: 80px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgb(154,153,131) 7.13%, rgb(218,215,203) 50.54%, rgb(154,153,131) 90.73%);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.c-entry__span-2 {
  font-family: 'YakuHanMP', 'Shippori Mincho', serif;
  font-size: 20px;
  line-height: 20px;
  color: rgb(48,46,34);
}


/* ==========================================================================
   c-contents — 下層コンテンツスライダー
   ========================================================================== */

.c-contents {
  position: relative;
  z-index: 2;
  width: 1920px;
  padding: 210px 0 115px 0;
  box-sizing: border-box;
  background: linear-gradient(186.273deg, rgb(222,221,219) 17.33%, rgb(204,198,188) 86.88%);
  overflow: hidden;
}

/* 送りは Swiper が担う。スライドの間隔と左右の余白は CSS（.c-contents__div の
   gap / padding）に一本化し、Swiper 側の spaceBetween / slidesOffset* は 0 にしている
   （両方で与えると二重にかかるため）。ここでは版面の幅と手の形も持つ */
/* Swiper は自身の幅とスライド総幅を比べて送りの可否を決める（watchOverflow）。
   ここを 1920px 固定にすると、画面より広い幅で「全部入っている」と判定され
   ドラッグが無効（swiper-lock）になるため、実寸で測れるよう 100% にする */
.c-contents__slider {
  width: 100%;
  cursor: grab;
}

.c-contents__slider.swiper-grabbing {
  cursor: grabbing;
}

/* Swiper に間隔と余白を渡したあと、二重にかからないよう JS が付ける（js/common.js） */
.c-contents .c-contents__div.is-swiper {
  gap: 0;
  padding: 0;
}

.c-contents__div {
  display: flex;
  gap: 80px;
  padding: 0 120px;
}

.c-contents__a {
  flex: 0 0 auto;
  /* キャッチコピー（最長21文字）を1行で組める幅 */
  width: 480px;
  height: auto;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  -webkit-user-drag: none;
}

.c-contents__div-2 {
  position: relative;
  width: 480px;
  height: 320px;
  overflow: hidden;
  background: rgb(190,186,178);
}

.c-contents__slide-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/common/tile-air.webp');
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  transition: transform 1200ms cubic-bezier(0.22,1,0.36,1);
}

/* ホバーの水膜（js/function.js）。触れた辺りがほんのり明るみ、触れた点から波紋がひとつ広がる。
   色は足さず明度だけ（soft-light）。--fx / --fy は JS が渡すカーソル位置 */
.c-contents__film {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(closest-side at var(--fx, 50%) var(--fy, 50%), rgba(255,255,255,0.55), rgba(255,255,255,0.18) 55%, rgba(255,255,255,0) 100%);
  mix-blend-mode: soft-light;
  transition: opacity 420ms ease;
}

.c-contents__div-2.is-lit .c-contents__film {
  opacity: 1;
}

.c-contents__ripple {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0) 58%, rgba(255,255,255,0.7) 66%, rgba(255,255,255,0) 74%);
  mix-blend-mode: soft-light;
}

.c-contents__div-3 {
  position: absolute;
  right: calc(10px * var(--stage-zi, 1));
  bottom: calc(6px * var(--stage-zi, 1));
  font-family: 'YakuHanMP', 'Shippori Mincho', serif;
  font-weight: 500;
  /* 画像キャプションと同じ実効サイズ（規定の最小 10px を満たす） */
  font-size: calc(11px * var(--stage-zi, 1));
  line-height: 1.5;
  text-align: right;
  color: rgb(255,255,255);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.c-contents__div-4 {
  margin-top: 25px;
  font-family: 'Cormorant Infant', ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.06em;
  opacity: 0.5;
  color: rgb(11,11,11);
}

.c-contents__div-5 {
  margin-top: 17px;
  font-family: 'YakuHanMP', 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
  white-space: nowrap;
  color: rgb(11,11,11);
}

.c-contents__div-6 {
  margin-top: 25px;
  border-top: 1px solid rgba(0,0,0,0.5);
  padding-top: 15px;
  display: flex;
  justify-content: flex-end;
}

.c-contents__div-7 {
  font-family: 'YakuHanMP', 'Shippori Mincho', serif;
  font-size: 15px;
  line-height: 15px;
  color: rgb(51,51,51);
}

.c-contents__slide-img-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/common/c-1.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  transition: transform 1200ms cubic-bezier(0.22,1,0.36,1);
}

.c-contents__slide-img-3 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/common/c-2.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  transition: transform 1200ms cubic-bezier(0.22,1,0.36,1);
}

.c-contents__slide-img-4 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/common/c-4d.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  transition: transform 1200ms cubic-bezier(0.22,1,0.36,1);
}

.c-contents__slide-img-5 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/common/c-5.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  transition: transform 1200ms cubic-bezier(0.22,1,0.36,1);
}

.c-contents__slide-img-6 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/common/c-6.jpg');
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  transition: transform 1200ms cubic-bezier(0.22,1,0.36,1);
}

.c-contents .c-contents__gauge {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: auto;
  width: min(1000px, calc(100% - 48px));
  height: 2px;
  margin: 95px auto 0 auto;
  background: rgba(84,84,84,0.3);
  cursor: pointer;
}

.c-contents__gauge-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 875px;
  height: 2px;
  background: rgb(84,84,84);
  will-change: transform, width;
}


/* ==========================================================================
   p-top-hero — TOP メインビジュアル（空撮プレート＋光レイヤー4枚の加算合成）
   ========================================================================== */

.p-top-hero {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 1920px;
  height: var(--vph, 100vh);
  overflow: hidden;
  background: rgb(8,7,6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.addrCinema__btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgb(44,43,31) 0%, rgb(136,134,105) 53.37%, rgb(44,43,31) 100%);
  text-decoration: none;
  /* 4辺の1pxエンボス。内側の淡い立ち上がりと、外へ落ちる影で厚みを出す */
  box-shadow:
    inset 0 1px 0 rgba(238,224,192,0.16),
    inset 0 -1px 0 rgba(0,0,0,0.30),
    inset 1px 0 0 rgba(238,224,192,0.07),
    inset -1px 0 0 rgba(238,224,192,0.07),
    0 1px 2px rgba(0,0,0,0.22);
  transition: box-shadow 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* エンボスの稜線。ホバーで4辺が鈍く光り、上辺がもっとも強く立つ */
.addrCinema__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* 稜線の照り。地の傾き（160deg）の上に、カーソル位置を芯にした
     ホットスポットを重ね、触れている辺だけが強く立つようにする */
  background:
    radial-gradient(circle 230px at var(--mx, 50%) var(--my, 50%), rgba(255,250,236,0.98) 0%, rgba(255,250,236,0.34) 42%, rgba(255,250,236,0) 100%),
    linear-gradient(160deg,
      rgba(255,247,226,0.30) 0%,
      rgba(226,206,164,0.12) 26%,
      rgba(150,138,112,0.07) 50%,
      rgba(226,206,164,0.10) 76%,
      rgba(255,247,226,0.24) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 460ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

/* 面に溜まる鈍い光。中央がわずかに起きて、金属の照り返しになる */
.addrCinema__btn::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 2px;
  background:
    radial-gradient(circle 78px at var(--mx, 50%) var(--my, 50%), rgba(255,247,224,0.26) 0%, rgba(255,247,224,0) 100%),
    radial-gradient(circle 190px at var(--mx, 50%) var(--my, 50%), rgba(255,244,214,0.15) 0%, rgba(255,244,214,0) 100%),
    radial-gradient(circle 300px at var(--mx, 50%) var(--my, 50%), rgba(238,224,192,0.085) 0%, rgba(238,224,192,0) 100%);
  opacity: 0;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.addrCinema__btn:hover,
.addrCinema__btn:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255,247,226,0.34),
    inset 0 -1px 0 rgba(0,0,0,0.34),
    inset 1px 0 0 rgba(255,247,226,0.16),
    inset -1px 0 0 rgba(255,247,226,0.16),
    0 2px 10px rgba(180,150,92,0.22),
    0 1px 2px rgba(0,0,0,0.24);
}

.addrCinema__btn:hover::before,
.addrCinema__btn:focus-visible::before {
  opacity: 1;
  animation: dtlRingSway 4.6s ease-in-out infinite;
}

.addrCinema__btn:hover::after,
.addrCinema__btn:focus-visible::after {
  opacity: 1;
  animation: dtlLightSway 3.4s ease-in-out infinite;
}

.addrCinema__btn:active {
  box-shadow:
    inset 0 1px 0 rgba(0,0,0,0.26),
    inset 0 -1px 0 rgba(255,247,226,0.14),
    0 1px 1px rgba(0,0,0,0.20);
}

.addrCinema__btn:hover .addrCinema__btnTxt,
.addrCinema__btn:focus-visible .addrCinema__btnTxt {
  text-shadow: 0 0 14px rgba(255,244,214,0.34);
}
@media (prefers-reduced-motion: reduce) {
  .addrCinema__btn,
  .addrCinema__btn::before,
  .addrCinema__btn::after {
    transition: none;
  }
}

@media screen and (min-width: 768px) {
  .contentArea + .news {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {

  /* 1920px の版面をビューポート幅に置き換える土台 */
  .uspBand__stage,
  .contentArea__stage {
    width: 100%;
  }

  /* ---- メインビジュアル ------------------------------------------------
     素材は PC と共通（imgs/hero-day.webp ＋ 光柱）。
     1920×923 の空撮を比を崩さず画面高に合わせ、物件位置が画面幅の約61%に
     来るよう横へ送る（倍率と送り量は js/function.js が CSS 変数で配る）。
     光柱は空撮と同じ盤面の中にあるため、送りにそのまま追従する */
  /* ID を含む土台の指定（.contentArea__stage, #mainVisual .p-top-hero）より強くする */
  #mainVisual .p-top-hero {
    width: 100%;
  }

  /* ヘッダーの物件名は fig に合わせてセンター上部へ（コンテンツメニューボタンは右上に固定のまま） */
  /* 規定: ブランドシンボル＋物件名は左上、コンテンツメニューボタンは右上 */
  .header .mansionSymbol--direct {
    justify-content: flex-start;
    padding: 18px 72px 18px 20px;
  }

  .header .mansionSymbol--direct .mansionSymbol-bukkenLogo {
    width: auto;
  }

  /* コンテンツメニュー・CVメニュー内のシンボルも同サイズに統一。
     開閉でロゴの大きさが変わって見えないようにする（ブランドシンボルの扱いを揃える規定に沿う） */
  .header .mansionSymbol--direct .mansionSymbol-bukkenLogo__name,
  .contentMenu .mansionSymbol .mansionSymbol-bukkenLogo__name,
  .cvMenu .mansionSymbol .mansionSymbol-bukkenLogo__name {
    font-size: 17px;
    letter-spacing: 0.12em;
    text-align: left;
  }

  /* fig SP: 画面上端の暗いグラデーション。
     メインビジュアル上でもブランドシンボル・物件名の視認性を担保する（規定） */
  .p-top-hero::after,
  .p-top-hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 8;
    width: 100%;
    height: 350px;
    background: linear-gradient(180deg, rgb(0,0,0) 0%, rgba(0,0,0,0) 100%);
    opacity: 0.5;
    mix-blend-mode: multiply;
    pointer-events: none;
  }

  .p-top-hero::before {
    display: none;
  }

  .addrCinema__btn {
    height: 56px;
  }

  .p-top-gallery__div-3 br.only-sp {
    display: inline;
  }

  @media (prefers-reduced-motion: reduce) {
    .p-top-gallery__a-bg {
      animation: none;
    }
  }

  .p-top-gallery__a,
  .p-top-gallery__a-2,
  .p-top-gallery__a-3,
  .p-top-gallery__a-4 {
    height: 56px;
    margin-top: 26px;
  }

  /* ---- ENTRY FLOW ---- */
  .c-entry {
    width: 100%;
    padding: 64px 24px;
  }

  .c-entry__div {
    max-width: none;
    gap: 8px;
  }

  .c-entry__rise {
    font-size: 12px;
  }

  .c-entry__rise-2 {
    font-size: 19px;
    line-height: 30px;
    letter-spacing: 1px;
  }

  .c-entry__div-2 {
    flex-direction: column;
    gap: 46px;
    padding: 34px 0 24px;
  }

  .c-entry__rise-3 {
    padding: 22px 18px;
  }

  .c-entry__div-3 {
    gap: 16px;
    padding: 8px 0;
  }

  .c-entry__div-4 {
    width: 24px;
    font-size: 24px;
    line-height: 30px;
  }

  .c-entry__div-5 {
    font-size: 16px;
    line-height: 26px;
  }

  .c-entry__a,
  .c-entry__a-2 {
    margin: 20px 0 2px;
    height: 60px;
  }

  .c-entry__span {
    font-size: 14px;
    line-height: 20px;
  }

  /* 段組みが縦に変わるため、矢印はカードの上辺中央へ */
  .c-entry__div-6 {
    left: 50%;
    top: -32px;
    margin-left: -10px;
    transform: rotate(135deg);
  }

  .c-entry__div-7 {
    margin: 16px 0 2px;
    padding: 16px 14px;
    font-size: 14px;
    line-height: 24px;
  }

  .c-entry__div-8 {
    gap: 20px;
    padding: 20px 0 0;
  }

  .c-entry__div-9 {
    font-size: 14px;
    line-height: 26px;
  }

  .c-entry__a-3,
  .c-goldBtn {
    width: 100%;
    height: 60px;
  }

  .c-entry__span-2 {
    font-size: 14px;
    line-height: 20px;
  }

  /* ---- 下層コンテンツスライダー ---- */
  .c-contents {
    width: 100%;
    padding: 70px 0 56px;
  }

  .c-contents__slider {
    width: 100%;
  }

  .c-contents__div {
    gap: 20px;
    padding: 0 24px;
  }

  .c-contents__a {
    width: 268px;
  }

  .c-contents__div-2 {
    width: 268px;
    height: 179px;
  }

  .c-contents__div-4 {
    margin-top: 18px;
  }

  .c-contents__div-5 {
    margin-top: 10px;
    font-size: 15px;
    line-height: 26px;
    white-space: normal;
  }

  .c-contents__div-6 {
    margin-top: 16px;
    padding-top: 13px;
  }

  .c-contents__div-7 {
    font-size: 13px;
    line-height: 20px;
  }

  .c-contents .c-contents__gauge {
    width: auto;
    margin: 32px 24px 0;
  }

  /* 全画面ギャラリー直後の詰め */
  .contentArea + .news {
    margin-top: 24px;
  }
}


/* SP ギャラリー背景の横送り（右→左。寄せてから送ることで縁を出さない） */
@keyframes spGalleryPan {
  from { transform: scale(1.14) translateX(3.4%); }
  to { transform: scale(1.14) translateX(-3.4%); }
}
@media screen and (max-width: 767px) {
  /* 和文の可読性: 禁則を厳格に、単語の途中で改行しない、
     余った1文字だけが行に残る（ラグ）を避ける */
  body {
    line-break: strict;
    word-break: normal;
    overflow-wrap: break-word;
  }


  /* 最小フォントサイズ 10px（規定） */
  .bottomCV-btn__icon {
    font-size: 10px;
  }

  /* タップ領域は 44px 以上を確保（見た目は変えず、当たり判定だけ広げる）。
     位置は支給テンプレートの absolute（right:20px）を保つ。
     ::after はテンプレートの NEW バッジ（ピンクの丸）なので、
     当たり判定に流用する際は塗りを消す */
  .header-menu::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    background: none;
    border-radius: 0;
  }
}

@media screen and (min-width: 768px) {
  .currentPage,
  .header {
    min-width: 0;
  }
}


/* メニュー展開中の重なりと操作系の整理。
   支給の cvMenu は z-index 10 だが、ヘッダーのメニューボタン（9999）と
   セクション送り（40）がその上に残り、閉じるボタンもメニュー本体の下にあった。
   規定「ボタン類に重ならない配置」「キーボードトラップを作らない」に沿って整える */
/* 画面固定の CV（右端のタブ＝cvBnr／右下の topCV）は、支給では z-index 4・9 のため
   写真の注釈（imgCap 6〜12）が前面に乗ってしまう。規定「ボタン類に重ならない配置」に沿って
   固定 CV を注釈より前面に上げる（メニューの幕 9000 以上より背面は維持） */
/* 遅延読込による高さ変動時、ブラウザのスクロールアンカリングが位置を
   押し戻して自前慣性と喧嘩するのを防ぐ（ACCESS 中腹で止まる報告への対処） */
html {
  overflow-anchor: none;
}

.cvBnr,
.topCV {
  z-index: 60;
}

.cvMenu {
  z-index: 10000;
}

/* コンテンツメニューボタンは規定により常時操作できる必要があるため、
   CV メニューの幕より前面に置く（支給の 9999 では幕の下に沈む） */
.header-menu {
  z-index: 10001;
}

/* 閉じるボタン。位置・寸法・線の角度は支給データ（top 90px / right 40px、30×17px、
   線 ±30.6°）のまま。支給の z-index 9 では後続要素に隠れてクリックが通らないため上げ、
   当たり判定だけ 44px 角に広げる（X の墨は元の見え方に保つ） */
.cvMenu__close {
  width: 44px;
  height: 44px;
  margin-top: -13.5px;
  margin-right: -7px;
  z-index: 20;
}

/* 線は支給どおり「ボタン幅の 114.286%（= 56% / 49 * 100）」で長さが決まる。
   当たり判定を 44px 角に広げた分、基準幅 30px に対する実寸で与え直し、
   30×17 の枠の中央に置く（見た目は支給と同一） */
.cvMenu__close::before,
.cvMenu__close::after {
  top: 13.5px;
  width: 34.286px;
}

.cvMenu__close::before {
  left: 7px;
}

.cvMenu__close::after {
  right: 7px;
}
@media screen and (max-width: 767px) {
  .cvMenu__close {
    margin-top: -14.75px;
    margin-right: -9.75px;
  }

  /* SP の支給寸法 24.5×14.5px に対する実寸 */
  .cvMenu__close::before,
  .cvMenu__close::after {
    top: 14.75px;
    width: 28px;
  }

  .cvMenu__close::before {
    left: 9.75px;
  }

  .cvMenu__close::after {
    right: 9.75px;
  }
}


/* 営業時間は暗色（#333）のままで、暗い地の CV メニューでは読めなかった。
   フッターの同じ情報と同じ白抜きに揃える（規定 1.4.3 コントラスト） */
.site-theme-black .cvMenu-btn__schedule {
  color: rgb(245,245,245);
}

/* 展開中は背面の操作系を伏せる（ボタン類に重ならない配置にするため）。
   コンテンツメニューボタンは規定「常時画面内に固定／常に追従表示」により対象外 */
body:has(.cvMenu.is-visible) .topCV,
body:has(.cvMenu.is-visible) [data-h-navwrap],
body:has(.contentMenu.is-visible) .topCV,
body:has(.contentMenu.is-visible) [data-h-navwrap] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
@media screen and (min-width: 768px) {
  .campaign,
  .campaign__heading,
  .campaign__inner,
  .campaignGroup {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  /* 上の箱に合わせて、内側の固定配置も画面内に収める */
  .infoMenu__back {
    max-width: 100%;
  }

  .cvBnr,
  .cvBnr__button {
    max-width: 100vw;
  }
}


/* 全幅に逃がす要素を画面幅ぴったりに揃える。100vw は縦スクロールバーの幅を含むため、
   その実測値（--sbw / js/function.js が設定）を差し引く。
   テンプレートの固定ネガティブマージンも親の余白より広く、横スクロールの原因だった */
/* 支給テンプレート（css/style.css）の .news は PC で幅 840px 固定。タブレット縦（810px）では
   画面より広くなってページ全体が横スクロールするため、上限を画面幅に合わせる（1920px では影響なし） */
@media screen and (min-width: 768px) {
  .news {
    max-width: calc(100% - 48px);
  }
}

/* ページ下部の注釈（.bottomArea）は支給テンプレートで PC の左右 padding が 0。内側の
   .bottomArea__inner（max-width 1000px）が画面より狭くならない幅では文字が画面端に張り付くため、
   左右に余白を確保する（上限 1080px＝1000 + 40×2。それ以上は影響なし） */
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .bottomArea {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* ---- コンテンツメニュー: タブレット幅の調整 ----
   支給テンプレートは 768px 以上で固定幅（ページリスト 590px／外部リンク 340px＋590px）を使う。
   1000px 前後の版面では合計が入りきらず、「住まいのギャラリー」ボタンが縮んで文字がはみ出す。
   ボタンのデザイン（寸法・書体）は規定で変更不可なので、寸法は保ったまま並びだけ組み替える */
@media screen and (min-width: 768px) and (max-width: 1279px) {
  /* 固定 590px のページリストを版面の左右センターに置く（左寄せだと右に大きな余白が残る） */
  .contentMenu-pageList {
    margin-left: auto;
    margin-right: auto;
  }

  /* 現地案内図・物件概要は、センターに寄せたページリストの左端に揃える
     （版面いっぱいのままだと、上のボタン列より左に外れて見える） */
  .contentMenu-subNav {
    width: 590px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  /* 340px + 590px = 930px が入らない幅では、ボタンと関連リンクを縦に積む */
  .contentMenu-external {
    flex-direction: column;
    align-items: center;
  }

  .contentMenu-external .contentMenu-btn {
    flex: 0 0 auto;
  }

  .contentMenu-residenceList {
    width: 100%;
    margin-top: 28px;
    justify-content: center;
  }
}

.footer-recommend__iframe {
  width: calc(100vw - var(--sbw, 0px));
  margin-left: calc(50% - 50vw + var(--sbw, 0px) / 2);
  margin-right: calc(50% - 50vw + var(--sbw, 0px) / 2);
}
@media screen and (max-width: 767px) {
  .news__inner {
    width: calc(100vw - var(--sbw, 0px));
    margin-left: calc(50% - 50vw + var(--sbw, 0px) / 2);
    margin-right: calc(50% - 50vw + var(--sbw, 0px) / 2);
  }
}


.spAlert {
  width: calc(100vw - var(--sbw, 0px));
}
@media screen and (max-width: 767px) {
  .campaign__inner {
    width: calc(100vw - var(--sbw, 0px));
    margin-left: calc(50% - 50vw + var(--sbw, 0px) / 2);
    margin-right: calc(50% - 50vw + var(--sbw, 0px) / 2);
  }
}



/* DETAIL ボタン共通の照り。POSITION の .addrCinema__btn と同じ所作に揃える:
   4辺の1pxエンボスが鈍く光り、面に淡い照り返しが溜まる。面は塗り替えない。
   明るい面の .c-entry__a-3 は別の鍵で彫るため、ここには含めない */
.p-top-gallery__a,
.p-top-gallery__a-2,
.p-top-gallery__a-3,
.p-top-gallery__a-4 {
  position: relative;
  /* 灯りの裾がボタンの外へ出ないよう、輪郭で切り取る */
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(238,224,192,0.16),
    inset 0 -1px 0 rgba(0,0,0,0.30),
    inset 1px 0 0 rgba(238,224,192,0.07),
    inset -1px 0 0 rgba(238,224,192,0.07),
    0 1px 2px rgba(0,0,0,0.22);
  transition: box-shadow 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.p-top-gallery__a::before,
.p-top-gallery__a-2::before,
.p-top-gallery__a-3::before,
.p-top-gallery__a-4::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* 稜線の照り。地の傾き（160deg）の上に、カーソル位置を芯にした
     ホットスポットを重ね、触れている辺だけが強く立つようにする */
  background:
    radial-gradient(circle 230px at var(--mx, 50%) var(--my, 50%), rgba(255,250,236,0.98) 0%, rgba(255,250,236,0.34) 42%, rgba(255,250,236,0) 100%),
    linear-gradient(160deg,
      rgba(255,247,226,0.30) 0%,
      rgba(226,206,164,0.12) 26%,
      rgba(150,138,112,0.07) 50%,
      rgba(226,206,164,0.10) 76%,
      rgba(255,247,226,0.24) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 460ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.p-top-gallery__a::after,
.p-top-gallery__a-2::after,
.p-top-gallery__a-3::after,
.p-top-gallery__a-4::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 2px;
  /* カーソル位置（--mx/--my）を中心に放射する灯り。芯・中景・裾の3枚で
     光の減衰をつくり、keyframes でゆらめかせる */
  background:
    radial-gradient(circle 78px at var(--mx, 50%) var(--my, 50%), rgba(255,247,224,0.26) 0%, rgba(255,247,224,0) 100%),
    radial-gradient(circle 190px at var(--mx, 50%) var(--my, 50%), rgba(255,244,214,0.15) 0%, rgba(255,244,214,0) 100%),
    radial-gradient(circle 300px at var(--mx, 50%) var(--my, 50%), rgba(238,224,192,0.085) 0%, rgba(238,224,192,0) 100%);
  opacity: 0;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.p-top-gallery__a:hover,
.p-top-gallery__a-2:hover,
.p-top-gallery__a-3:hover,
.p-top-gallery__a-4:hover,
.p-top-gallery__a:focus-visible,
.p-top-gallery__a-2:focus-visible,
.p-top-gallery__a-3:focus-visible,
.p-top-gallery__a-4:focus-visible {
  filter: none;
  transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255,247,226,0.34),
    inset 0 -1px 0 rgba(0,0,0,0.34),
    inset 1px 0 0 rgba(255,247,226,0.16),
    inset -1px 0 0 rgba(255,247,226,0.16),
    0 2px 10px rgba(180,150,92,0.22),
    0 1px 2px rgba(0,0,0,0.24);
}

.p-top-gallery__a:hover::before,
.p-top-gallery__a-2:hover::before,
.p-top-gallery__a-3:hover::before,
.p-top-gallery__a-4:hover::before,
.p-top-gallery__a:focus-visible::before,
.p-top-gallery__a-2:focus-visible::before,
.p-top-gallery__a-3:focus-visible::before,
.p-top-gallery__a-4:focus-visible::before {
  opacity: 1;
  animation: dtlRingSway 4.6s ease-in-out infinite;
}

.p-top-gallery__a:hover::after,
.p-top-gallery__a-2:hover::after,
.p-top-gallery__a-3:hover::after,
.p-top-gallery__a-4:hover::after,
.p-top-gallery__a:focus-visible::after,
.p-top-gallery__a-2:focus-visible::after,
.p-top-gallery__a-3:focus-visible::after,
.p-top-gallery__a-4:focus-visible::after {
  opacity: 1;
  animation: dtlLightSway 3.4s ease-in-out infinite;
}

.p-top-gallery__a:active,
.p-top-gallery__a-2:active,
.p-top-gallery__a-3:active,
.p-top-gallery__a-4:active {
  box-shadow:
    inset 0 1px 0 rgba(0,0,0,0.26),
    inset 0 -1px 0 rgba(255,247,226,0.14),
    0 1px 1px rgba(0,0,0,0.20);
}

.p-top-gallery__a:hover .p-top-gallery__span-2,
.p-top-gallery__a-2:hover .p-top-gallery__span-2,
.p-top-gallery__a-3:hover .p-top-gallery__span-2,
.p-top-gallery__a-4:hover .p-top-gallery__span-2,
.p-top-gallery__a:focus-visible .p-top-gallery__span-2,
.p-top-gallery__a-2:focus-visible .p-top-gallery__span-2,
.p-top-gallery__a-3:focus-visible .p-top-gallery__span-2,
.p-top-gallery__a-4:focus-visible .p-top-gallery__span-2 {
  text-shadow: 0 0 14px rgba(255,244,214,0.34);
}

/* 「詳細はこちら」は明るい面のため、暗色ボタンとは逆の鍵で彫る:
   稜線は影側を強く、面は上から締める。半径 5px なので内側は 4px */
.c-entry__a,
.c-entry__a-2,
.c-entry__a-3,
.c-goldBtn {
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -1px 0 rgba(72,66,48,0.26),
    inset 1px 0 0 rgba(72,66,48,0.10),
    inset -1px 0 0 rgba(72,66,48,0.10),
    0 1px 2px rgba(0,0,0,0.14);
  transition: box-shadow 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.c-entry__a::before,
.c-entry__a-2::before,
.c-entry__a-3::before,
.c-goldBtn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(circle 250px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,1) 0%, rgba(255,255,255,0.40) 44%, rgba(255,255,255,0) 100%),
    linear-gradient(160deg,
      rgba(255,255,255,0.34) 0%,
      rgba(130,120,92,0.30) 30%,
      rgba(90,82,60,0.38) 52%,
      rgba(130,120,92,0.28) 74%,
      rgba(255,255,255,0.28) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 460ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.c-entry__a::after,
.c-entry__a-2::after,
.c-entry__a-3::after,
.c-goldBtn::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 4px;
  background:
    radial-gradient(circle 90px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.44) 0%, rgba(255,255,255,0) 100%),
    radial-gradient(circle 230px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 100%),
    radial-gradient(circle 360px at var(--mx, 50%) var(--my, 50%), rgba(255,252,240,0.12) 0%, rgba(255,252,240,0) 100%);
  opacity: 0;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.c-entry__a:hover,
.c-entry__a:focus-visible,
.c-entry__a-2:hover,
.c-entry__a-2:focus-visible,
.c-entry__a-3:hover,
.c-goldBtn:hover,
.c-entry__a-3:focus-visible,
.c-goldBtn:focus-visible {
  filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 -1px 0 rgba(72,66,48,0.34),
    inset 1px 0 0 rgba(72,66,48,0.16),
    inset -1px 0 0 rgba(72,66,48,0.16),
    0 2px 10px rgba(120,104,64,0.22),
    0 1px 2px rgba(0,0,0,0.16);
}

.c-entry__a:hover::before,
.c-entry__a:focus-visible::before,
.c-entry__a-2:hover::before,
.c-entry__a-2:focus-visible::before,
.c-entry__a-3:hover::before,
.c-goldBtn:hover::before,
.c-entry__a-3:focus-visible::before,
.c-goldBtn:focus-visible::before {
  opacity: 1;
  animation: dtlRingSway 4.6s ease-in-out infinite;
}

.c-entry__a:hover::after,
.c-entry__a:focus-visible::after,
.c-entry__a-2:hover::after,
.c-entry__a-2:focus-visible::after,
.c-entry__a-3:hover::after,
.c-goldBtn:hover::after,
.c-entry__a-3:focus-visible::after,
.c-goldBtn:focus-visible::after {
  opacity: 1;
  animation: dtlLightSway 3.4s ease-in-out infinite;
}

.c-entry__a:active,
.c-entry__a-2:active,
.c-entry__a-3:active,
.c-goldBtn:active {
  box-shadow:
    inset 0 1px 0 rgba(72,66,48,0.30),
    inset 0 -1px 0 rgba(255,255,255,0.40),
    0 1px 1px rgba(0,0,0,0.14);
}

.c-entry__span,
.c-entry__span-2 {
  position: relative;
  z-index: 1;
  transition: text-shadow 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.c-entry__a:hover .c-entry__span,
.c-entry__a:focus-visible .c-entry__span,
.c-entry__a-2:hover .c-entry__span,
.c-entry__a-2:focus-visible .c-entry__span,
.c-entry__a-3:hover .c-entry__span-2,
.c-entry__a-3:focus-visible .c-entry__span-2 {
  text-shadow: 0 1px 0 rgba(255,255,255,0.60);
}
@media (prefers-reduced-motion: reduce) {
.p-top-gallery__a,
.p-top-gallery__a-2,
.p-top-gallery__a-3,
.p-top-gallery__a-4,
.p-top-gallery__a::before,
.p-top-gallery__a-2::before,
.p-top-gallery__a-3::before,
.p-top-gallery__a-4::before,
.p-top-gallery__a::after,
.p-top-gallery__a-2::after,
.p-top-gallery__a-3::after,
.p-top-gallery__a-4::after,
  .c-entry__a,
  .c-entry__a::before,
  .c-entry__a::after,
  .c-entry__a-2,
  .c-entry__a-2::before,
  .c-entry__a-2::after,
  .c-entry__a-3,
  .c-goldBtn,
  .c-entry__a-3::before,
  .c-goldBtn::before,
  .c-entry__a-3::after,
  .c-goldBtn::after {
    transition: none;
  }
}



/* 灯りのゆらめき。明滅の幅は画面の4分の1に達しないため、
   3回のせん光の規定（WCAG 2.3.1）に触れない */
@keyframes dtlLightSway {
  0% { opacity: 0.84; }
  23% { opacity: 1; }
  47% { opacity: 0.89; }
  68% { opacity: 0.98; }
  100% { opacity: 0.84; }
}

/* 稜線は面より遅く、浅く息をする（金属の照りは急に変わらない） */
@keyframes dtlRingSway {
  0% { opacity: 0.88; }
  34% { opacity: 1; }
  61% { opacity: 0.93; }
  100% { opacity: 0.88; }
}
@media (prefers-reduced-motion: reduce) {
  .addrCinema__btn:hover::after,
  .addrCinema__btn:focus-visible::after,
  .p-top-gallery__a:hover::after,
  .p-top-gallery__a-2:hover::after,
  .p-top-gallery__a-3:hover::after,
  .p-top-gallery__a-4:hover::after,
  .p-top-gallery__a:focus-visible::after,
  .p-top-gallery__a-2:focus-visible::after,
  .p-top-gallery__a-3:focus-visible::after,
  .p-top-gallery__a-4:focus-visible::after,
  .c-entry__a:hover::after,
  .c-entry__a:focus-visible::after,
  .c-entry__a-2:hover::after,
  .c-entry__a-2:focus-visible::after,
  .c-entry__a-3:hover::after,
  .c-goldBtn:hover::after,
  .c-entry__a-3:focus-visible::after,
  .c-goldBtn:focus-visible::after,
  .addrCinema__btn:hover::before,
  .addrCinema__btn:focus-visible::before,
  .p-top-gallery__a:hover::before,
  .p-top-gallery__a-2:hover::before,
  .p-top-gallery__a-3:hover::before,
  .p-top-gallery__a-4:hover::before,
  .p-top-gallery__a:focus-visible::before,
  .p-top-gallery__a-2:focus-visible::before,
  .p-top-gallery__a-3:focus-visible::before,
  .p-top-gallery__a-4:focus-visible::before,
  .c-entry__a:hover::before,
  .c-entry__a:focus-visible::before,
  .c-entry__a-2:hover::before,
  .c-entry__a-2:focus-visible::before,
  .c-entry__a-3:hover::before,
  .c-goldBtn:hover::before,
  .c-entry__a-3:focus-visible::before,
  .c-goldBtn:focus-visible::before {
    animation: none;
  }
}



/* ── 画像キャプション（注釈）───────────────────────────────────────────
   入れ方はスライダー内の写真注記（.c-contents__div-3）に揃える。
   写真の右下に、1920px 設計座標で 10px・右10px/下6px */
.hasCap {
  position: relative;
}

.imgCap {
  position: absolute;
  /* 位置はスライダー注記と同じ（右10px・下6px 相当）。ただし 1920px 設計は
     zoom で縮むため、サイズと余白は倍率を打ち消して実効 11px を保つ */
  right: calc(10px * var(--stage-zi, 1));
  bottom: calc(6px * var(--stage-zi, 1));
  z-index: 6;
  margin: 0;
  max-width: 92%;
  font-size: calc(11px * var(--stage-zi, 1));
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: right;
  color: rgb(255,255,255);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* 明るい写真・地の上では黒文字＋白の光彩に切り替える（.imgCap--dark を付与） */
.imgCap--dark {
  color: rgb(32,31,29);
  text-shadow: 0 1px 4px rgba(255,255,255,0.75), 0 0 2px rgba(255,255,255,0.9);
}

/* TOP の KV（空撮）だけは画像の右下に固定。位置は他の写真の注釈と揃える */
.p-top-hero .imgCap--hero {
  left: auto;
  right: calc(10px * var(--stage-zi, 1));
  bottom: calc(6px * var(--stage-zi, 1));
  text-align: right;
}
@media (max-width: 767px) {

  .p-top-hero .imgCap--hero {
    left: auto;
    right: 10px;
    bottom: 6px;
  }
}


/* LOCATION: 自動送りのスライダーは1枚ずつではなく帯の右下にまとめて記載 */
.p-loc-strip {
  position: relative;
}

/* LOCATION のヒーローは冒頭演出を持たないため、注釈は最初から見せる */
.p-loc-hero .imgCap--hero {
  opacity: 1;
}

/* 全画面ステージの注釈は写真の版面ではなく画面の右下に来るため、
   画面右下の CV バー（330×40）が出ている間だけ帯の上へ退避させる */
.imgCap--gallery,
.addrCinema__caps .imgCap {
  transition: bottom 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* 固定 CV（画面下の横バー / 右端の縦タブ）と実際に重なった注釈だけ、




/* ── 下層コンテンツスライダー: ホバーの所作 ───────────────────────────
   触れたカードは版が起き上がり、写真がゆっくり寄る。罫は右から引かれ、
   面に淡い照りが一度だけ流れる（色は足さず、明度だけで扱う） */
.c-contents__a {
  transition: transform 720ms cubic-bezier(0.22,1,0.36,1);
}

.c-contents__div-2 {
  transition: box-shadow 720ms cubic-bezier(0.22,1,0.36,1);
}

.c-contents__div-6 {
  position: relative;
  transition: border-color 620ms cubic-bezier(0.22,1,0.36,1);
}

/* 引かれる罫（右から左へ） */
.c-contents__div-6::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 1px;
  background: rgb(11,11,11);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 720ms cubic-bezier(0.22,1,0.36,1);
}

.c-contents__div-7 {
  transition: letter-spacing 620ms cubic-bezier(0.22,1,0.36,1), color 620ms ease;
}
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .c-contents__a:hover {
    transform: translateY(-5px);
  }

  .c-contents__a:hover .c-contents__div-2 {
    box-shadow: 0 10px 26px rgba(30,26,18,0.20);
  }

  .c-contents__a:hover [class*="c-contents__slide-img"] {
    transform: scale(1.05);
  }

  .c-contents__a:hover .c-contents__div-6 {
    border-color: rgba(0,0,0,0.18);
  }

  .c-contents__a:hover .c-contents__div-6::before {
    transform: scaleX(1);
  }

  .c-contents__a:hover .c-contents__div-7 {
    letter-spacing: 0.12em;
    color: rgb(11,11,11);
  }
}


/* キーボード操作の合図はデバイスを問わず出す */
.c-contents__a:focus-visible {
  transform: translateY(-5px);
}

.c-contents__a:focus-visible .c-contents__div-2 {
  box-shadow: 0 10px 26px rgba(30,26,18,0.20);
}

.c-contents__a:focus-visible [class*="c-contents__slide-img"] {
  transform: scale(1.05);
}

.c-contents__a:focus-visible .c-contents__div-6 {
  border-color: rgba(0,0,0,0.18);
}

.c-contents__a:focus-visible .c-contents__div-6::before {
  transform: scaleX(1);
}

.c-contents__a:focus-visible .c-contents__div-7 {
  letter-spacing: 0.12em;
  color: rgb(11,11,11);
}
@media screen and (max-width: 767px) {
  .c-contents__a:hover,
  .c-contents__a:active {
    transform: none;
  }

  .c-contents__a:hover [class*="c-contents__slide-img"],
  .c-contents__a:active [class*="c-contents__slide-img"] {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-contents__a,
  .c-contents__div-2,
  .c-contents__div-6,
  .c-contents__div-6::before,
  .c-contents__div-7,
  .c-contents__a [class*="c-contents__slide-img"] {
    transition: none;
  }

  .c-contents__a:hover,
  .c-contents__a:focus-visible {
    transform: none;
  }
}


/* 注釈の書体はページ全体で統一する（規定に指定がないため Noto Serif JP） */
.caption,
.imgCap,
.c-contents__div-3,
.c-contents__div-9 {
  font-family: 'YakuHanMP', 'Noto Serif JP', serif;
  font-weight: 400;
}

.c-contents__div-3 {
  z-index: 2;
}

/* ── フォーカスリング ─────────────────────────────────────────────────
   テンプレートの既定は #4D90FE の :focus。クリック・タップでも枠が出るため、
   common.css には手を入れずサイト側で上書きする（キーボード操作時のみ表示） */
a,
button,
[tabindex="0"] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:focus,
button:focus,
[tabindex="0"]:focus,
.skipLink:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible,
.skipLink:focus-visible {
  outline: 2px solid rgba(226, 206, 158, 0.95);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(20, 18, 14, 0.45);
}
@media screen and (max-width: 767px) {

  /* SP の上端グラデ（stage の ::after）はロゴより前面に乗るため、同じ受け渡しに含める */
  .p-top-hero::after {
    opacity: calc(0.5 * var(--tg-over, 0));
  }
}


/* エントリーフローのボタン（.c-entry__a-3）と同じ寸法・書体・所作を下層ページの
   金色ボタンに与える共通クラス。挙動（照り・押し込み）は上のルール群を共有する */
.c-goldBtn {
  width: 440px;
  max-width: 100%;
  min-height: 80px;
  height: auto;
  padding: 12px 24px;
  box-sizing: border-box;
  border-radius: 5px;
  background: linear-gradient(90deg, rgb(154,153,131) 7.13%, rgb(218,215,203) 50.54%, rgb(154,153,131) 90.73%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'YakuHanMP', 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: rgb(11,11,11);
}

.c-goldBtn--block {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-goldBtn {
    width: 100%;
    height: 60px;
    font-size: 14px;
    line-height: 20px;
  }
}


/* ==========================================================================
   CV メニュー下部の企業ロゴ帯 — フッターの企業ロゴエリアに揃える
   （テンプレートの3カラム構成は使わず、ロゴ＋コピーライト／リンクの2段に）
   ========================================================================== */
.cvMenu-corporateArea__inner--footerAlign {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  max-width: 1024px;
  margin: 0 auto;
}

.cvMenu-corporateArea__inner--footerAlign .cvMenu-corporateLogo {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cvMenu-copyright {
  margin-top: 24px;
}

.cvMenu-copyright__txt {
  margin: 0;
  color: #666666;
  font-family: 'Cormorant Infant', serif;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.cvMenu-corporateNote {
  margin: 14px 0 0;
  color: #666666;
  font-family: 'YakuHanJP', 'Noto Sans JP', sans-serif;
  font-size: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .cvMenu-corporateArea__inner--footerAlign {
    gap: 28px;
  }

  .cvMenu-corporateArea__inner--footerAlign .cvMenu-corporateLogo {
    flex-wrap: wrap;
    gap: 20px;
  }

  .cvMenu-copyright {
    margin-top: 18px;
  }

  .cvMenu-copyright__txt {
    font-size: 10px;
  }
}



/* 最上級表現の注釈記号。既存の平方メートル表記（機種依存文字回避の sup）には当てない。
   規定の最小フォントサイズ 10px を下回らないよう px で指定する */
/* 平方メートルの m<sup>2</sup> など class なしの sup。ブラウザ既定（smaller）のままだと親 14〜17px で
   8〜10px になり規定の最小 10px を割るため、実効 10px の下限を置く（1920px 版面の zoom も supNote と同じ式で打ち消す） */
sup:not(.supNote) {
  font-size: max(calc(10px * var(--stage-zi, 1)), 0.65em);
}

sup.supNote {
  /* 1920px 版面は zoom（--stage-z）で縮むため、実画面で 10px を下回らないよう
     必要な authored サイズを逆算する。版面外（zoom なし）では 10px が下限 */
  font-size: calc(11px * var(--stage-zi, 1));
  vertical-align: super;
  line-height: 0;
  letter-spacing: 0;
}


/* コンテンツメニューの地色。支給テンプレートの #444444 では白文字が沈んで見えるため、
   サイトのトーン（黒テーマ）に合わせた暖かみのある黒に置き換えてコントラストを確保する */
.contentMenu__bg {
  background-color: #12110e;
}

/* コンテンツメニューは画面より縦に長くなる。テンプレートの overflow はそのまま活かしつつ、
   慣性スクロールと背面への伝播止めを補う（PC でメニュー内がスクロールできない不具合の対処。
   ホイールの引き取りは function.js 側で除外）。
   ※CVメニューは閉状態を子要素の transform 退避で作っているため、親をスクロール枠に
     してはいけない（スクロールで閉じたメニューが露出する）。必要なら中身側に付ける */
.contentMenu {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.cvMenu__content {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  sup.supNote {
    font-size: 11px;
  }
}


/* 注釈内の出典 URL はリンクにせずテキスト表記（長い URL の折り返しのみ許可） */
.caption {
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .campaignGroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .campaignCard {
    margin: 0;
  }

  .campaignCard:nth-of-type(n + 2) {
    display: block;
  }
}


/* ==========================================================================
   下層誘導ボタン — 文言が伸びたときだけ幅を足す
   4クラス（__a / __a-2 / __a-3 / __a-4）は同じ見た目のボタンなので必ず揃える。
   親が block なので width:auto では包含ブロック幅を埋めてしまう。
   内容幅で組み、min-width を下限に使う（現行の最長文言は 292px に収まる）
   ========================================================================== */

.p-top-gallery__a,
.p-top-gallery__a-2,
.p-top-gallery__a-3,
.p-top-gallery__a-4,
.addrCinema__btn {
  box-sizing: border-box;
  display: inline-flex;
  width: auto;
  min-width: 0;
  max-width: 100%;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-top-gallery__a,
  .p-top-gallery__a-2,
  .p-top-gallery__a-3,
  .p-top-gallery__a-4,
  .addrCinema__btn {
    width: auto;
    min-width: 0;
    max-width: 100%;
    padding: 0 28px;
  }
}


/* ==========================================================================
   Information — 開く中身がない1件のみの表示
   テンプレートの .noticeCard__link（開閉ボタン）と同じ組みだけを引き継ぎ、
   押せる見え方（hover 背景・＋マーク）は持たせない
   ========================================================================== */

.newsGroup .noticeCard__static {
  display: block;
  position: relative;
  padding: 16px 0 20px;
}
@media screen and (min-width: 768px) {
  .newsGroup .noticeCard__static {
    padding: 20px 0;
  }
}


/* コンテンツメニュー: 項目が奇数のとき、支給CSSは最後の項目だけを全幅にする
   （.contentMenu-pageList__item:last-of-type:nth-of-type(odd) { width:100% }）。
   その際 ＞ は行の右端に出るのに、リンク自体は文字幅のままでタップ領域の外に取り残される。
   支給ファイルは触らず、最後の項目のリンクだけ行幅に伸ばして ＞ をリンク内に収める */
.contentMenu-pageList__item:last-of-type:nth-of-type(odd) .contentMenu-pageList__link {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

/* 同じく全幅になった行の ＞ は、支給CSSでは奇数列（右 50px）のままで
   行の中ほどに残る。右列のボタンの ＞ と同じ位置（右 10px / SP は右 0）へ寄せる */
.contentMenu-pageList__item:last-of-type:nth-of-type(odd)::before {
  right: 10px;
}
@media screen and (max-width: 767px) {
  .contentMenu-pageList__item:last-of-type:nth-of-type(odd)::before {
    right: 0;
  }
}



/* ==========================================================================
   下層ページの通常レスポンシブ（.currentPage.js-fluid のページだけに効く）

   TOP は sticky を使うスクロール演出があるため 1920px 設計＋zoom のまま。
   下層ページは zoom を使わず、ここで共通ブロック（土台・ENTRY FLOW・下層誘導）を
   %・flex・clamp() の可変レイアウトへ組み替える。ページ固有のセクションは
   css/<ページ>.css 側で同じ方針にしてある。
   数値の起点は fig の 1920px 版面（例: padding 120px → clamp(64px, 6.25vw, 120px)）
   ========================================================================== */

.js-fluid .contentArea__stage,
.js-fluid .uspBand__stage,
.js-fluid #mainVisual .p-top-hero,
.js-fluid #mainVisual .p-loc-hero,
.js-fluid #mainVisual .p-acc-hero,
.js-fluid #mainVisual .p-dsn-hero,
.js-fluid #mainVisual .p-pln-hero,
.js-fluid #mainVisual .p-map-hero,
.js-fluid #mainVisual .p-pos-hero {
  width: 100%;
}

/* 注釈は zoom の打ち消しが要らなくなるので、素の px に戻す */
.js-fluid .imgCap,
.js-fluid .c-contents__div-3 {
  right: 10px;
  bottom: 6px;
  font-size: 11px;
}

/* ---- ENTRY FLOW ---- */
.js-fluid .c-entry {
  width: 100%;
  padding: clamp(64px, 6.25vw, 120px) clamp(24px, 5.63vw, 108px);
}

.js-fluid .c-entry__rise-2 {
  font-size: clamp(20px, 1.56vw, 30px);
  line-height: 1.28;
}

/* 3枚のカードは 1024px 以下で縦積みにする（横に並べると1枚が狭くなりすぎる） */
.js-fluid .c-entry__div-2 {
  gap: clamp(24px, 3.75vw, 72px);
  padding: clamp(32px, 3.59vw, 69px) 0;
}

.js-fluid .c-entry__rise-3 {
  padding: clamp(24px, 2.08vw, 40px);
}

.js-fluid .c-entry__div-4 {
  font-size: clamp(24px, 1.67vw, 32px);
  line-height: 1.22;
}

.js-fluid .c-entry__div-5 {
  font-size: clamp(17px, 1.25vw, 24px);
  line-height: 1.45;
}

.js-fluid .c-entry__div-7 {
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: 1.6;
}

.js-fluid .c-entry__a,
.js-fluid .c-entry__a-2 {
  margin: clamp(24px, 2.15vw, 41.188px) 0;
  height: clamp(60px, 4.17vw, 80px);
}

.js-fluid .c-entry__div-9 {
  font-size: clamp(15px, 1.04vw, 20px);
  line-height: 2;
}

.js-fluid .c-entry__a-3,
.js-fluid .c-goldBtn {
  width: min(440px, 100%);
  height: clamp(60px, 4.17vw, 80px);
}

.js-fluid .c-entry__span,
.js-fluid .c-entry__span-2,
.js-fluid .c-goldBtn__span {
  font-size: clamp(15px, 1.04vw, 20px);
}

/* ---- 下層誘導スライダー ---- */
.js-fluid .c-contents {
  width: 100%;
  padding: clamp(88px, 10.94vw, 210px) 0 clamp(64px, 5.99vw, 115px);
}

.js-fluid .c-contents__slider {
  width: 100%;
}

.js-fluid .c-contents__div {
  gap: clamp(32px, 4.17vw, 80px);
  padding: 0 clamp(24px, 6.25vw, 120px);
}

.js-fluid .c-contents__a,
.js-fluid .c-contents__div-2 {
  width: clamp(300px, 25vw, 480px);
}

.js-fluid .c-contents__div-2 {
  height: auto;
  aspect-ratio: 3 / 2;
}

.js-fluid .c-contents__div-5 {
  font-size: clamp(17px, 1.15vw, 22px);
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  /* ENTRY FLOW の3枚は縦積み。カード間の引出し矢印は縦向きに向き直す */
  .js-fluid .c-entry__div-2 {
    flex-direction: column;
  }

  .js-fluid .c-entry__div-6 {
    left: 50%;
    top: -34px;
    margin-left: -10px;
    transform: rotate(135deg);
  }
}
