/*===== 基本設定 =====*/
:root {
--color-primary: #1E2A44/*#555555*/;
--color-secondary: #C6B7A3/*#8B6D5E*/;
--color-accent: #F5F4F0/*#DCC4B8*/;
--color-frame: #CCCCCC;	
--color-text: #444444;
--color-back: #E8D5CC;
--color-light: #F5F5F5;
--color-white: #ffffff;
--color-black: #000000;
--color-sand: #B4A27B;	
--color-pink: #D8A7A7;
--color-mint: #A8C3A3;
--color-blue: #A7C6D8;
--color-green: #3E6C68/*#88B175*/;
--color-attn: #D59B09;
--color-sale: #A24C5A/*#C30002*/;
--color-line: #3D863D;	
--color-rakuten: #BF0000;
--color-yahoo: #FF0033;
--transition: all 0.4s ease;
--font-serif: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
--font-sans: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", "Meiryo", sans-serif;
}

/*===== ベース設定 =====*/
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  letter-spacing: 0.03em;
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-accent);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* グローバルにリセット
figure { margin: 0; } */

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  opacity: 0.8;
}

/*===== タイポグラフィ =====*/
h1, h2, h4, h3, h5, h6 {
  font-family: 'Noto Serif JP', Georgia, 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HGS明朝E', 'MS P明朝', serif;
  line-height: 1.4}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 500}

h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  font-weight: 300}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: 4rem;
  margin-left: 1rem;
  padding-top: 5rem;
  font-weight: 500}

h4 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 4rem;
  font-weight: 400}

h5 {
  font-size: clamp(0.8rem, 2.5vw, 1.25rem);
  margin-bottom: 0.9rem;
  font-weight: 300}

@media (min-width: 1280px) {
    h3 {padding-top: 25rem;
        margin-left: 15rem;
        margin-bottom: 12rem;}
    h4 {
        margin-left: 15rem;
    }
}
/*===== コンテナ =====*/
.container {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: auto;
}

/* ===========================
   ヘッダー・ヒーロー
   =========================== */
/* HERO 本体 */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
  z-index: 1;
}

.hero-spacer {
  height: 150vh;
}

.lp-video-wrapper {
  height: 100vh; /* ← 動画を入れる枠に高さを作る！ */
  display: flex;
  align-items: flex-end; /* ← コンテナ内で video を下揃え */
  justify-content: center; /* 中央寄せ */
}
/* ▼ 動画を固定背景にする（最重要） */
.lp-video-wrapper video {
  position: fixed;
  top: 0;
  left: 50%;                    /* ★ 中央基準にする */
  transform: translateX(-50%);  /* ★ 左右中央にピッタリ配置 */
  width: 100%;
  object-fit: contain;
  object-position: center;      /* ★ cover時の中心基準 */
  z-index: 0;
}

.hero.is-dimmed .lp-video-wrapper video {
  filter: brightness(60%);
  transition: 0.6s ease;
}
/* ▼ フェードアニメーション */
.fade-start {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.fade-in {
  opacity: 1;
}
.fade-out {
  opacity: 0;
}

/* ロゴ */
.hero__brand {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 450px;
  width: 60%;
  z-index: 3;
  pointer-events: none;
  transition: 0.6s ease;
}

/* Scroll cue */
.hero__scrollcue {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  background: none;
  z-index: 3;
  color: white;
  font-size: clamp(1rem, 2vw, 1.5rem);
}

/* コピー（スクロールで浮き出る） */
.hero__copy {
  position: fixed;      /* ← これが超重要！ */
  top: 10vh;
  left: 0%;
  width: 100%;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(20px);
  color: var(--color-white);
  transition: var(--transition);
  z-index: 3;
  font-family: var(--font-serif);
  pointer-events: none; /* ← クリックを妨げないため */
}

.hero__copy.is-shown {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1280px) {
  .hero__copy {
    top: 18vh;       /* ← PCでの位置 */
    width: 34vw;     /* 和文の幅に合わせて調整 */
  }
.lp-video-wrapper video {
  top: -45% !important;
  width: 40%;
  max-width: 40%;       /* ★ 横幅の上限を40%に */
  object-fit: contain;
}
/* -------------------------------
   ① 左右の余白に敷くぼかし動画
--------------------------------*/
.hero-bg-blur {
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 100vh;
    transform: translateX(-50%);
    object-fit: cover;
    filter: blur(25px) brightness(0.7);
    z-index: 0;
}
}

/* スマホ・タブレットではぼかし動画を消す */
@media (max-width: 1279px) {
  .hero-bg-blur {
    display: none !important;
  }
}

/* 下のメインコンテンツ */
.main-content {
  position: relative;
  z-index: 1;
  background: none; /* ここは消しておく */
}

@media (min-width: 1280px) {
    .featured{
    max-width: 1080px;
    margin: 0 auto;
    }
} 

/* 画面いっぱいに広がる背景レイヤー */
.main-content::before {
  content: "";
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0 と同じ */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;          /* ビューポート幅いっぱい */
  background-color: var(--color-accent);
  z-index: -1;           /* テキストの“背面”に敷く */
} 
#featured { 
	padding: 6rem 0 0;
	}

/* ===========================
   横スクロールスライダー
   =========================== */
.featured__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 横に並べる・スワイプ可能 */
.featured__scroller {
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
	  /* スクロールバー非表示 */
  scrollbar-width: none;      /* Firefox */
}

.featured__scroller::-webkit-scrollbar {
  display: none;              /* Chrome / Safari / Edge */	
}

/* スライド1枚1枚 */
.featured__slide {
  min-width: 100%;
  scroll-snap-align: center;
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
}

/* 画像を横いっぱい */
.featured__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   矢印ボタン
   =========================== */
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: none;
  font-size: 1.7rem;
  color: var(--color-white);
  cursor: pointer;
  z-index: 10;
  padding: 0.1em 0.5em;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.slider__arrow:hover {
  background: rgba(255,255,255,0.8);
}

.slider__arrow.prev {
  left: 1rem;
}

.slider__arrow.next {
  right: 1rem;
}

.featured__scroller {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.featured__scroller::-webkit-scrollbar {
  display: none;
}

.featured__slide {
  min-width: 100%;
  scroll-snap-align: start;
}


/* PC版だけ2カラムにする */
@media (min-width: 1280px) {
  .featured__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
	z-index: 6;
    gap: 4rem;
    margin: 5rem auto 15rem;
  }  

  /* 偶数段だけ左右反転 */
  .featured__block:nth-of-type(even) {
    direction: rtl;
  }
  .featured__block:nth-of-type(even) > * {
    direction: ltr;
  }
 .featured__detail{
     margin-top: 50%;
    }
  .featured__desc{
	  margin-top: 2.5rem;
	}
}

/* ===========================
   ドット
   =========================== */
.slider__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: var(--color-secondary);
}


.featured__detail {
  position: relative;
  padding: 3rem 0.7rem 2.5rem;
  margin-bottom: 15rem;
}

.featured__name {
  position: absolute;  /* ← これが無いと right:0 が効かない */
  top: -0.5rem;        /* 商品名を少し上に置くため（元の設計） */
  right: 1.5rem;
  margin-bottom: 1.4rem;
  width: 100%;
  font-family: var(--font-serif);
  text-align: right;
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  opacity: 0.7;
}

.featured__desc {
  font-family: var(--font-serif);
  margin-bottom: 1.3rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
}

.featured__more {
  position: absolute;
  right: 1.5rem;      /* ★ 商品名と同じ基準位置 */
  bottom: 1.5rem;
  text-decoration: none;
  color: var(--color-sand);
  font-weight: bold;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}

.featured__more:hover {
  opacity: 0.7;
}


/* ===========================
   Others
   =========================== */
#others {
  padding: 0rem 1rem;
  margin-bottom: 15rem;
}

.others {
  list-style: none;
  padding: 20px;
  margin: 0;
  z-index: 6;
  display: grid;
  gap: 10rem;
}

.others__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.others__media img {
  width: 100%;
  height: 100%;          /* ← これが重要！ */
  object-fit: cover;     /* ← 自然に中央トリミング */
  object-position: center;
  display: block;
}

.others__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.others__more {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.2rem;
}
@media (min-width: 1280px) {
  .others {
    max-width: 1080px;
    margin: 5rem auto 20rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0rem;
  }

  .others__media {
    position: relative;
    width: 100%;
    margin: 0;
  }

  .others__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .others__more {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ===========================
   Footer
   ===========================
footer {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
}

footer img {
  width: 160px;
  margin-bottom: 1rem;
} */

/* ===========================
   Animation / Fade
   =========================== */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Media Queries
   =========================== */
@media (min-width: 768px) {
  .featured__slide { flex: 0 0 45%; }
}

@media (min-width: 1280px) {
  .hero__copy { left: 10%; }

}


/*===== PC/タブレット・マージン =====*/
.mb-10 {
  margin-bottom: 10px}

.mb-20 {
  margin-bottom: 20px}

.mb-30 {
  margin-bottom: 30px}

.mb-40 {
  margin-bottom: 40px}

.mb-50 {
  margin-bottom: 50px}

.mb-75 {
  margin-bottom: 75px}

.mb-100 {
  margin-bottom: 100px}

.mb-125 {
  margin-bottom: 125px}

.mb-150 {
  margin-bottom: 150px}

.mb-200 {
  margin-bottom: 200px}
/*===== =====*/

/*===== マイナス・マージン =====*/
.mb-n10 {
  margin-bottom: -10px}

.mb-n20 {
  margin-bottom: -20px}

.mb-n30 {
  margin-bottom: -30px}

.mb-n40 {
  margin-bottom: -40px}

.mb-n50 {
  margin-bottom: -50px}
/*===== =====*/

/*===== レスポンシブ対応 =====*/
@media (max-width: 767px) {

/*===== スマホ マージン =====*/
.mb-10 {
  margin-bottom: 0.625rem}

.mb-20 {
  margin-bottom: 1.25rem}

.mb-30 {
  margin-bottom: 1.875rem}

.mb-40 {
  margin-bottom: 2.5rem}

.mb-50 {
  margin-bottom: 3.125rem}

.mb-75 {
  margin-bottom: 4.6875rem}

.mb-100 {
  margin-bottom: 6.25rem}

.mb-125 {
  margin-bottom: 7.8125rem}

.mb-150 {
  margin-bottom: 9.375rem}

.mb-200 {
  margin-bottom: 12.5rem}
}
/*===== =====*/


/*===== ブランド・バナー =====*/
.feature-banner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  z-index: 6;
  text-align: center;
  box-sizing: border-box}

.brand-banner-scroll-wrap {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: var(--color-flame)}

.brand-banner-scroll {
  display: flex;
  gap: 0.8rem; 
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
  -ms-overflow-style: none}

.brand-banner-scroll::-webkit-scrollbar {
  display: none}

.brand-banner-scroll li {
  flex: 0 0 auto;
  width: 25%; 
  height: 100%}

.brand-banner-scroll img {
  display: block;
  width: 80%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 2 / 1;
  margin-left: 10px}

.brand-banner-scroll-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 125px;
  height: 100%;
  background: linear-gradient(to left,  var(--color-light), transparent);
  pointer-events: none;
  z-index: 2}

.brand-banner-white-top {
  width: 100%;
  height: 10px;
  background-color: var(--color-flame); 
  position: relative;
  z-index: 3}

.brand-banner-scroll.dragging {
  cursor: grabbing}
.brand-banner-scroll {
  cursor: grab}

@media (max-width: 767px) {
  .brand-banner-scroll li {
    flex: 0 0 25%; 
    min-width: 25%}

  .brand-banner-scroll {
    gap: 0.2rem; 
    padding: 0}
}

/* PCレイアウト以上で背景だけ横いっぱい */
@media (min-width: 1280px) {
  .feature-banner {
    position: relative;
    width: 100%;
    overflow: visible; /* はみ出し防止 */
  }

  .feature-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;       /* 背景だけ画面幅いっぱい */
    height: 100%;
    transform: translateX(-50%); /* 左右中央に合わせる */
    background-color: #ffffff;   /* ←バナー背景色(必要なら変更) */
    z-index: -1;
  }
}

/* ===== 問い合わせ・お買い物ガイド・TOP戻る共通円形ボタン ===== */
.circle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.2s ease, background-color 0.3s ease;
  z-index: 9999;
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  line-height: normal !important;
  vertical-align: baseline !important;
}

/* ▼ TOPへ戻るボタン */
.up-arrow {
    font-size: 18px;
}

.text {
     font-size: 10px; 
}

/* ===== TOPに戻る（左下共通） ===== */
.back-to-top {
  left: max(15px, env(safe-area-inset-left));
  background-color: rgba(245, 244, 240,0.8);
  border: none;
}

.hero__copy .eyebrow {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.2em;
}

.hero__copy .kicker {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  margin-bottom: 3rem;
}

.body-small {
  margin-left: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-family: var(--font-serif);
}
