﻿@charset "utf-8";

/*------------------------------------------------*/
/*  template ver1.01  */
/*------------------------------------------------*/
/*  templatename [--]  */
/*  update []  */
/*  ID [NT]  */
/*------------------------------------------------*/

/* ===================================
   Base Reset (Stable Edition)
=================================== */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Margin reset */
html, body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, figcaption,
blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

.sp-br {
  display: none;
}

/* Root setup */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Body base */
body {
  min-height: 100%;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /*background-color: rgba(232,223,214, 1.0);*/
  background-color: rgba(176,169,161, 1.0);
}

/* Media reset */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Form reset */
input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Button cursor */
button {
  cursor: pointer;
}

/* List style */
ul, ol {
  list-style: none;
}

/* Link reset */
a {
  text-decoration: none;
  color: inherit;
}

/* Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Prevent iOS bounce glitch inside fixed containers */
html, body {
  overscroll-behavior-y: none;
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* iOS 100vh 問題対策 */
:root {
  --vh: 1vh;
}

/* Safe area support */
body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Scrollbar jump防止 */
html {
  scrollbar-gutter: stable;
}

body {
  font-family: "Noto Serif JP", serif;
  /*font-family: "Inter", "Noto Sans JP", sans-serif;*/
  font-weight: 400;
  line-height: 1.3;
}

/* =========================
   Modal Scroll Lock
========================= */
html.is-modal-open {
  overflow: hidden;
}

/* ===============================
   header base
================================ */

header.site-header{
  position: fixed;
  top: 48px;
  right: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 500;
}

header .logo{
  width: 240px;
  position: fixed;
  top: 35px;
  left: 50%;
  transform: translateX(-50%) !important;
  z-index: 9999;
}

/* JSが body 直下へ退避したロゴを固定 */
.rc-fixed-logo{
  position: fixed;
  top: 35px;
  left: 50%;
  transform: translateX(-50%) !important;
  width: 240px;
  z-index: 9999;
}

.rc-fixed-logo img{
  width: 100%;
  display: block;
}

/* 右側ツール */
.header-tools{
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-top-gradient{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  pointer-events: none;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .45s ease,
    visibility .45s ease;
}

.headgradation .scroll-top-gradient{
  height: 350px;
  background: linear-gradient(
    to bottom,
    rgba(199, 187, 173, 1.0) 0%,
    rgba(199, 187, 173, 0.90) 35%,
    rgba(199, 187, 173, 0.55) 55%,
    rgba(199, 187, 173, 0.0) 100%
  );
}

.headbgcolor .scroll-top-gradient{
  height: 80px;
  /*background-color: rgba(199,187,173, 1.0);*/
  /* 半透明の白にするのが重要 */
  background: rgba(255, 255, 255, 0.55);

  /* すりガラス */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari対策 */

  /* 少しだけ質感を足すと高級感出る */
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.headbgcolor header.site-header .logo{
  width: 240px;
  top: 10px;
  left: 50px;
}

.headbgcolor header.site-header{
  top: 25px;
  right: 130px;
}

.headbgcolor .rc-fixed-logo{
  top: 13px;
  left: 50px;
  width: 230px;
}

.scroll-top-gradient.is-visible,
.head-always .scroll-top-gradient{
  opacity: 1;
  visibility: visible;
}

/* ==================================
   Header Background Variations
================================== */

/* A
----------------------------------
headgradation
現状仕様
---------------------------------- */


/* B
----------------------------------
headgradation + head-always
最初からグラデーション
---------------------------------- */


/* C
----------------------------------
headsolid
ベタ塗り
---------------------------------- */

.headsolid .scroll-top-gradient{

  height: 90px;

  background:
    rgba(199,187,173,1);

}


/* D
----------------------------------
headsolid + head-always
最初からベタ塗り
---------------------------------- */


/* optional glass */

.headsolid.glass .scroll-top-gradient{

  background:
    rgba(199,187,173,.82);

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

}

/* ===============================
   Language Switch（地球儀UI）
================================ */

.lang-switch{
  position: relative;
  width: 34px;
  height: 34px;
}

/* 元のselectは非表示（JS連携用に残す） */
.lang-switch select{
  display: none;
}

/* 地球儀ボタン */
.lang-switch__btn{
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.lang-switch__btn svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #000;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 言語パネル */
.lang-switch__panel{
  position: absolute;
  top: 42px;
  right: 0;

  min-width: 74px;
  padding: 8px;

  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  gap: 4px;

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

  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

/* 開いた時 */
.lang-switch.is-open .lang-switch__panel{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* 各言語ボタン */
.lang-switch__panel button{
  border: none;
  background: transparent;
  padding: 7px 12px;

  border-radius: 999px;

  font-size: 12px;
  letter-spacing: 1px;

  color: #000;
  cursor: pointer;
  text-align: center;
}

/* hover / 選択状態 */
.lang-switch__panel button:hover,
.lang-switch__panel button.is-current{
  background: rgba(0,0,0,0.08);
}

/* ===============================
   Language Switch FX（既存維持）
================================ */

.lang-ch{
  will-change: opacity, transform, filter;
}

.lang-ch.is-lang-hidden{
  display: none;
}

.lang-ch.is-lang-leave{
  opacity: 0;
  transform: translateY(6px);
  filter: blur(6px);
}

.lang-ch.is-lang-enter{
  opacity: 0;
  transform: translateY(6px);
  filter: blur(6px);
}

.lang-ch.is-lang-show{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
}

/* motion軽減 */
@media (prefers-reduced-motion: reduce){
  .lang-ch.is-lang-show{
    transition: none !important;
  }

  .lang-switch__panel{
    transition: none !important;
  }
}

/* ===============================
   地球儀の線を細く
================================ */

.lang-switch__btn svg{
  stroke-width: 1; /* ← 1.4 → 1 に変更（さらに細くなら 0.8） */
}


/* ===============================
   パネルを中央揃え（重要）
================================ */

.lang-switch__panel{
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(-6px);
}

.lang-switch.is-open .lang-switch__panel{
  transform: translateX(-50%) translateY(0);
}

/* ===============================
   Cart Button
================================ */

.cart-btn{

  width:34px;
  height:34px;

  border-radius:50%;

  border:1px solid rgba(0,0,0,0);

  background-color:rgba(255,255,255,0);
  backdrop-filter: blur(8px);

  display:block;

  background-repeat:no-repeat;
  background-position:center;
  background-size:20px;

  /* 後で画像差し替え */
  background-image:url("../images/icon_cart.svg");

  transition:transform .25s ease, border-color .25s ease;

}

/*
.cart-btn:hover{
  transform:scale(1.05);
  border-color:rgba(0,0,0,0.7);
}
*/

.cart-btn:active{
  transform:scale(0.96);
}

/* ===============================
   PJAX base transition (slide + fade)
   - current main: fade out + move down
   - next main   : fade in  + move up from bottom
================================ */

main[data-pjax-container]{
  will-change: opacity, transform;
}

/* leaving: current main fades out + moves down */
html.is-pjax-leaving main[data-pjax-container]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 380ms ease, transform 380ms ease;
}

/* entering: prepare state (invisible & slightly down) */
html.is-pjax-entering main[data-pjax-container]{
  opacity: 0;
  transform: translateY(28px);
}

/* entering: animate in */
html.is-pjax-entering main[data-pjax-container].is-pjax-show{
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

/* motion軽減 */
@media (prefers-reduced-motion: reduce){
  html.is-pjax-leaving main[data-pjax-container],
  html.is-pjax-entering main[data-pjax-container],
  html.is-pjax-entering main[data-pjax-container].is-pjax-show{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===============================
   footer base
================================ */

footer {
margin: 0px auto;
padding: 100px 0px 50px 0px;
/*background-color: rgba(232,223,214, 0.9);*/
}

footer .fooderinfo .copyright {
font-size: 11px;
text-align: center;
letter-spacing: 1.0px;
}

/* ===============================
   firstview base
================================ */
.firstview {
  width: 100%;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

.firstview .copyset {
  width: 80%;
  max-width: 1000px;
  position: absolute;

  /* 中央基準 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-align: center;
  transition: top var(--rc-op-slide-dur, 900ms) ease,
              left var(--rc-op-slide-dur, 900ms) ease;
}

.firstview .copyset p {
  width: 100%;
  font-size: clamp(16px, 1.8vw, 24px);
}

.firstview .copyset p .copy {
  width: 100%;
  max-width: 280px;
  display: inline-block;
  font-size: clamp(16px, 1.8vw, 24px);
  font-family: "Noto Serif JP", serif;
  line-height: 2.2;

  text-align: justify;
  text-justify: inter-ideograph;

  /* ここ重要 */
  text-align-last: justify;
}

/* 最終行も両端揃えにするテク */
.firstview .copyset p .copy::after{
  content:"";
  display:inline-block;
  width:100%;
}

.firstview .copyset p img {
  width: 100%;
  max-width: 300px;
  display: inline-block;
}

.firstview .copyset p .logo {
  width: 100%;
  max-width: 250px;
  display: inline-block;
  position: relative;
}

.firstview .copyset p .logo img {
  width: 100%;
  height: auto;
  display: block;
}

.firstview .copyset p .logo .linedrawing {
  transform: translateY(-100%);
  margin-bottom: -100%; /* 行間のズレ対策 */
  pointer-events: none;
}

.firstview .categoryslide {
  width: 100vw;
  height: 100svh;
  min-height: 100svh;

  display: block;
  background-color: rgba(0,0,0,0.05);
  position: absolute;
  inset: 0;

  transform: translate(0%, 0%);

  opacity: 0;
  filter: blur(18px);

  transition: opacity 1000ms ease, filter 1000ms ease;
  will-change: opacity, filter;
}
.firstview .categoryslide .slideset {
  position: relative;   /* absoluteスライドの基準 */
  width: 100%;
  height: 100%;         /* ← 親(.categoryslide)を参照 */
  overflow: hidden;     /* スライドはみ出し防止 */
}

.firstview .categoryslide .slideset .logolead {
/*
width: calc(100% - 200px);
height: calc(100% - 200px);
*/
margin: auto;
width: 100%;
height: 100%;
position: relative;
}
.firstview .categoryslide .slideset .logolead .leadinner {
width: 100%;
height: 40%;
display: flex;
align-items: flex-end;
justify-content: center;
gap: 0px 30px;
background: linear-gradient(
to top,
rgba(0, 0, 0, 0.6) 0%,
rgba(0, 0, 0, 0.4) 40%,
rgba(0, 0, 0, 0.15) 70%,
rgba(0, 0, 0, 0.0) 100%
);
position: absolute;
bottom: 0px;
left: 0px;
}
.firstview .categoryslide .slideset .logolead .leadinner p.logo {
margin-bottom: 42px;
width: 20%;
text-align: center;
}
.firstview .categoryslide .slideset .slide_block.thailandgolfresorts .logolead .leadinner p.logo {
margin-bottom: 52px;
}
.firstview .categoryslide .slideset .slide_block.tokyo .logolead .leadinner p.logo {
margin-bottom: 42px;
}
.firstview .categoryslide .slideset .slide_block.jocale .logolead .leadinner p.logo {
margin-bottom: 37px;
}
.firstview .categoryslide .slideset .slide_block.golfapparel .logolead .leadinner p.logo {
margin-bottom: 67px;
}
.firstview .categoryslide .slideset .logolead .leadinner p.logo img {
max-height: 90px;
}
.firstview .categoryslide .slideset .slide_block.tokyo .logolead .leadinner p.logo img {
margin-left: 20px;
}
.firstview .categoryslide .slideset .logolead .leadinner p.text {
margin-bottom: 50px;
width: 50%;
}
.firstview .categoryslide .slideset .logolead .leadinner p.text span {
display: block;
color: rgb(255,255,255,1.0);
font-size: 13px;
line-height: 2.0;
letter-spacing: 0.5px;
}
.firstview .categoryslide .slideset .logolead .leadinner p.link {
margin-bottom: 65px;
width: 60px;
text-align: right;
}
.circlearrow {
display:inline-grid;
place-items:center;
width:44px;              /* タップしやすい最小サイズ */
height:44px;
border:1px solid rgba(255,255,255,0.7); /* 細い線の円 */
border-radius:999px;
text-decoration:none;
cursor: pointer;
color:transparent;       /* "↓" は見せない（保険） */
position:relative;
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
}
.circlearrow::before{
content:"";
width:1px;
height:16px;
background:rgba(255,255,255,0.85);
display:block;
transform:translateY(12px);
}
.circlearrow::after{
content:"";
width:8px;
height:8px;
border-right:1px solid rgba(255,255,255,0.85);
border-bottom:1px solid rgba(255,255,255,0.85);
transform:translateY(-17px) rotate(45deg);
display:block;
}
.circlearrow:hover{
border-color:rgba(255,255,255,0.95);
}
.circlearrow:focus-visible{
outline:2px solid rgba(255,255,255,0.55);
outline-offset:3px;
}
.circlearrow:active{
transform:scale(0.98);
}

.firstview .fadeSlideshowset {
  width: calc((100vw - 200px) * 0.7);
  position: absolute;
  top: auto;
  left: 100px;
  bottom: 30px;
  z-index: 10;
}

.firstview .fadeSlideshowset .slidesettitle {
  font-size: clamp(24px, 3.47vw, 50px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
}

.firstview .fadeSlideshowset .slidesetsubtitle {
  margin: 20px 0px 50px 0px;
  font-size: clamp(18px, 2.36vw, 34px);
  font-family: "Noto Serif JP", serif;
}

.firstview .fadeSlideshowset .slidesetsubtitle.min {
  font-size: clamp(14px, 1.3vw, 20px);
}

.firstview .fadeSlideshowset .slidesetlead {
  margin-left: 10px;
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 1.8;
}

/* =========================================
   RCP Fade Slideshow (stable)
========================================= */

[data-rcp="fadeSlideshow"]{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* =========================================
   FadeSlideshow type: dynamic
   - 画像の拡大→縮小を「枠外にはみ出して」見せたい時用
   - data-fs-type="dynamic" を付ける
   - JSが .is-fs-dynamic を付与（CSSだけでも属性で効く）
========================================= */

[data-rcp="fadeSlideshow"].is-fs-dynamic,
[data-rcp="fadeSlideshow"][data-fs-type="dynamic"]{
  overflow: visible;
}

/* 親の slideset 側のクリップも解除（scrollfixcontents / firstview 共通で効かせる） */
.slideset.is-fs-dynamic{
  overflow: visible !important;
}

/* スライド要素：クロスフェード用 */
[data-rcp="fadeSlideshow"] .slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-timing-function: ease;
  z-index: 0;

  /* 追加：フェードをより安定させる */
  will-change: opacity;
  backface-visibility: hidden;
}

/* ★ 追加：入場準備（必ず opacity:0 から始める） */
[data-rcp="fadeSlideshow"] .slide.is-entering{
  opacity: 0;
  pointer-events: none;
  z-index: 1; /* 入場は下 */
}

/* 表示中（フェードイン側） */
[data-rcp="fadeSlideshow"] .slide.is-active{
  opacity: 1;
  pointer-events: auto;
  z-index: 1; /* 入場＆表示は下（退場が上） */
}

/* ★ 変更：退場（フェードアウト）は上に重ねて消す = 完全クロスフェード */
[data-rcp="fadeSlideshow"] .slide.is-leaving{
  opacity: 0;
  pointer-events: none;
  z-index: 2; /* 退場は上 */
}

/* 画像エリア：中心基準で最大トリミング */
[data-rcp="fadeSlideshow"] .image{
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* dynamic のときは .image のクリップも解除 */
[data-rcp="fadeSlideshow"].is-fs-dynamic .image,
[data-rcp="fadeSlideshow"][data-fs-type="dynamic"] .image{
  overflow: visible;
}

[data-rcp="fadeSlideshow"] .image img,
[data-rcp="fadeSlideshow"] .image video{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1.06); /* 少し拡大から */
  object-fit: cover;
  will-change: transform;
}

/* 初回の点滅防止：動画は再生開始（playing）まで隠す */
[data-rcp="fadeSlideshow"] .slide .image video{
  opacity: 0;
  transition: opacity 220ms ease;
}

/* 再生が始まったら表示 */
[data-rcp="fadeSlideshow"] .slide.is-video-ready .image video{
  opacity: 1;
}

/* 表示直後に“スッと縮小”（画像と動画で着地点を分ける） */
[data-rcp="fadeSlideshow"] .slide.is-active .image img{
  animation: rcpFsZoomOutImg 1400ms ease-out both;
}

[data-rcp="fadeSlideshow"] .slide.is-active .image video{
  animation: rcpFsZoomOutVideo 1400ms ease-out both;
}

/* 画像：1.00でOK */
@keyframes rcpFsZoomOutImg{
  from { transform: translate(-50%, -50%) scale(1.06); }
  to   { transform: translate(-50%, -50%) scale(1.00); }
}

/* 動画：黒い隙間対策で少しだけ大きめに止める（iOS対策） */
@keyframes rcpFsZoomOutVideo{
  from { transform: translate(-50%, -50%) scale(1.06); }
  to   { transform: translate(-50%, -50%) scale(1.02); }
}

/* logolead：0.5秒遅延で下からふわっと */
[data-rcp="fadeSlideshow"] .logolead{
  position: relative;
  z-index: 2;
  /*pointer-events: none; /* もしリンクをクリックさせるなら none を外す */
}

/* 中身がある場合だけ効く（無ければ無視される） */
[data-rcp="fadeSlideshow"] .logolead .leadinner{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-rcp="fadeSlideshow"] .slide.is-active .logolead .leadinner{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 500ms;
}

/* 進行バー（高さ2px、白 50% / 進行部 100%） */
[data-rcp="fadeSlideshow"] .fadeslide_bar{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255,255,255,0.5);
  z-index: 5;
  pointer-events: none;
}

[data-rcp="fadeSlideshow"] .fadeslide_bar .rcp-fs-barfill{
  width: 0%;
  height: 100%;
  background: rgba(255,255,255,1);
  transform-origin: left center;
  will-change: width;
}

/* ===============================
   FadeSlideshow Controls
================================ */

[data-rcp="fadeSlideshow"] .fadeslide_controls{
  position: absolute;
  right: 70px;
  bottom: 70px;
  z-index: 20;
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

[data-rcp="fadeSlideshow"] .fadeslide_btn{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    opacity .25s ease,
    transform .25s ease,
    border-color .25s ease,
    background-color .25s ease;
  -webkit-tap-highlight-color: transparent;
}

[data-rcp="fadeSlideshow"] .fadeslide_btn:hover{
  border-color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.16);
  transform: scale(1.03);
}

[data-rcp="fadeSlideshow"] .fadeslide_btn:active{
  transform: scale(0.96);
}

[data-rcp="fadeSlideshow"] .fadeslide_btn span{
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}

[data-rcp="fadeSlideshow"] .fadeslide_btn span::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.9);
  transform: translateY(-50%);
}

[data-rcp="fadeSlideshow"] .fadeslide_btn.is-next span::after{
  content:"";
  position:absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255,255,255,0.9);
  border-right: 1px solid rgba(255,255,255,0.9);
  transform: translateY(-50%) rotate(45deg);
}

[data-rcp="fadeSlideshow"] .fadeslide_btn.is-prev span::after{
  content:"";
  position:absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255,255,255,0.9);
  border-left: 1px solid rgba(255,255,255,0.9);
  transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 767px){
  [data-rcp="fadeSlideshow"] .fadeslide_controls{
    right: 18px;
    bottom: 24px;
    gap: 8px;
  }

  [data-rcp="fadeSlideshow"] .fadeslide_btn{
    width: 42px;
    height: 42px;
  }
}

/* motion軽減 */
@media (prefers-reduced-motion: reduce){
  [data-rcp="fadeSlideshow"] .slide{
    transition: none !important;
  }
  [data-rcp="fadeSlideshow"] .slide.is-active .image img,
  [data-rcp="fadeSlideshow"] .slide.is-active .image video{
    animation: none !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }
  [data-rcp="fadeSlideshow"] .logolead .leadinner{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.slide_block video{
  opacity:0;
  transition:opacity .3s ease;
}

.slide_block.is-video-ready video{
  opacity:1;
}

/* JSでズーム倍率を制御する場合は、既存のCSSズームアニメを無効化 */
.fadeSlideshow[data-fs-zoom] .slide.is-active .image img,
.fadeSlideshow[data-fs-zoom] .slide.is-active .image video {
  animation: none !important;
}

.fadeSlideshowset { display: none; }

/* =========================================
   RCP Infinite Slideshow (horizontal, loop)
========================================= */

.infiniteSlideshow[data-rcp="infiniteSlideshow"]{
  margin-top: 70px;
  position: relative;
  width: 100%;
  /*overflow: hidden;*/
  /* 高さは任意。必要に応じて上書きしてOK */
  height: 250px;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-viewport{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-track{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: var(--is-gap, 20px);
  will-change: transform;
  transform: translate3d(0,0,0);
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-item{
  flex: 0 0 auto;
  width: var(--is-item-w, 240px);
  height: 100%;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-item > a,
.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-item > span{
  display: block;
  width: 100%;
  height: 100%;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-item img,
.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-item video{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ★トリミング */
}

/* 任意：ポインタ周り */
.infiniteSlideshow[data-rcp="infiniteSlideshow"] a{
  text-decoration: none;
}

/* motion軽減 */
@media (prefers-reduced-motion: reduce){
  .infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-track{
    transform: translate3d(0,0,0) !important;
    transition: none !important;
  }
}

/* drag / swipe support */
.infiniteSlideshow[data-rcp="infiniteSlideshow"]{
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"].is-dragging{
  cursor: grabbing;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] img,
.infiniteSlideshow[data-rcp="infiniteSlideshow"] a{
  -webkit-user-drag: none;
  user-drag: none;
}

/* ===============================
   Infinite Slideshow Controls
================================ */

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-controls{
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn{
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition:
    transform .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    opacity .25s ease;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn.is-prev{
  left: 24px;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn.is-next{
  right: 24px;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn:hover{
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(255,255,255,1);
  background: rgba(0,0,0,.26);
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn:active{
  transform: translateY(-50%) scale(.96);
}

/* ===== arrow ===== */

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn span{
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn span::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:1px;
  background:rgba(255,255,255,.92);
  transform:translateY(-50%);
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn.is-next span::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:7px;
  height:7px;
  border-top:1px solid rgba(255,255,255,.92);
  border-right:1px solid rgba(255,255,255,.92);
  transform:translateY(-50%) rotate(45deg);
}

.infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn.is-prev span::after{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:7px;
  height:7px;
  border-top:1px solid rgba(255,255,255,.92);
  border-left:1px solid rgba(255,255,255,.92);
  transform:translateY(-50%) rotate(-45deg);
}

@media (max-width: 767px){

  .infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn{
    width:40px;
    height:40px;
  }

  .infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn.is-prev{
    left:12px;
  }

  .infiniteSlideshow[data-rcp="infiniteSlideshow"] .is-btn.is-next{
    right:12px;
  }

}

/* ===============================
   scrollfixcontents layout
================================ */

.scrollfixcontents {
  position: relative;
  width: 100%;
  height: 100%;
  /*min-height: 100svh;*/
  display: flex;
  flex-wrap: wrap;
  isolation: isolate; /* ★親を独立したスタッキングコンテキストにする（確定勝利） */
}
.scrollfixcontents.black {
  background-color: rgb(0,0,0,1.0);
}
.scrollfixcontents.black.luxury {
  background-color: rgb(35,35,35,1.0);
}
.scrollfixcontents.black.tree {
  background-color: rgb(33,12,0,1.0);
}
.scrollfixcontents.white {
  /*background-color: rgba(232,223,214, 0.9);*/
}
.scrollfixcontents.white.beige {
  background-color: rgb(232,223,214,1.0);
}

.scrollfixcontents .slideblock {
  width: 45%;
  height: 100%;
  position: sticky;
  top: 0;
  height: 100svh;
  z-index: 1;
}

.scrollfixcontents .slideblock .slideset {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.scrollfixcontents .categorynav {
  padding: 50px 50px 0px 50px;
  width: 100vw;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px 50px;
  position: sticky;
  bottom: 0px;
  box-sizing: border-box;
  z-index: 5;
  isolation: isolate; /* ★これ重要：疑似要素を内側に閉じ込める */
  transform: translateZ(0); /* ★合成レイヤー化してbackdropを安定させる */
}

/* ▼ 背景専用レイヤー */
.scrollfixcontents .categorynav::before{
  content:"";
  position:absolute;
  inset:0;

  background: rgba(255, 255, 255, 0.18); /* ★少し濃く（お好みで） */
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 65%,
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 65%,
    rgba(0,0,0,0) 100%
  );

  z-index: 0;         /* ★-1をやめる */
  pointer-events:none;
}

/* 中身は背景より上に */
.scrollfixcontents .categorynav > *{
  position: relative;
  z-index: 1;
}

/* 黒バージョン */
.scrollfixcontents .categorynav.black::before{
  background: rgba(0, 0, 0, 0.7); /* ★少し濃く（お好みで） */
  mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,0.85) 60%,
    rgba(0,0,0,0.45) 75%,
    rgba(0,0,0,0.15) 88%,
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,0.85) 60%,
    rgba(0,0,0,0.45) 75%,
    rgba(0,0,0,0.15) 88%,
    rgba(0,0,0,0) 100%
  );
}

.scrollfixcontents .categorynav .logo {
width: 180px;
text-align: center;
}
.scrollfixcontents .categorynav .logo img {
height: 65px;
display: inline-block;
}
.scrollfixcontents#sec-thailandgolfresorts .categorynav .logo img {
height: 65px;
}
.scrollfixcontents#sec-tokyo .categorynav .logo img {
height: 110px;
}
.scrollfixcontents#sec-jocale .categorynav .logo img {
height: 105px;
}
.scrollfixcontents#sec-jocale .categorynav .logo img.sp {
display: none;
}
.scrollfixcontents .categorynav .info {
width: calc(100% - 480px);
}
.scrollfixcontents .categorynav .info p {
color: rgb(255,255,255,1.0);
font-size: clamp(12px, 0.85vw, 13px);
line-height: 1.7;
letter-spacing: 0.5px;
}
.scrollfixcontents .categorynav .link {
width: 200px;
}
.scrollfixcontents .categorynav .link p a {
padding-right: 20px;
display: block;
color: rgb(255,255,255,1.0);
font-size: clamp(11px, 0.75vw, 12px);
letter-spacing: 1.8px;
line-height: 40px;
text-align: center;
text-decoration: none;
border: rgb(255,255,255,1.0) solid 1px;
box-sizing: border-box;
border-radius: 20px;
position: relative;
}
.scrollfixcontents .categorynav .link p a::after{
content:"";
width:6px;
height:6px;
border-right:1px solid rgba(255,255,255,0.85);
border-bottom:1px solid rgba(255,255,255,0.85);
transform:translateY(-2.5px) rotate(-45deg);
display:block;
position: absolute;
top: 50%;
right: 20px;
}

/* =========================================
   categorynav reveal animation
========================================= */

/* 初期は隠す（JSが is-catnav-init を付けたセクションだけ） */
.scrollfixcontents.is-catnav-init .categorynav{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

/* しきい値超えで表示（フェードアップ） */
.scrollfixcontents.is-catnav-shown .categorynav{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .scrollfixcontents.is-catnav-init .categorynav{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.scrollfixcontents .contents {
  width: 55%;
  text-align: center;
  position: relative; /* ★ */
  z-index: 2;        /* ★中段 */
}

.scrollfixcontents .backimage {
  position: sticky;
  top: 0;
  width: 55vw;               /* ← ブラウザ幅55% */
  height: 100svh;            /* 画面高さ */
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.2;
}

.scrollfixcontents .backimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 右カラムの内側を “固定背景の器” にする */
.scrollfixcontents .contents .inner {
  margin-top: -100svh;
  margin-left: auto;
  margin-right: auto;
  padding: 130px 0px 50px 0px;
  box-sizing: border-box;
  width: 80%;
  max-width: 450px;
}

.scrollfixcontents .contents .copy {
  padding: 50px 0px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 2.0;
  letter-spacing: 1.0px;
}
.scrollfixcontents .contents .copy strong {
  display: inline-block;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 2.0;
  letter-spacing: 1.0px;
  font-weight: 500;
}
.scrollfixcontents .contents .copy span {
  display: inline-block;
  font-size: clamp(12px, 1.1vw, 13px);
  line-height: 1.8;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.scrollfixcontents .contents .lead {
  padding: 10px 0px;
  font-size: clamp(13px, 1.2vw, 14px);
  line-height: 2.0;
}
.scrollfixcontents .contents .image {
  padding: 50px 0px;
  text-align: center;
}
.scrollfixcontents .contents .image.space {
  padding: 70px 0px;
}
.scrollfixcontents .contents .image.topclear {
  padding: 0px 0px 50px 0px;
}
.scrollfixcontents .contents .image img {
  display: inline-block;
}
.scrollfixcontents .contents .image.narrow img {
  width: 60%;
}
.scrollfixcontents.black .contents p {
  color: rgb(255,255,255,1.0);
  word-break: keep-all;
}

/* =========================================
   Jump FX Overlay (iOS stable / luxe)
========================================= */
.sfc-jumpfx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 99999;

  /* ★ 一瞬白フラッシュ対策：常に“薄い幕”を持つ */
  background: rgba(255,255,255,0.06);

  /* ★ iOS安定：-webkit-を必ず併用 */
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);

  /* ★ 合成レイヤー化（チラつき対策） */
  transform: translateZ(0);
  will-change: opacity, backdrop-filter, -webkit-backdrop-filter;
  backface-visibility: hidden;
}

/* 画面ズーム演出（main を軽く拡大→戻す） */
body.sfc-jump-zoom main {
  will-change: transform;
  transform: translateZ(0) scale(var(--sfc-zoom, 1.03));
}
body.sfc-jump-zoom {
  --sfc-zoom: 1.03;
}

.sfc-jumpfx.is-out {
  opacity: 1;
  backdrop-filter: blur(10px);
}

/* ===============================
   Logo (pseudo-blur fade)
================================ */

.scrollfixcontents .slideblock .rcp-sfc-logo{
  position: absolute;
  left: var(--rcp-logo-x, 10%);
  top: var(--rcp-logo-y, 10%);
  width: var(--rcp-logo-size, 30%);
  z-index: 6;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
  pointer-events: none;
}

.scrollfixcontents .slideblock .rcp-sfc-logo svg,
.scrollfixcontents .slideblock .rcp-sfc-logo img{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.18));
  opacity: 0.92;
}

.scrollfixcontents .slideblock .rcp-sfc-logo.is-in{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* motion軽減 */
@media (prefers-reduced-motion: reduce){
  .scrollfixcontents .slideblock .rcp-sfc-logo{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===============================
   products layout
================================ */

.productscontents {
  margin: 150px auto 0px auto;
  width: calc(100vw - 200px);
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  gap: 100px 100px;
}

.productscontents > div {
  width: calc((100% - 200px) / 3);
  text-align: center;
}

.productscontents .pdimage {
  margin-bottom: 20px;
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.productscontents .pdimage img,
.productscontents .pdimage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productscontents .pdtitle {
  padding: 3px 0px;
  font-size: clamp(14px, 1.0vw, 16px);
  font-weight: bold;
  line-height: 1.5;
}

.productscontents .pdspec {
  padding: 3px 0px;
  font-size: clamp(12px, 0.8vw, 15px);
  line-height: 1.5;
}

.productscontents .pdprice {
  margin-top: 15px;
  font-size: clamp(14px, 1.0vw, 16px);
  line-height: 1.5;
}

/* Products filter transition */
.productscontents.pf-leave{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms cubic-bezier(0.22,1,0.36,1), transform 520ms cubic-bezier(0.22,1,0.36,1);
}
.productscontents.pf-enter{
  opacity: 0;
  transform: translateY(12px);
}
.productscontents.pf-enter.pf-enter-active{
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms cubic-bezier(0.22,1,0.36,1), transform 720ms cubic-bezier(0.22,1,0.36,1);
}

/* =========================================================
   Product detail action area
========================================================= */

#sec-productshead .pdactionset{
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* thumbnails */
#sec-productshead .pdthumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

#sec-productshead .pdthumb{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.72);
  padding: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 320ms cubic-bezier(0.22,1,0.36,1),
    border-color 320ms cubic-bezier(0.22,1,0.36,1),
    box-shadow 320ms cubic-bezier(0.22,1,0.36,1),
    background 320ms cubic-bezier(0.22,1,0.36,1),
    opacity 320ms cubic-bezier(0.22,1,0.36,1);
  /*box-shadow: 0 8px 24px rgba(0,0,0,.04);*/
}

#sec-productshead .pdthumb:hover{
  transform: translateY(-2px);
  border-color: rgba(0,0,0,.20);
  /*box-shadow: 0 14px 30px rgba(0,0,0,.08);*/
}

#sec-productshead .pdthumb.is-active{
  border-color: rgba(0,0,0,.36);
  /*box-shadow: 0 12px 28px rgba(0,0,0,.10);*/
  background: rgba(255,255,255,.96);
}

#sec-productshead .pdthumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* buy row */
#sec-productshead .pdbuyrow{
  margin-top: 50px;
  display: flex;
  align-items: stretch;
  gap: 14px;
  flex-wrap: wrap;
}

#sec-productshead .pdqtywrap{
  display: flex;
  align-items: center;
  gap: 10px;
}

#sec-productshead .pdqtylabel{
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(0,0,0,.54);
  text-transform: uppercase;
  white-space: nowrap;
}

#sec-productshead .pdqtyselectwrap{
  position: relative;
}

#sec-productshead .pdqtyselectwrap::after{
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 1px solid rgba(0,0,0,.45);
  border-bottom: 1px solid rgba(0,0,0,.45);
  transform: rotate(45deg);
  pointer-events: none;
}

#sec-productshead .pdqtyselect{
  appearance: none;
  -webkit-appearance: none;
  min-width: 92px;
  height: 48px;
  padding: 0 38px 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.78);
  color: rgba(0,0,0,.82);
  font-size: 13px;
  letter-spacing: .08em;
  cursor: pointer;
  outline: none;
  transition:
    border-color 260ms cubic-bezier(0.22,1,0.36,1),
    box-shadow 260ms cubic-bezier(0.22,1,0.36,1),
    background 260ms cubic-bezier(0.22,1,0.36,1);
  /*box-shadow: 0 8px 24px rgba(0,0,0,.04);*/
}

#sec-productshead .pdqtyselect:hover,
#sec-productshead .pdqtyselect:focus{
  border-color: rgba(0,0,0,.22);
  background: rgba(255,255,255,.94);
  /*box-shadow: 0 12px 28px rgba(0,0,0,.08);*/
}

/* cart button */
#sec-productshead .pdcartbtn{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(0,0,0,.82);
  background: rgba(0,0,0,.86);
  color: #fff;
  min-width: 220px;
  height: 48px;
  border-radius: 999px;
  padding: 0 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 320ms cubic-bezier(0.22,1,0.36,1),
    background 320ms cubic-bezier(0.22,1,0.36,1),
    border-color 320ms cubic-bezier(0.22,1,0.36,1),
    box-shadow 320ms cubic-bezier(0.22,1,0.36,1),
    color 320ms cubic-bezier(0.22,1,0.36,1);
  /*box-shadow: 0 14px 34px rgba(0,0,0,.14);*/
}

#sec-productshead .pdcartbtn span{
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  line-height: 1;
}

#sec-productshead .pdcartbtn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.95);
  color: rgba(0,0,0,.90);
  border-color: rgba(0,0,0,.28);
  /*box-shadow: 0 16px 38px rgba(0,0,0,.10);*/
}

#sec-productshead .pdcartbtn:active{
  transform: translateY(0);
}

/* responsive */
@media (max-width: 960px){
  #sec-productshead .pdactionset{
    margin-top: 28px;
    gap: 18px;
  }

  #sec-productshead .pdthumb{
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  #sec-productshead .pdbuyrow{
    gap: 12px;
  }

  #sec-productshead .pdcartbtn{
    min-width: 200px;
  }
}

@media (max-width: 768px){
  #sec-productshead .pdthumbs{
    gap: 8px;
    position: absolute;
    top: 20px;
    left: 0px;
  }

  #sec-productshead .pdthumb{
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }

  #sec-productshead .pdbuyrow{
    flex-direction: column;
    align-items: stretch;
  }

  #sec-productshead .pdqtywrap{
    justify-content: space-between;
  }

  #sec-productshead .pdqtyselectwrap{
    width: 100%;
    max-width: 160px;
  }

  #sec-productshead .pdqtyselect{
    width: 100%;
  }

  #sec-productshead .pdcartbtn{
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   Product detail main image / crossfade / zoom
========================================================= */

#sec-productshead .pdmainimage{
  position: relative;
}

#sec-productshead .pdmainimage-stage{
  position: relative;
  overflow: hidden;

  /* フラット */
  border-radius: 0;
  background: transparent;
  box-shadow: none;

  cursor: zoom-in;
  isolation: isolate;
}

#sec-productshead .pdmainimage-stage.is-zoomed{
  cursor: zoom-out;
}

#sec-productshead .pdmainimage-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;

  /* ← 高級感の肝 */
  transition:
    opacity 900ms cubic-bezier(0.22,1,0.36,1),
    transform 1200ms cubic-bezier(0.22,1,0.36,1);

  transform: scale(1);
  transform-origin: 50% 50%;

  will-change: opacity, transform;
  pointer-events: none;
}

#sec-productshead .pdmainimage-img.is-current{
  position: relative;
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

#sec-productshead .pdmainimage-img.is-next{
  z-index: 3;
}

/* クロスフェード */
#sec-productshead .pdmainimage-stage.is-fading .pdmainimage-img.is-next{
  opacity: 1;
}

/* ズーム（ゆっくり・上質） */
#sec-productshead .pdmainimage-stage.is-zoomed .pdmainimage-img.is-current{
  transform: scale(2.25);
}

#sec-productshead .pdmainimage-stage::after{
  content: "Click to zoom";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 11px;
  border-radius: 999px;
  line-height: 1;
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

#sec-productshead .pdmainimage-stage.is-zoomed::after{
  content: "Click to close";
  opacity: .92;
}

#sec-productshead .pdmainimage-stage:hover::after{
  transform: translateY(-1px);
}

/* =========================================================
   Products tools (luxury simple)
========================================================= */
.pdtools{
  margin: 50px auto -50px auto;
  width: calc(100vw - 200px);
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

/* left: cats / right: sort */
.pdtools__cats{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.pdtools__sort{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-left: auto;
  white-space: nowrap;
}

/* ===== Checkbox (small rounded square) ===== */
.pdchk{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  user-select: none;
  cursor: pointer;
  color: rgba(0,0,0,.82);
  position: relative;
}

/* hide native */
.pdchk input{
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* custom box */
.pdchk::before{
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,.28);
  display: inline-block;
  box-sizing: border-box;
  background: transparent;
  position: relative;
  transition:
    border-color 260ms cubic-bezier(0.22,1,0.36,1),
    transform 260ms cubic-bezier(0.22,1,0.36,1);
}

/* dot indicator */
.pdchk::after{
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 5px;
  height: 5px;
  background: rgba(0,0,0,.85);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.6);
  opacity: 0;
  transition:
    opacity 220ms cubic-bezier(0.22,1,0.36,1),
    transform 220ms cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}

/* checked state */
.pdchk:has(input:checked)::after{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* hover (very subtle) */
.pdchk:hover{
  color: rgba(0,0,0,.92);
}

.pdchk:hover::before{
  border-color: rgba(0,0,0,.45);
}

/* ===== Sort buttons ===== */
.pdsort{
  appearance: none;
  border: 1px solid rgba(0,0,0,.16);
  background: transparent;
  color: rgba(0,0,0,.80);
  font-size: 12px;
  letter-spacing: .08em;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 260ms cubic-bezier(0.22,1,0.36,1),
              color 260ms cubic-bezier(0.22,1,0.36,1),
              transform 260ms cubic-bezier(0.22,1,0.36,1);
}
.pdsort:hover{
  border-color: rgba(0,0,0,.32);
  color: rgba(0,0,0,.92);
}
.pdsort.is-active{
  border-color: rgba(0,0,0,.55);
  color: rgba(0,0,0,.92);
}

/* ===== sort arrows (dir visual) ===== */
.pdsort__arrows{
  display:inline-flex;
  gap:4px;
  margin-left:8px;
  transform: translateY(-.5px);
}

.pdsort__up,
.pdsort__down{
  display:inline-block;
  opacity:.25;                 /* default faint */
  transition: opacity 240ms cubic-bezier(0.22,1,0.36,1);
}

/* when active: highlight dir */
.pdsort.is-active[data-dir="asc"]  .pdsort__up{   opacity:.95; }
.pdsort.is-active[data-dir="asc"]  .pdsort__down{ opacity:.25; }
.pdsort.is-active[data-dir="desc"] .pdsort__up{   opacity:.25; }
.pdsort.is-active[data-dir="desc"] .pdsort__down{ opacity:.95; }

/* ===== empty message ===== */
.pf-empty{
  display:none;
  margin: 0px auto;
  width: calc(100vw - 200px);
  max-width: 1400px;
  font-size: 15px;
}

.pf-empty.is-show{ display:block; }

.pf-empty.pf-enter{
  opacity: 0;
  transform: translateY(12px);
}
.pf-empty.pf-enter.pf-enter-active{
  opacity: 1;
  transform: translateY(0);
  transition: opacity 720ms cubic-bezier(0.22,1,0.36,1), transform 720ms cubic-bezier(0.22,1,0.36,1);
}

.pf-empty.pf-leave{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms cubic-bezier(0.22,1,0.36,1), transform 520ms cubic-bezier(0.22,1,0.36,1);
}

/* ===============================
   basiccontents layout
================================ */

:root{
  --prl-overlay-z: 200; /* 例：モーダルが 2000 以上なら前に出ない */
}

.basiccontents {
  margin: 150px auto 0px auto;
  width: calc(100vw - 200px);
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  gap: 0px 100px;
}
.basiccontents.products {
  margin: 150px auto 70px auto;
}

.basiccontents > div {
  width: calc((100% - 100px) / 2);
  /*background-color: rgb(0,0,0,0.05);*/
  position: relative;
}

.basiccontents.brandcategory > div {
  width: calc((100% - 200px) / 3);
}

.basiccontents .bsimgtitle {
  margin: 50px 0px 70px 0px;
  font-size: clamp(28px, 3.47vw, 50px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
  transform: translateX(-250px);
}
.basiccontents .bsimgtitle.simple {
  transform: translateX(0px);
}
.basiccontents .bsimgtitle sup{
  font-size: 0.35em !important;
  line-height: 1;
  vertical-align: super;
}

.basiccontents .bsimgtitle.modest {
  transform: translateX(-200px);
}

.basiccontents .pdtitle {
  margin: 50px 0px 30px 0px;
  font-size: clamp(18px, 2.22vw, 32px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}

.basiccontents .pdspec {
  margin: 0px 0px 10px 0px;
  font-size: clamp(14px, 1.0vw, 16px);
  line-height: 1.5;
}

.basiccontents .pdprice {
  margin: 0px 0px 50px 0px;
  font-size: clamp(14px, 1.0vw, 16px);
  line-height: 1.5;
}

.basiccontents .bstitle {
  margin-bottom: 30px;
  font-size: clamp(18px, 2.0vw, 30px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}

.basiccontents .bstitle span {
  display: block;
  font-size: clamp(16px, 1.67vw, 24px);
  line-height: 1.5;
}

.basiccontents .bslead {
  font-size: clamp(14px, 1.0vw, 16px);
  line-height: 1.8;
}
.basiccontents .bslead.lsize {
  font-size: clamp(15px, 1.2vw, 18px);
}

.basiccontents .bslead strong {
  font-size: clamp(14px, 1.0vw, 16px);
  line-height: 1.8;
}

.basiccontents .bslead strong.ls {
  margin-bottom: 10px;
  font-size: clamp(15px, 1.2vw, 18px);
  display: inline-block;
  letter-spacing: 0.5px;
}

.basiccontents .bslead strong sup {
  font-size: 9px;
  line-height: 1.8;
}

.basiccontents .bsimage p {
  position: relative;
}

.basiccontents .bsimage p img {
  width: 100%;
}

.basiccontents.reverse {
  flex-direction: row-reverse;
}

.basiccontents.reverse .bsimgtitle {
  text-align: right;
  transform: translateX(250px);
}

.basiccontents.reverse .bsimgtitle.simple {
  text-align: left;
  transform: translateX(0px);
}

.basiccontents.reverse .bsimgtitle.modest {
  transform: translateX(200px);
}

.basiccontents .thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.basiccontents .thumbnail img,
.basiccontents .thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 全面フィット（はみ出しトリミング） */
  display: block;
}

.basiccontents .thumbnailtitle {
  margin-bottom: 30px;
  font-size: clamp(18px, 2.2vw, 40px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: -1px;
}

.basiccontents .thumbnailtitle span {
  display: block;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.3;
  letter-spacing: 0px;
}

.basiccontents .thumbnaillead {
  margin-top: 30px;
  font-size: clamp(14px, 1.0vw, 15px);
  line-height: 1.8;
  text-align: center;
}

/* =========================================
   slidecontents (slideset slider)
   ========================================= */

/* 位置基準 */
.slidecontents{
  width: 100%;
  position: relative;
}

/* slidesetは1つずつ表示（JSで display 切替） */
.slidecontents .slideset{
  will-change: opacity, transform;
}

/* ナビ（右/左矢印） */
.slidecontents .sc-nav{
  position: absolute;
  top: 190px;
  left: 0;
  right: 0;
  pointer-events: none; /* ボタンだけ押せるように */
  z-index: 20;
}

.slidecontents .sc-btn{
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.0);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease, border-color .25s ease;
  -webkit-tap-highlight-color: transparent;
}

.slidecontents .sc-btn:hover{
  border-color: rgba(0,0,0,0.65);
  transform: translateY(-50%) translateX(0px) scale(1.02);
}

.slidecontents .sc-btn:active{
  transform: translateY(-50%) scale(0.98);
}

.slidecontents .sc-btn.is-hidden{
  opacity: 0;
  pointer-events: none;
}

/* 右ボタンは slideset の右側に“高級感ある余白”で配置 */
.slidecontents .sc-btn.is-next{
  right: 110px;
}

/* 左ボタン */
.slidecontents .sc-btn.is-prev{
  right: 165px;
}

/* 細い円内の矢印（線で描画） */
.slidecontents .sc-btn span{
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}

.slidecontents .sc-btn.is-next span::before,
.slidecontents .sc-btn.is-prev span::before{
  content:"";
  position:absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.65);
  transform: translateY(-50%);
}

.slidecontents .sc-btn.is-next span::after{
  content:"";
  position:absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(0,0,0,0.65);
  border-right: 1px solid rgba(0,0,0,0.65);
  transform: translateY(-50%) rotate(45deg);
}

.slidecontents .sc-btn.is-prev span::after{
  content:"";
  position:absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(0,0,0,0.65);
  border-left: 1px solid rgba(0,0,0,0.65);
  transform: translateY(-50%) rotate(-45deg);
}

/* ====== アニメーション（左右2カラムを少しズラして） ======
   要件:
   - OUT: 左slideが先に左へフェードアウト → 右slideも少し遅れて左へフェードアウト
   - 0.5秒後
   - IN : 次slidesetの左slideが少し右からフェードイン → 右slideも少し遅れて同様
*/

:root{
  --sc-out-ms: 320ms;
  --sc-in-ms: 360ms;
  --sc-gap-ms: 500ms;  /* 要望の 0.5秒 */
  --sc-stagger: 90ms;  /* 左→右のずれ */
  --sc-out-x: -26px;
  --sc-in-x:  26px;
}

/* 通常状態 */
.slidecontents .slideset .slide{
  opacity: 1;
  transform: translateX(0);
}

/* OUT (next/prev 共通で左へ抜ける) */
.slidecontents .slideset.is-leaving .slide{
  transition: opacity var(--sc-out-ms) ease, transform var(--sc-out-ms) ease;
  opacity: 0;
  transform: translateX(var(--sc-out-x));
}
.slidecontents .slideset.is-leaving .slide:nth-child(2){
  transition-delay: var(--sc-stagger);
}

/* IN（初期状態：右から少し） */
.slidecontents .slideset.is-enter-prep .slide{
  opacity: 0;
  transform: translateX(var(--sc-in-x));
}

/* IN（アニメ開始） */
.slidecontents .slideset.is-entering .slide{
  transition: opacity var(--sc-in-ms) ease, transform var(--sc-in-ms) ease;
  opacity: 1;
  transform: translateX(0);
}
.slidecontents .slideset.is-entering .slide:nth-child(2){
  transition-delay: var(--sc-stagger);
}

.slidecontents.technology .slideset .slide .bsimage p {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* 好きな比率に変更 */
  overflow: hidden;
}

/* 画像・動画のみ対象 */
.slidecontents.technology .slideset .slide .bsimage p img,
.slidecontents.technology .slideset .slide .bsimage p video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ←トリミングしてフィット */
  display: block;
}

/* =================================================
   Common Arrow Button
================================================= */

.btnarrow{
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border: 1px solid rgba(0,0,0,.16);
  background: transparent;
  color: rgba(0,0,0,.80);

  font-size: 12px;
  letter-spacing: 1.5px;

  padding: 12px 18px;
  border-radius: 999px;

  cursor: pointer;

  transition:
    border-color 260ms cubic-bezier(0.22,1,0.36,1),
    color 260ms cubic-bezier(0.22,1,0.36,1),
    transform 260ms cubic-bezier(0.22,1,0.36,1);
}

.btnarrow.space {
  margin: 30px 0px;
}

.btnarrow span{
  display: inline-block;
  color: rgba(0,0,0,.80);
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* hover */
.btnarrow:hover{
  border-color: rgba(0,0,0,.32);
  color: rgba(0,0,0,.92);
}

.btnarrow:hover span{
  color: rgba(0,0,0,.92);
}

/* arrow */
.btnarrow::after{
  content: "→";
  font-size: 13px;
  line-height: 1;
  transition: transform 260ms cubic-bezier(0.22,1,0.36,1);
}

/* hover時少し動く */
.btnarrow:hover::after{
  transform: translateX(4px);
}

/* ===============================
   Fade/Zoom (lightweight)
================================ */

/* 可視化前の初期状態 */
.zoomimage,
.fadeblurup{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--rcp-dur, 650ms) ease,
              transform var(--rcp-dur, 650ms) ease;
  will-change: opacity, transform;
}

/* 可視化で表示 */
.is-rcp-in.zoomimage,
.is-rcp-in.fadeblurup{
  opacity: 1;
  transform: translateY(0);
}

/* zoomimage 内のメディアは幅100%（必要に応じて） */
.zoomimage img,
.zoomimage video{
  width: 100%;
  height: auto;
  display: block;
}

/* zoomimage target wrapper（JSが自動で作る） */
.zoomimage .rcp-zoom-target{
  display: block;
  transform-origin: center center;
  will-change: transform;
}

/* ===============================
   Zoom behavior by mode
================================ */

/* 1) once：入ったら「拡大状態 → 通常へ縮小」(1回だけ) */
.zoomimage[data-zi-mode="once"] .rcp-zoom-target{
  transform: scale(var(--rcp-zoom-from, 1.06));
  transition: transform var(--rcp-zoom-dur, 900ms) ease-out;
}

.is-rcp-in.zoomimage[data-zi-mode="once"] .rcp-zoom-target{
  transform: scale(var(--rcp-zoom-to, 1.0));
}

/* 2) track：スクロール追従（JSが毎フレームtransformを書くのでtransitionは切る） */
.zoomimage[data-zi-mode="track"] .rcp-zoom-target{
  transition: none !important;
}

/* 3) mode無し：ズームなし（表示だけ） */
/* 何もしない（.rcp-zoom-targetにはtransformを与えない） */

/* motion軽減 */
@media (prefers-reduced-motion: reduce){
  .zoomimage,
  .fadeblurup{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .zoomimage[data-zi-mode="once"] .rcp-zoom-target{
    transition: none !important;
    transform: scale(1) !important;
  }
  .zoomimage[data-zi-mode="track"] .rcp-zoom-target{
    transform: scale(1) !important;
  }
}

/* =========================
   Modal Button
========================= */
.modalbtn{
  position: fixed;
  top: 43px;
  right: 70px;
  width: 56px;
  height: 44px;
  z-index: 9999;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.headbgcolor .modalbtn{
  top: 18px;
  right: 70px;
}

.modalbtn p{
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: flex-end;
}

.modalbtn span{
  display: block;
  height: 1px;
  border-radius: 999px;
  background: var(--menu-line, #000);
  will-change: transform, opacity;
  transform-origin: right center;
}

/* 通常時：2本線 */
.modalbtn span:nth-child(1){
  width: 38px;
}

.modalbtn span:nth-child(2){
  width: 24px;
  opacity: 0.95;
}

/* 矢印用疑似要素は通常時は非表示 */
.modalbtn:not(.is-open) span:nth-child(2)::before{
  content: none;
}

/* =========================
   CLOSE時：矢印 → 2本線
   右から 上→下 の順でフェードイン
========================= */

.modalbtn:not(.is-open) span:nth-child(1){
  animation: menuLineBackIn 0.45s ease both;
}

.modalbtn:not(.is-open) span:nth-child(2){
  animation: menuLineBackIn 0.45s ease 0.12s both;
}

@keyframes menuLineBackIn{
  0%{
    opacity: 0;
    transform: translateX(18px) scaleX(0);
  }
  100%{
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}

/* =========================
   OPEN時：即時「→」へ切替
========================= */

.modalbtn.is-open{
  --menu-line: #000;
}

.modalbtn.is-open span{
  animation: none !important;
  transition: none !important;
  transform-origin: right center;
}

/* 上ライン＝横棒 */
.modalbtn.is-open span:nth-child(1){
  width: 30px;
  transform: rotate(0deg);
  opacity: 1;
}

/* 下ライン＝矢尻 */
.modalbtn.is-open span:nth-child(2){
  width: 10px;
  position: relative;
  transform: rotate(45deg);
  top: -11px;
  right: -2px;
  opacity: 1;
}

/* 矢尻2本目 */
.modalbtn.is-open span:nth-child(2)::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 1px;
  border-radius: 999px;
  background: var(--menu-line, #000);
  transform-origin: right center;
  transform: rotate(-90deg);
}

/* =========================
   Modal Menu (RIGHT 30% panel itself)
========================= */
.modalmenu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 40vw;
  z-index: 9998;

  pointer-events: none;
  overflow: hidden;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
/*
background: #fff;
backdrop-filter: none;
-webkit-backdrop-filter: none;
*/
  transform: translateX(102%);

  /* ★ 左端を透明にフェード */

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.2) 6%,
    rgba(0,0,0,0.6) 12%,
    rgba(0,0,0,1) 18%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.2) 6%,
    rgba(0,0,0,0.6) 12%,
    rgba(0,0,0,1) 18%
  );

}

.modalmenu.is-open{
  pointer-events: auto;
}

/* 中身はパネル内スクロール */
.modalmenu .inner{
  padding: 100px 0px;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

@media (prefers-reduced-motion: reduce){
  .modalbtn span,
  .modalmenu,
  .modalmenu .inner{
    transition: none !important;
    animation: none !important;
  }
}

.modalmenu .inner .menu {
  margin: 10px 0px 10px 200px;
  font-size: clamp(16px, 1.5vw, 24px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

.modalmenu .inner .menu.minimum {
  margin-bottom: 30px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-family: "Noto Serif JP", serif;
}

.modalmenu .inner .menu span {
  display: block;
  color: rgb(0,0,0,0.4);
  font-size: clamp(11px, 0.8vw, 13px);
  /*font-family: "Inter", "Noto Sans JP", sans-serif;*/
  line-height: 1.5;
  letter-spacing: 0px;
}

.modalmenu .inner .information {
  margin: 100px 50px 10px 200px;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.5px;
}

.modalmenu .inner .information p {
  margin-top: 5px;
  font-size: clamp(12px, 0.8vw, 14px);
  line-height: 1.5;
  letter-spacing: -0.5px;
}

.modalmenu .inner .information p strong {
  margin-bottom: 30px;
  display: block;
  letter-spacing: 0.5px;
}

.modalmenu .inner .information p a {
  margin-bottom: 10px;
  display: inline-block;
  font-size: clamp(12px, 0.9vw, 14px);
  letter-spacing: 0.5px;
}

.modalmenu .inner .information p a span {
  display: block;
  font-size: clamp(12px, 0.9vw, 14px);
  letter-spacing: 0.5px;
}






/* ===================================
   Breakpoints
=================================== */

/* bp : 〜1200 */
@media (max-width:1200px) {

/* =========================
   Modal Menu (RIGHT 60% panel itself)
========================= */
.modalmenu{
  width: 60vw;
}

/* ===============================
   basiccontents layout
================================ */

.basiccontents .bsimgtitle {
  transform: translateX(-170px);
}

.basiccontents .bsimgtitle.modest {
  transform: translateX(-120px);
}

.basiccontents.reverse .bsimgtitle {
  transform: translateX(170px);
}

.basiccontents.reverse .bsimgtitle.modest {
  transform: translateX(120px);
}

}

/* bp : 〜900 */
@media (max-width:900px) {

/* ===============================
   basiccontents layout
================================ */

.basiccontents {
  margin: 150px auto 0px auto;
  width: calc(100vw - 140px);
  gap: 0px 70px;
}
.basiccontents.products {
  margin: 150px auto 70px auto;
}

.basiccontents > div {
  width: calc((100% - 70px) / 2);
  /*background-color: rgb(0,0,0,0.05);*/
}

.basiccontents.brandcategory > div {
  width: calc((100% - 140px) / 3);
}

.basiccontents .bsimgtitle {
  transform: translateX(-130px);
}

.basiccontents .bsimgtitle.modest {
  transform: translateX(-90px);
}

.basiccontents.reverse .bsimgtitle {
  transform: translateX(130px);
}

.basiccontents.reverse .bsimgtitle.modest {
  transform: translateX(90px);
}

/* =========================
   Modal Menu (RIGHT 60% panel itself)
========================= */
.modalmenu{
  width: 80vw;
}

/* ===============================
   products layout
================================ */

.productscontents {
  width: calc(100vw - 140px);
  gap: 70px 70px;
}

.productscontents > div {
  width: calc((100% - 140px) / 3);
}

}

/* bp : 〜768 */
@media (max-width:768px) {

/* ===============================
   header base
================================ */

header .logo{
  width: 180px;
  transform: translateX(0%) !important;
  top: 40px;
  left: 50px;
}
.rc-fixed-logo{
  width: 180px;
  transform: translateX(0%) !important;
  top: 40px;
  left: 50px;
}

/* ===============================
   firstview base
================================ */

.firstview .copyset p img {
  max-width: 200px;
}

.firstview .copyset p .logo {
  max-width: 150px;
}

.firstview .fadeSlideshowset .slidesetlead {
  margin-left: 0px;
}

/* ===============================
   basiccontents layout
================================ */

.basiccontents {
  margin: 150px auto 0px auto;
  width: calc(100vw - 200px);
  gap: 0px 100px;
  flex-wrap: wrap;
}
.basiccontents.products {
  margin: 150px auto 70px auto;
}
.basiccontents.up {
  margin: 100px auto 0px auto;
}

.basiccontents > div {
  width: calc(100%);
}
.basiccontents > div.down {
  margin-top: 50px;
}

.basiccontents.brandcategory > div {
  width: calc((100% - 200px) / 3);
}

.basiccontents .bsimgtitle {
  margin-top: 30px;
  margin-bottom: 50px;
  transform: translateX(0px);
}

.basiccontents .bsimgtitle.modest {
  transform: translateX(0px);
}

.basiccontents.reverse .bsimgtitle {
  transform: translateX(0px);
}

.basiccontents.reverse .bsimgtitle.modest {
  transform: translateX(0px);
}

[data-prl-text-clone="1"].prl-disable-sp {
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
}

.basiccontents .thumbnailtitle {
  text-align: center;
}

.basiccontents .thumbnail {
  margin: 0px auto;
  width: 60%;
  min-width: 200px;
}

.basiccontents .pdtitle {
  margin: 150px 0px 30px 0px;
}

/* =========================================
   RCP Infinite Slideshow (horizontal, loop)
========================================= */

.infiniteSlideshow[data-rcp="infiniteSlideshow"]{
  margin-top: 50px;
}

/* =========================================
   slidecontents (slideset slider)
   ========================================= */

/* ナビ（右/左矢印） */
.slidecontents .sc-nav{
  top: 80cqw;
}

/* ===============================
   products layout
================================ */

.productscontents {
  width: calc(100vw - 100px);
  gap: 100px 100px;
}

.productscontents > div {
  width: calc((100% - 100px) / 2);
}

/* =========================================================
   Products tools (luxury simple)
========================================================= */
.pdtools{
  margin: 50px auto -50px auto;
  width: calc(100vw - 100px);
  gap: 5px 0px;
  flex-wrap: wrap;
}

/* left: cats / right: sort */
.pdtools__cats{
  width: 100%;
  gap: 5px 0px;
}
.pdtools__series{
  width: 100%;
}
.pdtools__sort{
  width: 100%;
}

}

/* bp : 〜640 */
@media (max-width:640px) {

/* ===============================
   header base
================================ */

header.site-header{
  position: fixed;
  top: 30px;
  right: 100px;
}

header .logo{
  width: 150px;
  top: 30px;
  left: 30px;
}

/* JSが body 直下へ退避したロゴを固定 */
.rc-fixed-logo{
  position: fixed;
  top: 30px;
  left: 30px;
  width: 150px;
}

/* =========================
   Modal Button
========================= */
.modalbtn{
  top: 25px;
  right: 35px;
}

/* ===============================
   firstview base
================================ */

.firstview .fadeSlideshowset {
  width: calc((100vw - 100px) * 0.8);
  top: 25%;
  left: 50px;
}

.firstview .categoryslide {
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  inset: 0;
  bottom: auto;
  right: auto;
}

/* ===============================
   basiccontents layout
================================ */

.basiccontents {
  margin: 150px auto 0px auto;
  width: calc(100vw - 100px);
  gap: 0px 50px;
}

/* =========================================
   slidecontents (slideset slider)
   ========================================= */

/* ナビ（右/左矢印） */
.slidecontents .sc-nav{
  top: 95cqw;
  right: 0px;
}

.slidecontents .sc-btn.is-prev {
  right: 105px;
}
.slidecontents .sc-btn.is-next {
  right: 50px;
}

/* ===============================
   products layout
================================ */

.productscontents {
  width: calc(100vw - 70px);
  gap: 70px 70px;
}

.productscontents > div {
  width: calc((100% - 70px) / 2);
}

}

/* bp : 〜480 */
@media (max-width:480px) {

.sp-br {
  display: inline;
}

:root {
  --rc-loader-size: 60px;
}

/* ===============================
   header base
================================ */

header .logo{
  width: 140px;
}

/* JSが body 直下へ退避したロゴを固定 */
.rc-fixed-logo{
  width: 140px;
}

/* =========================================
   RCP Infinite Slideshow (horizontal, loop)
========================================= */

.infiniteSlideshow[data-rcp="infiniteSlideshow"]{
  margin-top: 50px;
}

/* =========================
   Modal Menu (RIGHT 90% panel itself)
========================= */
.modalmenu{
  width: 90vw;
}

.modalmenu .inner .menu {
  margin: 10px 0px 10px 100px;
}

.modalmenu .inner .information {
  margin: 100px 50px 10px 100px;
}

/* ===============================
   basiccontents layout
================================ */

.basiccontents.products {
  margin: 150px auto 0px auto;
}

.basiccontents .bsimgtitle {
  font-size: 20px;
}

[data-prl-text-clone="1"].prl-disable-engineered {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* ===============================
   products layout
================================ */

.productscontents {
  width: calc(100vw - 50px);
  gap: 50px 50px;
}

.productscontents > div {
  width: calc((100% - 50px) / 2);
}

/* ===============================
   footer base
================================ */

footer .fooderinfo .copyright {
font-size: 9px;
}

}



#svg-mask{
  width: 100%;
  margin: 0 auto;
}

/* 初期は“止めておく”（ここ重要） */
#mask-path{
  fill: none;
  stroke: #ffffff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: none;
  will-change: stroke-dashoffset;
}

/* JSで class を付けたら再生 */
#svg-mask.is-drawing #mask-path{
  animation: draw 15s ease forwards;
}

@keyframes draw{
  to{ stroke-dashoffset: 0; }
}







/* =========================================================
   Preview Background Switcher START
   ※プレビュー用の一時機能
   ※削除時はこのブロックごと削除
========================================================= */

/* typeA */
html.rc-preview-bg-a body{
  background: rgba(176,169,161, 1.0) !important;
}
html.rc-precover.rc-preview-bg-a::before{
  background: rgba(176,169,161, 1.0) !important;
}

/* typeB */
html.rc-preview-bg-b body{
  background: rgba(230,218,205, 1.0) !important;
}
html.rc-precover.rc-preview-bg-b::before{
  background: rgba(230,218,205, 1.0) !important;
}

/* typeC */
html.rc-preview-bg-c body{
  background: rgba(243,237,226, 1.0) !important;
}
html.rc-precover.rc-preview-bg-c::before{
  background: rgba(243,237,226, 1.0) !important;
}

/* custom */
html.rc-preview-bg-custom body{
  background: var(--rc-preview-bg-custom, rgba(176,169,161, 1.0)) !important;
}
html.rc-precover.rc-preview-bg-custom::before{
  background: var(--rc-preview-bg-custom, rgba(176,169,161, 1.0)) !important;
}

/* panel */
#rcPreviewBgPanel{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(92vw, 520px);
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

#rcPreviewBgPanel.is-show{
  display: flex;
}

#rcPreviewBgPanel button{
  appearance: none;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.82);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

#rcPreviewBgPanel button:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,.22);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

#rcPreviewBgPanel button.is-active{
  background: rgba(0,0,0,.86);
  color: #fff;
  border-color: rgba(0,0,0,.86);
}

#rcPreviewBgPanel .rc-preview-bg-divider{
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,.10);
  margin: 0 2px;
}

#rcPreviewBgPanel .rc-preview-bg-color-wrap{
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 2px;
}

#rcPreviewBgPanel .rc-preview-bg-color-label{
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
  color: rgba(0,0,0,.62);
  white-space: nowrap;
}

#rcPreviewBgColorPicker{
  appearance: none;
  -webkit-appearance: none;
  width: 42px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

#rcPreviewBgColorPicker::-webkit-color-swatch-wrapper{
  padding: 0;
}

#rcPreviewBgColorPicker::-webkit-color-swatch{
  border: none;
  border-radius: 999px;
}

#rcPreviewBgColorPicker::-moz-color-swatch{
  border: none;
  border-radius: 999px;
}

@media (max-width: 768px){
  #rcPreviewBgPanel{
    right: 12px;
    bottom: 12px;
    gap: 6px;
    padding: 10px;
    max-width: calc(100vw - 24px);
  }

  #rcPreviewBgPanel button{
    font-size: 10px;
    padding: 8px 10px;
  }

  #rcPreviewBgPanel .rc-preview-bg-divider{
    display: none;
  }

  #rcPreviewBgPanel .rc-preview-bg-color-wrap{
    width: 100%;
    justify-content: flex-start;
    padding-top: 2px;
  }
}

/* =========================================================
   Preview Background Switcher END
========================================================= */


/* ===============================
   Header color switch
================================ */

.site-header,
.rc-fixed-logo,
.lang-switch__btn svg,
.cart-btn{
  transition:
    filter .45s ease,
    stroke .45s ease,
    opacity .45s ease;
}


/* white */

html.fs-header-white .lang-switch__btn svg{
  stroke:#fff;
}

html.fs-header-white .cart-btn{
  filter: invert(1);
}


/* black */

html.fs-header-black .lang-switch__btn svg{
  stroke:#000;
}

html.fs-header-black .cart-btn{
  filter: invert(0);
}

/* ===============================
   Header fixed black when scrolled
================================ */

html.is-header-fixed-black .lang-switch__btn svg{
  stroke: #000 !important;
}

html.is-header-fixed-black .cart-btn{
  filter: invert(0) !important;
}

/* ===============================
   Modal Button color sync
   - top slide: fs-header-white / fs-header-black
   - scroll: is-header-fixed-black
================================ */

.modalbtn span{
  transition:
    background-color .45s ease,
    opacity .45s ease,
    transform .45s ease;
}

/* トップスライド：白指定 */
html.fs-header-white:not(.is-header-fixed-black) .modalbtn span{
  background-color: #fff !important;
}

/* トップスライド：黒指定 */
html.fs-header-black:not(.is-header-fixed-black) .modalbtn span{
  background-color: #000 !important;
}

/* スクロール後：黒固定 */
html.is-header-fixed-black .modalbtn span{
  background-color: #000 !important;
}

/* ===================================
   Modal menu open → force black
   ※ top slide colorより強くする
=================================== */

html.is-modalmenu-open .modalbtn,
html.is-modalmenu-open .modalbtn.is-open{
  --menu-line: #000 !important;
}

html.is-modalmenu-open.fs-header-white:not(.is-header-fixed-black) .modalbtn span,
html.is-modalmenu-open.fs-header-black:not(.is-header-fixed-black) .modalbtn span,
html.is-modalmenu-open.is-header-fixed-black .modalbtn span,
html.is-modalmenu-open .modalbtn.is-open span{
  background: #000 !important;
  background-color: #000 !important;
}

html.is-modalmenu-open.fs-header-white:not(.is-header-fixed-black) .modalbtn span:nth-child(2)::before,
html.is-modalmenu-open.fs-header-black:not(.is-header-fixed-black) .modalbtn span:nth-child(2)::before,
html.is-modalmenu-open.is-header-fixed-black .modalbtn span:nth-child(2)::before,
html.is-modalmenu-open .modalbtn.is-open span:nth-child(2)::before{
  background: #000 !important;
  background-color: #000 !important;
}


/* ===============================
   Brand Category Full Panels
================================ */

.brandcategory-full{
  width: 100%;
  background: #000;
  margin-top: 180px;
}

.brandcategory-panel{
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  isolation: isolate;
}

.brandcategory-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.brandcategory-bg::after{
  content:"";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.48) 36%,
      rgba(0,0,0,0.12) 70%,
      rgba(0,0,0,0.28) 100%
    );
  z-index: 1;
}

.brandcategory-panel.is-reverse{
  justify-content: flex-end;
}

.brandcategory-panel.is-reverse .brandcategory-bg::after{
  background:
    linear-gradient(
      to left,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.48) 36%,
      rgba(0,0,0,0.12) 70%,
      rgba(0,0,0,0.28) 100%
    );
}

.brandcategory-bg img{
  width:100%;
  height:100%;
  object-fit:cover;

  transform:
    translate3d(0,var(--bc-parallax,0px),0)
    scale(1.08);

  will-change:transform;
}

.brandcategory-text{
  position: relative;
  z-index: 5;
  width: min(560px, 80vw);
  margin-left: 9vw;
  color: #fff;
}

.brandcategory-panel.is-reverse .brandcategory-text{
  margin-left: 0;
  margin-right: 9vw;
}

.brandcategory-label{
  margin-bottom: 18px;
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.22em;
}

.brandcategory-title{
  font-size: clamp(24px, 4vw, 62px);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.brandcategory-lead{
  margin-top: 34px;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 2.1;
  letter-spacing: 0.08em;
}

/* =========================================
   Brand Category Button
========================================= */

.brandcategory-more{
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  height: 52px;
  padding: 0 28px;

  border: 1px solid rgba(255,255,255,.85);
  border-radius: 999px;

  color: #fff;
  text-decoration: none;

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

  transition:
    transform .35s ease,
    background-color .35s ease,
    border-color .35s ease;
}

.brandcategory-more span{
  position: relative;
  padding-right: 24px;

  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* 矢印 */

.brandcategory-more span::after{
  content:"";

  position:absolute;
  right:0;
  top:50%;

  width:7px;
  height:7px;

  border-top:1px solid rgba(255,255,255,.9);
  border-right:1px solid rgba(255,255,255,.9);

  transform:translateY(-50%) rotate(45deg);

  transition:transform .35s ease;
}

/* hover */

.brandcategory-more:hover{
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.brandcategory-more:hover span::after{
  transform: translateY(-50%) translateX(3px) rotate(45deg);
}

/* mobile */

@media (max-width: 767px){

  .brandcategory-more{
    min-width: 190px;
    height: 46px;
    padding: 0 22px;
  }

}

@media (max-width: 767px){
  .brandcategory-panel,
  .brandcategory-panel.is-reverse{
    min-height: 86svh;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .brandcategory-bg::after,
  .brandcategory-panel.is-reverse .brandcategory-bg::after{
    background:
      linear-gradient(
        to top,
        rgba(0,0,0,0.76) 0%,
        rgba(0,0,0,0.52) 38%,
        rgba(0,0,0,0.08) 72%,
        rgba(0,0,0,0.12) 100%
      );
  }

  .brandcategory-text,
  .brandcategory-panel.is-reverse .brandcategory-text{
    width: calc(100vw - 48px);
    margin: 0 24px 54px;
  }

  .brandcategory-title{
    font-size: clamp(36px, 12vw, 58px);
  }

  .brandcategory-lead{
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.9;
  }
}

/* ===============================
   Modal button opening sync
================================ */

/* オープニング中は非表示 */
body.is-op-locked .modalbtn{
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
}

/* オープニング解除後に、ロゴ・言語・カートと同じように表示 */
body:not(.is-op-locked) .modalbtn{
  opacity: 1;
  filter: blur(0);
  transition:
    opacity 950ms ease,
    filter 950ms ease;
}




/* =========================================================
   Global Hover Actions
   - luxury / minimal hover effects
   - append only
========================================================= */

@media (hover: hover) and (pointer: fine){

  /* -------------------------------
     Common clickable base
  -------------------------------- */

  a,
  button{
    transition:
      opacity .35s ease,
      transform .35s ease,
      color .35s ease,
      border-color .35s ease,
      background-color .35s ease,
      filter .35s ease;
  }

  /* -------------------------------
     Header icons
  -------------------------------- */

  .lang-switch__btn:hover,
  .cart-btn:hover,
  .modalbtn:hover{
    opacity: .72;
    transform: translateY(-1px);
  }

  /* -------------------------------
     Modal menu links
  -------------------------------- */

  .modalmenu .menu a{
    transition:
      opacity .45s ease,
      letter-spacing .45s ease,
      transform .45s ease;
  }

  .modalmenu .menu a:hover{
    opacity: .62;
    letter-spacing: .04em;
    transform: translateX(4px);
  }

  .modalmenu .information a{
    position: relative;
    transition:
      opacity .35s ease,
      color .35s ease;
  }

  .modalmenu .information a:hover{
    opacity: .55;
  }

  /* -------------------------------
     Text links with underline motion
  -------------------------------- */

  .information a,
  footer a,
  .pdtools a,
  .basiccontents a:not(.brandcategory-more):not(.btnarrow),
  .productscontents a{
    position: relative;
  }

  .information a::after,
  footer a::after,
  .pdtools a::after,
  .basiccontents a:not(.brandcategory-more):not(.btnarrow)::after,
  .productscontents a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:100%;
    height:1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .42s cubic-bezier(0.22,1,0.36,1);
    opacity:.45;
    pointer-events:none;
  }

  .information a:hover::after,
  footer a:hover::after,
  .pdtools a:hover::after,
  .basiccontents a:not(.brandcategory-more):not(.btnarrow):hover::after,
  .productscontents a:hover::after{
    transform: scaleX(1);
    transform-origin: left center;
  }

  /* -------------------------------
     Image links
  -------------------------------- */

  .productscontents .pdimage,
  .basiccontents .thumbnail,
  .infiniteSlideshow .is-item,
  .brandcategory-bg{
    overflow: hidden;
  }

  .productscontents a img,
  .basiccontents a img,
  .infiniteSlideshow a img{
    transition:
      transform .85s cubic-bezier(0.22,1,0.36,1),
      filter .85s cubic-bezier(0.22,1,0.36,1),
      opacity .85s cubic-bezier(0.22,1,0.36,1);
    will-change: transform, filter;
  }

  .productscontents a:hover img,
  .basiccontents a:hover img,
  .infiniteSlideshow a:hover img{
    transform: scale(1.035);
    filter: brightness(.94);
  }

  /* -------------------------------
     Product cards
  -------------------------------- */

  .productscontents > div{
    transition:
      transform .55s cubic-bezier(0.22,1,0.36,1),
      opacity .55s cubic-bezier(0.22,1,0.36,1);
  }

  .productscontents > div:hover{
    transform: translateY(-4px);
  }

  .productscontents > div:hover .pdtitle{
    opacity: .72;
  }

  /* -------------------------------
     Rounded buttons / arrow buttons
  -------------------------------- */

  .btnarrow,
  .brandcategory-more,
  .scrollfixcontents .categorynav .link p a,
  #sec-productshead .pdcartbtn,
  .pdsort,
  .pdthumb,
  .fadeslide_btn,
  .is-btn{
    transition:
      transform .35s cubic-bezier(0.22,1,0.36,1),
      opacity .35s ease,
      color .35s ease,
      border-color .35s ease,
      background-color .35s ease,
      filter .35s ease;
  }

  .btnarrow:hover,
  .brandcategory-more:hover,
  .scrollfixcontents .categorynav .link p a:hover,
  #sec-productshead .pdcartbtn:hover,
  .pdsort:hover,
  .pdthumb:hover{
    transform: translateY(-2px);
  }

  /* -------------------------------
     Brand category
  -------------------------------- */

  .brandcategory-more:hover{
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,1);
  }

  .brandcategory-more:hover span::after{
    transform: translateY(-50%) translateX(4px) rotate(45deg);
  }

  .brandcategory-panel:hover .brandcategory-bg img{
    filter: brightness(.92);
  }

  .brandcategory-bg img{
    transition:
      transform .9s cubic-bezier(0.22,1,0.36,1),
      filter .9s cubic-bezier(0.22,1,0.36,1);
  }

  /* -------------------------------
     Form / filter controls
  -------------------------------- */

  .pdchk,
  .pdqtyselect,
  .lang-switch__panel button{
    transition:
      opacity .3s ease,
      color .3s ease,
      border-color .3s ease,
      background-color .3s ease,
      transform .3s ease;
  }

  .pdchk:hover{
    opacity:.72;
  }

  .pdqtyselect:hover,
  .lang-switch__panel button:hover{
    transform: translateY(-1px);
  }

}

/* motion軽減 */
@media (prefers-reduced-motion: reduce){
  a,
  button,
  img,
  .productscontents > div,
  .brandcategory-bg img{
    transition: none !important;
    transform: none !important;
  }
}


/* ==================================
   Header Preview Pattern
   head-always only：black fixed
================================== */

/* B / D の時だけ、スライド連動を無視して黒固定 */
body.head-always .lang-switch__btn svg{
  stroke:#000 !important;
}

body.head-always .modalbtn span{
  background:#000 !important;
  background-color:#000 !important;
}

body.head-always .cart-btn{
  filter:brightness(0) !important;
}

body.head-always header.site-header .logo img,
body.head-always .rc-fixed-logo img{
  filter:brightness(0) !important;
}

/* ==================================
   head-always：header parts force black
   ※ slideshow color sync より強くする
================================== */

html.fs-header-white body.head-always .modalbtn span,
html.fs-header-black body.head-always .modalbtn span,
body.head-always .modalbtn span{
  background:#000 !important;
  background-color:#000 !important;
  transition:none !important;
}

html.fs-header-white body.head-always .lang-switch__btn svg,
html.fs-header-black body.head-always .lang-switch__btn svg,
body.head-always .lang-switch__btn svg{
  stroke:#000 !important;
  transition:none !important;
}

html.fs-header-white body.head-always .cart-btn,
html.fs-header-black body.head-always .cart-btn,
body.head-always .cart-btn{
  filter:invert(0) !important;
  transition:none !important;
}

body.head-always header.site-header .logo img,
body.head-always .rc-fixed-logo img{
  opacity:1 !important;
  filter:none !important;
  transition:none !important;
}

/* head-always：2本ラインを完全黒固定 */
html.fs-header-white:not(.is-header-fixed-black) body.head-always .modalbtn span,
html.fs-header-black:not(.is-header-fixed-black) body.head-always .modalbtn span,
html.is-header-fixed-black body.head-always .modalbtn span,
body.head-always .modalbtn span{
  background:#000 !important;
  background-color:#000 !important;
  transition:none !important;
}

body.head-always .rc-fixed-logo img,
body.head-always header.site-header .logo img{
  opacity:1 !important;
  filter:none !important;
  transition:none !important;
}


/* ==================================
   Solid Header Position
   C：scroll後だけ上へ
   D：最初から上へ
================================== */

/* ==================================
   Solid Header Position FIX
================================== */

/* C：移動速度を完全統一 */
body.headsolid:not(.head-always) .header-tools,
body.headsolid:not(.head-always) .rc-fixed-logo,
body.headsolid:not(.head-always) .modalbtn{
  transition:
    transform .65s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
/* 移動中に子要素側のtransitionが干渉しないようにする */
body.headsolid:not(.head-always) .header-tools *,
body.headsolid:not(.head-always) .rc-fixed-logo *,
body.headsolid:not(.head-always) .modalbtn *{
  transition-duration: .65s !important;
}

/* C：スクロール後 */
html.is-header-fixed-black body.headsolid:not(.head-always) .header-tools,
html.is-header-fixed-black body.headsolid:not(.head-always) .modalbtn{
  transform: translateY(-18px) !important;
}

html.is-header-fixed-black body.headsolid:not(.head-always) .rc-fixed-logo{
  transform: translateX(-50%) translateY(-27px) !important;
}

/* D：最初から上位置 */
body.headsolid.head-always header.site-header{
  top: 30px;
}

body.headsolid.head-always .rc-fixed-logo{
  top: 8px;
}

body.headsolid.head-always .modalbtn{
  top: 25px;
}


/* ==================================
   Preview Mobile Message
================================== */

.preview-mobile-message{
    display:none;
}

@media (max-width:1000px){

    body{
        overflow:hidden;
    }

    main,
    header,
    footer,
    .modalbtn,
    .modalmenu,
    .scroll-top-gradient{
        display:none !important;
    }

    .preview-mobile-message{
        position:fixed;
        inset:0;
        display:flex;
        align-items:center;
        justify-content:center;
        background:#f5f1ec;
        z-index:999999;
        text-align:center;
        padding:40px;
    }

    .preview-mobile-message-inner{
        max-width:420px;
    }

    .preview-mobile-message .en{
        font-size:28px;
        letter-spacing:.12em;
        margin-bottom:28px;
        font-family:"Noto Serif JP",serif;
    }

    .preview-mobile-message .jp{
        font-size:15px;
        line-height:2;
        margin-bottom:18px;
    }

    .preview-mobile-message .en2{
        font-size:13px;
        color:#666;
        line-height:1.8;
        letter-spacing:.05em;
    }

}