@charset "UTF-8";

/* ---------- 共通 ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* キーボード操作時のフォーカスを明示（アクセシビリティ対応） */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid #A99689;
  outline-offset: 2px;
}


/* 店名（h1）スタイル */
.mainVisual__title {
  font-family: "Crimson Text", serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.16em; /* 文字間隔調整用 */
  line-height: 1.2;
  margin: 0 0 2rem 0;
  color: #ffffff;
}

/* 見出しスタイル */
h2.h2B,
.shopInfo--text h3 {
  font-family: "Crimson Text", serif;
  font-weight: 600;
}

/* カテゴリーimg上テキスト */
div.p-features-list__caption span {
  font-family: "Crimson Text", serif;
  font-weight: 400;
}

/* リード文（p）スタイル */
.mainVisual__lead {
  font-family: "Crimson Text", serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.92); /* 少しだけ透明度を下げて主従関係を強調 */
}

 
.slider .bx-wrapper {
  margin-bottom: 114px;
}

.container section { 
  margin-bottom: 160px;
}

/* モバイル幅（スマホ表示時）のサイズ調整 */
@media screen and (max-width: 767px) {
  .mainVisual__content {
    left: 8%;
    bottom: 24%;
  }

  .mainVisual__title {
    font-size: 3rem;
    margin-bottom: 0.6rem;
  }

  .mainVisual__lead {
    font-size: 0.8rem;
  }
 
}

@media (max-width: 767px) {
  .container section {
    margin-bottom: 114px;
  }
}


/* ================================================================
   ▼ ヘッダー：ヒーロー上の透過オーバーレイ
   SP（<-1089px）：#hdr全体（hdrTop+hdrMiddle）を固定・透過オーバーレイ
   PC（1090px->）：hdrTopは通常スクロール（固定・透過を解除）
                   hdrMiddleのみ固定表示・透過
                   hdrMiddleのtop位置はJS側でhdrTopの高さ分オフセット
   ================================================================ */

/* ---- SP：#hdr全体を固定 ---- */
#hdr.hdr--heroOverlay {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
}

#hdr.hdr--heroOverlay:not(.is-heroPast) .hdrTop,
#hdr.hdr--heroOverlay:not(.is-heroPast) .hdrMiddle {
  background: transparent;
}

#hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrTop,
#hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrTop a,
#hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrInfo,
#hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrMiddle a {
  color: #fff;
}

/* ドロップダウン内＋!importantで確実に上書き（SP用） */
#hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hasChildren > ul a {
  color: #3A2B1D !important;
}

#hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) #menu-icon span {
  background-color: #fff;
}

#hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .iconNav__cart img,
#hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .iconNav .hasChildren > a img {
  filter: brightness(0) invert(1);
}

.hdrTop {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

/* アイコン間の余白調整 */
.iconNav img {
  margin: 0 8px;
}

/* 会員アイコン */
.iconNav .hasChildren img {
  margin: 0 4px 0 8px;
}

/* main_02.cssの上書き用 */
.hdrMiddle {
  background: transparent;
}

.hdrMiddle .hdrInner {
  height: 60px;
  padding: 0;
}

@media (max-width: 1199px) {
    .hdrMiddle .hdrInner {
      height: 40px;
      padding: 0 16px;
    }
}


/* ---- PC：hdrTopは通常スクロール、hdrMiddleのみ固定 ---- */
@media (min-width: 1090px) {
  #hdr.hdr--heroOverlay {
    position: static;
    inset: auto;
    z-index: auto;
  }

  /* hdrTop */
  /* #hdr.hdr--heroOverlay .hdrTop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  } */

  /* 変更後 */
#hdr.hdr--heroOverlay:not(.no-hero) .hdrTop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
/* 
#hdr.hdr--heroOverlay.no-hero .hdrTop {
  position: static;
} */

/* 変更後：ヒーロー無しページのPC幅では.hdrTopも固定表示にする */
#hdr.hdr--heroOverlay.no-hero {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
}

#hdr.hdr--heroOverlay.no-hero .hdrTop {
  position: static;
}

#hdr.hdr--heroOverlay.no-hero .hdrMiddle.hdrMiddle--logoLeft {
  position: static;
  top: auto;
}



  /* ヒーロー上（is-heroPast無し時）透過・白文字 */
  #hdr.hdr--heroOverlay:not(.is-heroPast) .hdrTop {
    background: transparent !important;
  }
  #hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrTop,
  #hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrTop a,
  #hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrTop .hdrInfo {
    color: #fff;
  }

  /* is-heroPast後 通常背景・通常文字色 */
  #hdr.hdr--heroOverlay.is-heroPast .hdrTop {
    background: #F9F5F1 !important;
  }
  #hdr.hdr--heroOverlay.is-heroPast .hdrTop a,
  #hdr.hdr--heroOverlay.is-heroPast .hdrTop .hdrInfo {
    color: #3A2B1D;
  }

  /* hdrMiddle固定 */
  #hdr.hdr--heroOverlay .hdrMiddle.hdrMiddle--logoLeft {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--hdrTopOffset, 0px);
    z-index: 9999;
  }

  #hdr.hdr--heroOverlay:not(.is-heroPast) .hdrMiddle.hdrMiddle--logoLeft {
    background: transparent;
  }

  #hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrMiddle.hdrMiddle--logoLeft a,
  #hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrMiddle.hdrMiddle--logoLeft .hdrInfo {
    color: #fff;
  }
  
  /* ドロップダウン内＋!importantで確実に上書き */
  #hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrMiddle.hdrMiddle--logoLeft .hasChildren > ul a {
    color: #3A2B1D !important;
  }

  #hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrMiddle.hdrMiddle--logoLeft .iconNav__cart img,
  #hdr.hdr--heroOverlay.whiteColor--yet:not(.is-heroPast) .hdrMiddle.hdrMiddle--logoLeft .iconNav .hasChildren > a img {
    filter: brightness(0) invert(1);
  }
}

@media (min-width: 1090px) {
  #hdr.hdr--heroOverlay:not(.is-heroPast) .hdrMiddle.hdrMiddle--logoLeft,
  #hdr.hdr--heroOverlay:not(.is-heroPast) .hdrMiddle.hdrMiddle--logoLeft .hdrInner {
    background: transparent !important;
  }
}


/* オーバーレイテキスト枠の配置設定 */
.mainVisual__content {
  position: absolute;
  left: 16%;
  bottom: 28%;
  z-index: 2;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}


/* ================================================================
   ▼  ハンバーガーメニュー：PC/SP共通表示
   ================================================================ */

/* button要素化に伴うリセット */
#menu-icon,
.bottomNav .menuToggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.iconNav > ul > li > #menu-icon {
  width: 24px;
  height: 18px;
  display: block;
  margin: 3px;
}

@media (min-width: 1090px) {
  #menu-icon span {
    background-color: #3A2B1D;
  }
}

/* ================================================================
   ▼ カテゴリー一覧：ボタン＋テキスト
   ================================================================ */
.catNav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  max-width: 1080px;
  margin: 0 auto;
}

.catNav__item {
  list-style: none;
}

.catNav__item a {
  display: block;
  text-align: center;
  font-family: "Crimson Text", serif;
  font-size: 16px;
  font-weight: 500;
  color: #3A2B1D;
  border: 1px solid #A99689;
  padding: 10px 4px;
  transition: 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catNav__item a:hover {
  background: #A99689;
  color: #fff;
}

@media (max-width: 480px) {
  .catNav__list {
    gap: 6px;
  }

  .catNav__item a {
    padding: 8px 2px;
    font-size: 14px;
  }
}

@media (min-width: 1090px) {
  #ftr .fNav--typeC {
    padding-top: 0;
    padding-bottom: 40px;
  }
}

/* ================================================================
   ▼ カテゴリー・商品スライダー
   ================================================================ */

section .container .contentsSlider .slick-prev {
  left: -10px;
}

section .container .contentsSlider .slick-next {
  right: -10px;
}

@media (max-width: 1090px) {
  section .container .contentsSlider .slick-prev,
  section .container .contentsSlider .slick-next {
    display: none !important;
  }
}

/* SALEセクション */
.itemPrice del.itemPrice--default {
  margin-right: 8px;
}

.itemPrice ins.itemPrice--sale {
  text-decoration: none;
  font-weight: 500;
}

/* お気に入りボタン調整 */
.fav-item button {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ================================================================
   ▼ Rankingスライダー：シンプルスタイル（数字は画像の外・上部）
   ================================================================ */
.itemList--rankingSimple .itemList__rankNum {
  font-family: "Crimson Text", serif;
  font-size: 16px;
  font-weight: 500;
  color: #A99689;
  text-align: center;
  margin-bottom: 10px !important;
}

.itemList--rankingSimple .fav-item {
  top: 44px;
}

@media (max-width: 767px) {
  .itemList--rankingSimple .itemList__rankNum {
    font-size: 16px;
  }
}

.itemPrice--sale {
  color: #b32a2a;
}

ins.itemPrice--sale {
    background-color: transparent;
}


/* ================================================================
   ▼ ライン装飾
   ================================================================ */

hr.lineDeco {
  border: 0;
  margin: 40px auto;
  width: calc(100% - 32px); /* 調整用（他要素と統一） */
  height: 40px;
  background-size: auto 40px;
  background-repeat: repeat-x;
  background-position: left;
  background-image: url("https://file003.shop-pro.jp/PA01497/005/img/line-doc.png");
}

@supports (background-image: image-set(url("data:image/webp;base64,UklGRg==") 1x)) {
  hr.lineDeco {
    background-image: image-set(
      url("https://file003.shop-pro.jp/PA01497/005/img/line-doc.png") 1x
    );
  }
}

@media (max-width: 767px) {
  hr.lineDeco {
    height: 40px;
  }
}

/* ================================================================
   ▼ オリジナルギフトセクション
   ヒーロービジュアルと同じ「1枚画像＋テキストオーバーレイ＋clamp()可変」方式。
   ★実画像の実寸（幅×高さ）判明後、下のvw係数を計算[式：(高さ÷幅)×100]
   ================================================================ */
.giftSec {
  position: relative;
  overflow: hidden;
}

.giftSec__imgWrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(320px, 45vw, 700px); /* ★暫定値。実寸判明後に係数を調整 */
}

.giftSec__imgWrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 30% center; /* バッグ本体（右寄り）が切れすぎないよう調整 */
}

.giftSec__text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 420px;
  z-index: 2;
}

.giftSec__label {
  font-family: "Crimson Text", serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #3A2B1D;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.giftSec__text .giftSec__label {
  line-height: 56px;
}

.giftSec__label span {
  font-family: serif;
  letter-spacing: 0px;
}

.giftSec__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.giftSec__divider::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #A99689;
}

.giftSec__divider i {
  color: #A99689;
  font-size: 18px;
}

.giftSec__text .h2C {
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.giftSec__text p {
  line-height: 30px;
}

.giftSec__price {
  margin: 24px 0;
  padding: 20px 24px;
  background: #ffffffab;
  border: 1px solid #dfdfdf;
  max-width: 320px;
}

.giftSec__priceLabel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px !important;
  color: #3A2B1D;
}

.giftSec__priceLabel i {
  color: #A99689;
}

.giftSec__priceValue {
  font-size: 28px;
  font-weight: 500;
  color: #A99689;
  margin-bottom: 12px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid #A99689;
}

.giftSec__priceValue small {
  font-size: 16px;
  margin-left: 2px;
}

.giftSec__priceNote {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .giftSec {
    margin-bottom: -24px;
  }

  .giftSec__imgWrap {
    height: clamp(420px, 130vw, 780px); /* ★暫定値。実寸判明後に係数を調整 */
  }

  .giftSec__text {
    top: 48%;
    left: 6%;
    right: 6%;
    max-width: none;
  }

  .giftSec__text .h2C {
    margin-bottom: 8rem;
  }

  .giftSec__text p {
    line-height: 22px;
  }
  
  .giftSec__text .giftSec__label{
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 80px;
  }

  .giftSec__divider {
    display: none;
  }
  
  .giftSec__text  .giftSec_sublabel {
    margin: 0 auto 24px -16px;
    width: calc(100% + 32px);
  }
  
  .giftSec__price {
    max-width: calc(100% + 32px);
    margin: 16px -16px;
    padding: 16px;
  }

  .giftSec__priceValue {
    font-size: 22px;
  }
}

/* ================================================================
   ▼ 店舗情報（リニューアル予定）
   ================================================================ */
section.highlight {
      padding: 80px 16px 16px;
}
@media (max-width: 767px) {
      .highlight {
        padding: 32px 16px 16px;
    }
}



/* ================================================================
   ▼  ヒーロービジュアル：画面幅に応じた可変トリミング
   ================================================================ */
.mainVisual.mainVisual--hero {
  height: auto;
}
/* 
.mainVisual--hero .mainVisual__inner,
.mainVisual--hero .free {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(320px, 56.25vw, 1080px);
}

.mainVisual.mainVisual--hero .mainVisual__inner img,
.mainVisual.mainVisual--hero .free img {
  display: block;
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  margin: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
} */

.mainVisual.mainVisual--hero .mainVisual__inner,
.mainVisual.mainVisual--hero .free {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(400px, 56.25vw, 1080px); /* PC：16:9基準で可変 */
}

@media screen and (max-width: 750px) {
  .mainVisual.mainVisual--hero .mainVisual__inner,
  .mainVisual.mainVisual--hero .free {
    height: clamp(480px, 150vw, 1125px); /* SP：2:3基準で可変 */
  }
}

.mainVisual.mainVisual--hero .mainVisual__inner img,
.mainVisual.mainVisual--hero .free img {
  display: block;
  position: static;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  margin: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media screen and (max-width: 750px) {
  .mainVisual.mainVisual--hero .mainVisual__inner img,
  .mainVisual.mainVisual--hero .free img {
    object-position: 62% center;
  }
}

/* ================================================================
   ▼  会員アイコン ドロップダウン
   ================================================================ */
.iconNav [class*="hasChildren"] > ul.open {
  background: #ffffffab;
}

.iconNav .hasChildren > ul {
  /* right: 0; */
  top: 70%;
  /* width: 160px; */
  max-width: 90vw;
}

@media (max-width: 1090px) {
    .iconNav [class*="hasChildren"] > ul.open {
        top: 100%;
        max-width: 100%;
    }
}


/* ================================================================
   ▼ フッター固定ナビ（bottomNav）：全画面幅で常時表示
   ================================================================ */
#spBottomNav {
  display: block !important; /* main_02.cssの .spOnly {display:none!important;} 上書き */
}

@media (min-width: 1090px) {
  .bottomNav ul {
    gap: 40px;
  }

  .bottomNav ul li {
    max-width: none;
    flex: 0 0 auto;
    margin: 0;
  }
}
