@charset "utf-8";


html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*以上がリセットCSS*/


/* ───────── COMMON ───────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  min-height: 100%;
  color: #fff;
  background: #34343d;                /* 画面背景色 */
  line-height: 1.6;
  font-family: "Times New Roman", serif;
  overflow-x:hidden; 
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* ───────── GLOBAL NAVIGATION ───────── */
/* ─────────────────────────────────────────
   1) 基本レイアウトを grid に変更（ロゴ | メニュー | SNS）
   2) gap / フォント / アイコンを clamp で可変
   ───────────────────────────────────────── */
.global-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 95px;
  z-index: 10;
  background: transparent;
  transition: background-color 0.3s ease;
}
.global-nav.fixed-top {
  position: fixed;
  top: 0;
  bottom: auto;
  background: rgba(30,30,30,0.4);
}

/* ★ grid化：auto | 1fr | auto で中央だけ伸縮可能に */
.nav__container{
  width: 95%;                     /* 中央寄せと最大幅の上限 */
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(12px, 0.2vw, 20px);
  display: grid;
  grid-template-columns: auto 1fr auto;        /* 左:ロゴ / 中:メニュー / 右:SNS */
  align-items: center;
  column-gap: clamp(8px, 1.4vw, 24px);
}

/* ロゴサイズも可変で少しだけ縮む余地 */
.nav__logo{
  display: flex;
  align-items: center;
  height: 100%;
}
.nav__logo img{
  height: clamp(32px, 2.6vw, 40px);            /* 40px→タブレットで〜32pxまで縮む */
}

/* メニューは中央で “縮んで耐える” 役 */
.nav__menu{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 5vw, 90px);               /* px固定→clampへ（超ワイドで広がりすぎ防止） */
  font-size: clamp(14px, 1.15vw, 18px);        /* 可読性維持しつつ可変 */
  letter-spacing: 0.08em;
  flex-wrap: nowrap;
  min-width: 0;                                /* ← 中央カラムをちゃんと縮められるキー */
}
.nav__menu li{ position: relative; }
.nav__menu a:hover{ color:#7d7d7d; }

/* SNSは右端・可変アイコンで圧縮余地を確保 */
.nav__sns{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 45px);
  height: 100%;
  margin-top: 0;                                /* 押し出しの原因になる上下余白は抑える */
}
.nav__sns img{
  height: clamp(16px, 1.6vw, 20px);            /* アイコンも少しだけ縮む */
}

/* アンダーラインはそのまま（必要なら幅もclampで可変に可） */
.nav__underline{
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: calc(100% - 5%);                       /* ＝左右2.5%パディング相当 */
  max-width: min(1400px, 95%);
  height: 1px;
  background: #ffffff;
  transform: translateX(-50%);
}
.global-nav.fixed-top .nav__underline{ display:none; }

/* ▼▼ ギャラリー矢印／ドロップダウン（既存のまま） ▼▼ */
.nav__gallery > a{ display:inline-flex; align-items:center; }
.nav__gallery > a::after{
  content:'';
  display:inline-block;
  margin-left:6px;
  border-left:4px solid transparent;
  border-right:4px solid transparent;
  border-top:4px solid currentColor;
  transition:transform .4s;
}
.nav__gallery:hover > a::after{ transform: rotate(180deg); }
.global-nav.fixed-top .nav__gallery > a::after{ transform: rotate(180deg); }
.global-nav.fixed-top .nav__gallery:hover > a::after{ transform: rotate(0deg); }

.global-nav:not(.fixed-top) .nav__dropdown{
  bottom: calc(100% + 10px);
  top:auto;
  width:auto;                                   /* typoの s を修正 */
}
.global-nav.fixed-top .nav__dropdown{
  top: calc(100% + 10px);
  bottom:auto;
}
.nav__dropdown{
  position:absolute;
  top: calc(100% + 10px);
  left:50%;
  transform: translateX(-50%);
  display:none;
  flex-direction:column;
  gap:10px;
  padding:0 10px;
  background: rgba(30,30,30,0.4);
  border-radius:1px;
  font-size: clamp(14px, 1.1vw, 18px);          /* ドロップも可変 */
  white-space: nowrap;
}
.nav__dropdown.open{ display:flex; }
.nav__dropdown a{
  position:relative;
  display:block;
  padding:10px 0;
  text-align:center;
  z-index:1;
  color:#fff;
}
.nav__dropdown a::before{
  content:"";
  position:absolute; inset:0 -10px;
  background:#606074;
  opacity:0; transition:opacity .15s ease;
  border-radius:1px; z-index:-1;
}
.nav__dropdown a:hover::before{ opacity:1; }
.nav__dropdown a:hover{ background:#606074; color:#fff; }

/* ─────────────────────────────────────────
   1280px〜769px：タブレット帯 “押し出し防止コンパクト”
   - gap さらに圧縮
   - フォント小さめ
   - アイコン縮小 & 余白圧縮
   ───────────────────────────────────────── */
@media (max-width:1280px) and (min-width:769px){
  .global-nav{ height: 88px; }                  /* 少し低くして行間圧縮 */

  .nav__menu{
    gap: clamp(10px, 5vw, 70px);              /* さらに詰める */
    font-size: clamp(13px, 1.3vw, 24px);       /* ほんの少し小さく */
    letter-spacing: 0.06em;
  }

  .nav__logo img{ height: clamp(30px, 3.2vw, 36px); }
  .nav__sns{ gap: clamp(8px, 2.4vw, 38px); }
  .nav__sns img{ height: clamp(14px, 1.6vw, 22px); }
}

/* ─────────────────────────────────────────
   1024px〜769px：さらにタイト（2段折り回避の最後の一押し）
   ───────────────────────────────────────── */
@media (max-width:1024px) and (min-width:769px){
  .nav__menu{
    gap: clamp(8px, 3.8vw, 40px);
    font-size: clamp(12px, 1.6vw, 18px);
  }
  .nav__container{
    column-gap: clamp(6px, 1vw, 16px);
    padding: 0 clamp(10px, 1.6vw, 16px);
  }
}

/* ─────────────────────────────────────────
   “最終保険”：
   もし上でも押し出すなら、SNSだけもう一段縮める
   ───────────────────────────────────────── */
@media (max-width:980px) and (min-width:769px){
  .nav__sns img{ height: 16px; }
  .nav__sns{ gap: 22px; }
}



/* ───────── Footer ───────── */
/* もとの footer 定義 */
.site-footer{
  position:relative;
  width:100%;
  height:48vh;
  background:#34343d;
  color:#fff;
  /* overflow:hidden; ← これが原因で影が切れる */
  overflow: visible;
  z-index: 5;              /* 本文より手前に置きたいなら調整 */

   /* ↓―― ここがポイント ――↓ */
  filter: drop-shadow(0 -5px 10px rgba(0,0,0,.45));
  /*     └─↑   ↑   ↑
          X   Y   Blur   color   */
}


.footer__inner{
  width:100%;
  height:100%;
  margin:0 0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:40px 0;
  box-sizing:border-box;
   
}


.footer__middle {
  /* this middle block sits in the middle and will shrink to fit its contents */
  display: flex;
  flex-direction: column;
  gap: 40px;                         /* or use margin-bottom on nav/ margin-top on legal */
  margin-top: 60px;
}

/* ── ① 上段 ── */
.footer__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-left: 6%;
  margin-right: 6%;
  margin-bottom: 60px;
}

/* 左ブランド塊 */
.footer__branding{
  display:flex;
  align-items:flex-start;
  gap:30px;
  align-items: center;
  padding-left: 0;
  padding-top: 2%;
}
.footer__logo-right{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    gap: 10px;
    margin-top: 5px;
}
.footer__logo{
  height:12vh;
  width: auto;
}
.footer__logotype{
  height:2vh;
}
.footer__catch{
  margin:0;
  font-family:"Hiragino Mincho ProN",serif;
  font-weight:300;
  font-size:1.4vw;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}



/* ── ② 仕切り線 ── */
.footer__divider{
  display:block;
  width:95%;
  height:1px;
  background:#fff;
  margin:0 auto;
}

/* ---------- Footer Nav ---------- */
.footer__nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 6%;
}

.footer__menu,
.footer__dropdown { list-style: none; margin: 0; padding: 0; }

.footer__menu {
  display: flex;
  gap: 80px;
  font: 1vw/1 "Times New Roman", serif;
  letter-spacing: .08em;
}
.footer__menu a:hover { color: #7d7d7d; }

/* 基点 */
.footer__gallery { position: relative; }

/* ───────── Footer Dropdown (Global Nav と同じパターン) ───────── */
/* ───────── Footer Dropdown ───────── */
.footer__gallery {
  position: relative;
}

.footer__gallery .footer__dropdown {
  display: none;
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px;
  background: rgba(131, 131, 131, 0.3);
  border-radius: 2px;
  z-index: 9999;
  color: #fff;
}



/* 矢印 ▲/▼ */
.footer__gallery .footer__gallery-head {
  display: inline-flex;
  align-items: center;
}
.footer__gallery .footer__gallery-head::after {
 content: '';
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.4s ease;
  transform-origin: center; /* 中心回転を保証 */
  transform: rotate(0deg);  /* 初期：上向き */
}
/* ホバー OR .open で矢印 ▼ */
.footer__gallery:hover  .footer__gallery-head::after,
.footer__gallery.open   .footer__gallery-head::after {
  transform: rotate(180deg);
}


/* open クラスで展開 */
/* ホバー OR .open でドロップダウン表示 */

.footer__gallery.open   .footer__dropdown {
  display: flex;
}

.footer__gallery:hover > .footer__dropdown {
  display: flex;
}



/* --- SNS --- */
.footer__sns{display:flex;gap:50px;}
.footer__sns img{height:20px;}

/* --- Legal Row (少し上げる・クリックは有効) --- */
.footer__legal-row{
  display:flex;align-items:center;gap:60px;
  font-size:.9vw;flex-wrap:wrap;
  margin:10px 6% 10px;              /* 上方向 10px だけ詰める */
}

.footer__legal-link:hover{color:#cba135;}

/* =========================================================
   FOOTER ≥768px：項目間の間隔とclampでのサイズ調整のみ（配置は不変）
   ========================================================= */
@media (min-width: 768px){

  /* ── 上段ロゴ群：サイズだけ可変（配置はそのまま） ── */
  .footer__branding{
    gap: clamp(10px, 1.2vw, 24px) !important;
  }
  .footer__logo{
    height: clamp(44px, 7.6vh, 80px) !important;
    width: auto !important;
  }
  .footer__logotype{
    height: clamp(14px, 1.8vh, 24px) !important;
    width: auto !important;
  }
  .footer__catch{
    font-size: clamp(16px, 1vw, 28px) !important;
    letter-spacing: .08em !important;
  }

  /* ── メニュー：gapとフォントのみ上書き ── */
  .footer__menu{
    /* 既存の `font: 1vw/1 ...` を確実に上書き */
    font: normal clamp(16px, 1.1vw, 20px)/1 "Times New Roman", serif !important;
    letter-spacing: .06em !important;
    gap: clamp(15px, 4.2vw, 70px) !important;  /* 目安10px前後 */
    white-space: nowrap !important;           /* まずは1行死守 */
  }

  /* ── SNS：gapとアイコンサイズのみ上書き（はみ出し防止） ── */
  .footer__sns{
    gap: clamp(12px, 5.2vw, 55px) !important;  /* 目安10px前後 */
    white-space: nowrap !important;
  }
  .footer__sns img{
    height: clamp(14px, 1.6vw, 22px) !important; /* 幅不足時は縮む */
    width: auto !important;
  }

  /* ── legal-row：行の崩れを抑えるため数値だけ調整 ── */
  .footer__legal-row{
    flex-wrap: wrap !important;                            /* 必要なら2段OK */
    gap: clamp(14px, 4.6vw, 50px) !important;              /* 目安10px前後 */
    font-size: clamp(12px, 1.1vw, 14px) !important;
    row-gap: 6px !important;                               /* 2段時の行間を詰める */
  }
  .footer__copyright,
  .footer__legal-link{
    white-space: nowrap !important;                        /* 文言は折り返さない */
  }
}

/* ── タブレット帯で“さらにタイト”にする最終保険（配置は不変） ── */
@media (min-width: 768px) and (max-width: 1100px){
  .footer__menu{
    font-size: clamp(11px, 2vw, 14px) !important;
    gap: clamp(12px, 4vw, 30px) !important;
  }
  .footer__sns{
    gap: clamp(6px, 3vw, 22px) !important;
  }
  .footer__sns img{
    height: 18px !important;
  }
}



/* =========================================================
   Footer  ──  Mobile layout (≤768px)
   ========================================================= */
@media (max-width: 768px){


  /* ── パーツの並び順を明示 ─────────────────── */
  .footer__top        { order: 0; }   /* Branding */
  .footer__menu       { order: 1; }   /* メニュー */
  .footer__divider    { order: 2; }   /* 白線 ←★メニューの直後 */
  .footer__sns        { order: 3; }   /* SNS アイコン列 */
  .footer__legal-row  { order: 4; }   /* Legal ＆ Copyright */


  /* 全体を縦積みにして高さ自動化 */
  .site-footer{
    height: auto;
    padding: 40px 0 20px;      /* 上 40px / 下 20px */
  }
  .footer__inner{ padding: 0 5vw; }        /* 左右 5vw */

  /* ── ① Branding ─────────────────────────── */
  .footer__top{
    flex-direction: column;
    align-items: flex-start;                         /* 左寄せ */
    margin: 0 0 32px;
  }
  .footer__branding{ gap: 20px; margin-top: 15px;margin-left: 15px;}
  .footer__logo{     width: 55px;  height: auto; }
  .footer__logotype{ height: 15px; width: auto; }
  .footer__catch{    font-size: 14px; letter-spacing: 0.14em;}
  .footer__logo-right{margin-top: 5px;}

 .footer__nav-row{
    flex-direction: column;              /* ← 横並び→縦並び */
    align-items: flex-start;
    gap: 35px;
    margin: 0;                           /* Branding と左揃え */
  }

  /* ── ② メニュー ─────────────────────────── */
  .footer__menu{
 display: flex;
    flex-direction: column;
    gap: 30px;
    font: 16px/1 "Times New Roman", serif;
    padding: 0;
    margin: 0;
    margin-left: 25px;
    margin-bottom: 20px;
  }
  .footer__menu a{ display: block; }

 /* ── ②-1  GALLERY タップ展開 ────────────────── */
  .footer__gallery .footer__dropdown{
    position: static;          /* ボタン直下に */
    display: none;             /* 初期閉じ */
    flex-direction: column;
    gap: 12px;
  
    background: none;
     align-items: flex-start;   /* 左寄せで並べる          */
    padding-left: 0;          /* 余分なインデントを削除   */
    margin-left: 50px;           /* 〃                      */
    margin-top: 20px;
    gap: 20px;                /* メニューと同じ行間 (=20) */
  }
  .footer__gallery.open .footer__dropdown{ display: flex; }

  /* 矢印アイコン少し小さく */
  .footer__gallery .footer__gallery-head::after{
    border-left-width: 3px;
    border-right-width: 3px;
    border-top-width: 5px;
  }


  /* ── ③ 区切り線 ─────────────────────────── */
 .footer__divider{ display: none; }

/* ── ④ SNS アイコン列 ─────────────────────── */
  .footer__sns{
    order: 2;                              /* メニューの次 */
    display: flex;
    gap: 50px;
justify-content: center;
    margin: 0 auto;
    padding-top: 45px;
    border-top: 1px solid #fff;            /* ← 白線はここ */
    width: 90vw;
  }
  .footer__sns img{ height: 22px; width: auto;  }

  /* ── ⑤ Legal リンク + Copyright ────────────── */
  .footer__legal-row{
    order: 3;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
    margin-top: 24px;
  }
  .footer__copyright{
    order: 2;            /* リンク３つの下へ */
    flex-basis: 100%;    /* 折り返して左揃え */
    margin-top: 6px;
  }
  .footer__legal-link{
    margin-right: 5px;
  } 
  
  .footer__gallery .footer__dropdown{ display:none; }
  .footer__gallery.open .footer__dropdown{ display:flex; }
}






/* １枚目about fv*/
.about-fv {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;            /* 縦中央 */
  justify-content: center;        /* 横中央 */
  text-align: center;
  padding: 0 20px;                /* モバイル時の余白確保 */
  background: none;               /* お好みで背景色 */
}

.about-fv__content {
  max-width: 800px;
  width: 100%;
}

.about-fv__lead {
  font-family: "Hiragino Mincho ProN", serif;
  font-weight: 300;
  font-size: 20px;
  color: #fff;
  margin: 0;
  white-space: nowrap;            /* 改行を禁止 */
  letter-spacing: 0.1em;
}

.about-fv__text {
  margin-top: 60px;               /* リードと本文の間隔 */
  font-family: "Hiragino Mincho ProN", serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.1em;
}

.about-fv__text p {
  margin: 0;                      /* 各行のマージンはお好みで */
  margin-bottom: 16px;
}
.about-fv__text p:last-child {
  margin-bottom: 0;
}

/* ───────── Scroll Indicator ───────── */
.about-fv__scroll-indicator {
  position: absolute;
  bottom: 20px;                   /* fv の下からの余白 */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.about-fv__scroll-text {
  font-family: "EB Garamond", serif;
  font-size: 12px;
  color: #cba135;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.about-fv__arrow {
  position: relative;
  width: 1px;                 /* 線幅1px */
  height: 75px;               /* メインラインの長さ75px */
  background-color: #cba135;
  margin: 0 auto;             /* 中央寄せ */
}

.about-fv__arrow::after {
  content: "";
  position: absolute;
  bottom: 0;                  /* メインラインの下端に */
  left: 50%;                  /* 中心に合わせて */
  transform-origin: left center;
  width: 16px;                /* 矢の頭の長さ */
  height: 1px;
  background-color: #cba135;
  transform: rotate(-45deg);   /* 45度下向き */
}


/* ───────── About Feature ■ Heading ───────── */
.fv {
  position: relative;
  width: 100%;
  height: auto;
  background: none;
  margin-top: 80px; /* 上に80pxあける */
  margin-bottom: 80px;
}
.fv-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  box-sizing: border-box;
}

/* タイトル全体 */
.fv-title {
  text-align: center;
  font-family: "Hiragino Mincho ProN", serif;
  margin: 0 0 50px; /* 下に50pxあける */

  font-weight: 300;
}

/* 英語部分 */
.fv-title-en {
  font-size: 32px;
  color: #d4c8bb;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 0.1em;
  
}

/* 「では」だけ日本語スタイル */
.fv-title-dewa {
  font-size: 20px;
  color: #fff;
  display: inline-block;
  margin-left: 4px;
  white-space: nowrap;
  letter-spacing: 0.14em;
  margin-bottom: 20px; /* 下に20pxあける */
}

/* 続く日本語テキスト（各行） */
.fv-title-text {
  display: block;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
  margin: 8px 0;
  letter-spacing: 0.14em;
  line-height: .1;
}



/* ───────── About Steps ───────── */
.about-steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1200px;
  margin: 160px auto;
}
.about-step {
  display: flex;
  align-items: center;
  gap: 120px;
}
.about-step:nth-child(even) {
  flex-direction: row-reverse;
}
.about-step__text,
.about-step__image {
  flex: 1;
}
.about-step__text {
  text-align: left;
  padding: 0 20px;
  flex: 0 0 50%;
  max-width: 50%;
}
.about-step__image {
  text-align: right;
  flex: 0 0 50%;
  max-width: 50%;
}
.about-step:nth-child(even) .about-step__image {
  text-align: left;
}
.about-step__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─ Header (Number + Title) ─ */
.about-step__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.about-step__number {
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 36px;
  color: #cba135;
  line-height: 1;
}
.about-step__title {
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 20px;
  color: #d4c8bb;
  line-height: 1.2;
}

/* ─ Body Text ─ */
.about-step__text p {
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin: 0;
  width: 80%;
}


/* ───────── Brand History 共通 ───────── */
.brand-history-wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 80px 0;
}

/* Brand History メインコンテナー */
.brand-history-container {
  position: relative;
  width: 85vw;
  height: 80vh;
  background: #f1f1f1;
  margin-right: 0;
}

/* 外枠：コンテナーの幅・高さを105%にして描画 */
.brand-history-container::before {
  content: "";
  position: absolute;
  top:   -2.5%;
  left:  -1.3%;
  width: 105%;
  height:105%;
  border: 1px solid #cba135;
  pointer-events: none;
  box-sizing: border-box;
}



/* タイトル */
.bh-title {
 position: absolute;
  top:  20px;
  left: 145px;
  font-family: "EB Garamond", serif;
  font-size: 48px;
  color: #34343d;
}

/* 上下ライン */
.bh-line {
  position: absolute;
  align-items: flex-end;
  justify-content: right;
  right: 0px;
  width: 90%;
  height: 1px;
  background: #cba135;
}
/* タイトル下の固定ライン */
.bh-line--top {
 position: absolute;
  top:  100px;
  right: 0px;
  width:  90%;
  height: 1px;
  background: #cba135;
}

/* コンテナー下の固定ライン */
.bh-line--bottom {
    position: absolute;
  bottom: 20px;
  right: 0px;
  width:  90%;
  height: 1px;
  background: #cba135;
}


/* スクロール領域：横スクロール可、バー非表示 */
.bh-scroll {
 display: flex;
  height: 95%;
  /* 上下ライン分を除いた高さ */
  align-items: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE */

}
.bh-scroll::-webkit-scrollbar {
  display: none;             /* WebKit */
}


/* 各パート共通 */
.bh-part {
  flex: 0 0 30vw;        /* 幅30vw */
  box-sizing: border-box;
  
 
}

.part2,
.part3,
.part4,
.part5,
.part6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
   height:auto;                 /* 85% → auto で自由に伸縮 */
  padding-top:60px;            /* ← 欲しい上余白だけ確保   */
  margin-top: 40px;
  box-sizing: border-box;
  position: relative;    /* 子要素の絶対位置指定の基準 */
  transform: translateX(-10%);
}

/* 各パート間の仕切り線 */
.bh-divider {
flex: 0 0 1px;
  background: #cba135;
  height: 85%;
  margin-top: 125px; /* 上下ラインの高さを除いた高さ */
  margin-left: -100px;
}

/* 固定「次へ」矢印コンテナー */
.bh-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #34343d;
  cursor: pointer;
  transform: translateY(-50%);
}
/* 右端余白用 */
.bh-spacer { flex:0 0 0; }

.part1{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 10vw;
  height: 80%;
  margin-left: 150px; /* 左側の余白 */
  margin-top: 120px;
  box-sizing: border-box;
}

/* パート①: テキスト */
.part1 p {
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 1.7;
  color: #34343d;
  white-space: nowrap;
}

/* パート②～⑥: 年 */
.bh-year {
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 64px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
  color: #34343d;
  white-space: nowrap;
}
/* 画像 */
.bh-img {
  display: block;
  width: 18vw;
  height: 38vh;
  object-fit:cover;    /* 枠いっぱいに拡大しつつ切り抜き */
  object-position:center; /* （任意）中央を基準にトリミング */
  margin: 0 auto 20px;
}
/* 説明文 */
.bh-desc {
  font-family: "Hiragino Mincho ProN", serif;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
  color: #34343d;
  white-space:inherit;
  text-align: left;
  width: 18vw;
}

/* ───────────────────────────────────────────
   ① 基本スタイル（共通）
────────────────────────────────────────── */
.bh-arrow{
 position:absolute;
  inset-block-start:50%;       /* top:50% と同じ ― ブロック軸 */
  transform:translateY(-50%);  /* 正確に中央へ */
  inline-size:auto;
  block-size:auto;
  padding:0;
  border:none;
  background:none;
  cursor:pointer;
  line-height:0;               /* ★ ベースラインを殺してズレ防止 */
  display:flex;                /* ↓インライン基準を完全に排除 */
  align-items:center;
  justify-content:center;
  z-index:10;               /* スクロール面より前面に */
}
.bh-arrow__svg{
  display:block;
 --rot: 0deg;
  transform: rotate(var(--rot)) scale(1);
  transition: transform .15s ease;
  transform-origin: center;
}

/* 右端：右向き ＞ */
.bh-arrow--right .bh-arrow__svg{ --rot: 0deg; }

/* 左端：左向き ＜   */
.bh-arrow--left  .bh-arrow__svg{ --rot: 180deg; }

/* ── クリック時は scale だけを変える ─────────────── */
.bh-arrow:active .bh-arrow__svg{
  transform: rotate(var(--rot)) scale(.95);
}

/* ───────────────────────────────────────────
   ② 向きと配置の切替用クラス
────────────────────────────────────────── */
/* 右向き・右側（初期状態） */
.bh-arrow--right{
  right:40px; left:auto;
}


/* 左向き・左側（末尾に達したら付与） */
.bh-arrow--left{
  left:40px; right:auto;
}


/* ───────── 変数 ───────── */
:root{
  --why-gold:#cba135;
  --why-hd:#d4c8bb;
  --why-txt:#ffffff;
  --why-bg:transparent;       /* 背景色を追加したい場合に変更 */
}

/* ───────── セクション全体 ───────── */
.why-section{
  width:100%;
  padding:40px 0;           /* 上下マージン */
  background:var(--why-bg);
  display:flex;
  flex-direction:column;
  gap:120px;                 /* ブロック間 */
  height: auto;            /* 高さは内容に応じて */
  margin-bottom: 20px;
}

/* ───── 1ブロック：左テキスト／右メディア ───── */
.why-block{
  position:relative;
  width:100%;
  padding-left:125px;        /* 左の固定余白 */
  padding-right:40vw;        /* 右側メディア専用域 */
  box-sizing:border-box;
  display:flex;
  align-items:flex-start;    /* 見出し上端を合わせる */
  height: auto;            /* 高さは内容に応じて */
}

/* ───── テキスト側 ───── */
.why-text{

  color:var(--why-txt);
  font-family:"Hiragino Mincho ProN",serif;
  margin-top: 100px;
  margin-bottom: 140px;
  max-width: 600px; /* テキストの最大幅 */
}

/* 見出し行 */
.why-heading{
  /* 追加・変更分 ↓―――――――――――――――――――― */
  width:calc(100vw - 125px);   /* 左 125px を除いた“画面いっぱい” */
  margin-left:-160px;          /* 親の左余白分だけ左へ引き戻す */
  /* ↑これで heading 全体がビューポート右端まで届く           */
  /* 既存プロパティはそのまま下に置く */
  margin-bottom:40px;
  display:flex;
  align-items:center;
  gap:40px;
}

/* 左線は 250px、右線は残り全部 */
.why-heading__line:first-child{ flex:0 0 200px; }
.why-heading__line:last-child { flex:1 1 auto; }
.why-heading__line{ height:1px; background:var(--why-gold); }



.why-heading__title{
  font-weight:300;
  font-size:28px;
  color:var(--why-hd);
  white-space:nowrap;
}
.why-heading__lead{ font-size:32px; }

.why-body{
  margin-left: 80px;                 /* 左は見出し線と揃える */
  font:16px "Hiragino Mincho ProN",serif;
  letter-spacing:.18em;
  font-feature-settings:"palt";
  line-height: 2.2;
}

/* ───── メディア側（共通ラッパー） ───── */
.why-media{
  position:absolute;
  top:100px;
  right:0;                  /* padding-right と連動 */
  width:42vw;               /* 上と同じ値！ */
  height:100%;
  pointer-events:none;      /* 任意：動画をクリックさせたいなら削除 */
}

/* ２枚の画像／動画 */
.why-media__item{
  position:absolute;
  width:30vw; 
  max-height:30vh;     /* 伸び過ぎ防止の上限 */
  height:auto;          /* デフォルト（動画側）*/
  object-fit:cover;
  object-position:center;

}


/* 写真ブロックだけサイズ変更 */
.why-photo .why-media__item{
  width:26vw; 
  max-height:30vh;     /* 伸び過ぎ防止の上限 */
  height:auto;
  
}

/* 上の１枚（右上）*/
.why-media__item.top{
  top:0; right:0;
  z-index:1;
}

/* 下の１枚（40% 左へ、80% 下へ）*/
.why-media__item.bottom{
  top:0; right:0;
  transform:translate(-70%,80%);
  z-index:2;
}


/* ===== カラー変数（必要なら調整）===== */
:root{
  --cf-gold:#cba135;
  --cf-title:#d4c8bb;
  --cf-text:#ffffff;
  --cf-bg:#34343d;        /* セクション背景想定 */
}

/* ===== セクション骨格 ===== */
.cf-section{
  background:var(--cf-bg);
  padding:20px 0 100px 0;
  text-align:center;
  font-family:"Hiragino Maru Gothic ProN",sans-serif;
  color:var(--cf-text);
}
.cf-inner{ width:90%; max-width:1400px; margin:0 auto; }

/* ── タイトル ─────────────────── */
.cf-title{
  margin:0 0 50px;
  font-size:24px;
  font-weight:300;
  letter-spacing:.2em;
  display:inline-flex;
  align-items:center;
  gap:30px;
  color:var(--cf-title);
  font-family: "Hiragino Mincho ProN",serif;
}
.cf-diamond{
  width:10px; height:10px;
  background:var(--cf-gold);
  transform:rotate(45deg);
}

/* ── リードコピー・説明 ────────── */
.cf-lead{
  margin:0 0 12px;
  font-size:16px;
  color:var(--cf-title);
  font-family: "Hiragino Mincho ProN",serif;
  letter-spacing: 0.08em;
}
.cf-desc{
  margin:0 0 80px;
  font-size:16px;
  line-height:1.9;
  font-family: "Hiragino Mincho ProN",serif;
  letter-spacing: 0.08em;
}

/* ── ボタン群レイアウト ─────────── */
.cf-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px 60px;               /* 行間 20px / 列間 40px */
}

/* ===== ボタン + パネル コンポーネント ===== */
/* ① 外枠は .cf-item に持たせる --------------- */
.cf-item{
  width:220px;
  border:1px solid #fff;       /* ← ここに枠線を集約 */
  position:relative;     /* ← bg の基準 */
  overflow:hidden;       /* ← はみ出し隠す（ボタン高さ分を含めて切る）*/
  transition:max-height .35s ease;
  max-height:50px;             /* = ボタンの高さ (閉じ) */
}

/* ② ボタンは枠線なしの“トリガー” --------------- */
.cf-toggle{
  width:100%; height:50px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 18px;
  border:none;                 /* ← 枠線を持たせない */
  background:transparent;
  color:#fff;
  font-size:20px;
  cursor:pointer;
    box-sizing:border-box;
font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 300;
}

/* ③ 矢印のみ回転 */
.cf-arrow{ 
  transition:transform .25s ease;
width:20px;            /* ← ここで物理寸法を決める */
  height:9px;
  flex-shrink:0;

 }
.cf-item.open .cf-arrow{ transform:rotate(180deg); }

/* ── 展開パネル ───────────────────── */
.cf-panel{
  position:relative;
  width:100%;
  overflow:hidden;
  max-height:0;
  padding:0;              /* 上下 0 で “一体” に見せる */
  opacity:0;
  transition:max-height .35s ease, opacity .35s ease;
 border-top:1px solid #fff;   /* 下側へ“伸びた”部分だけ線を足す */
  border-top:none;
  box-sizing:border-box;
  backdrop-filter:blur(0px);
  text-align:left;
}
.cf-item.open .cf-panel{
  opacity:1;
  padding:20px 18px 130px;  /* 上, 左右, 下（下はアイコン余白用）*/
}

/* 説明文 */
.cf-panel p{
  margin:0;
  font-size:14px;
  line-height:2;
  z-index:2;
  position:relative;
  letter-spacing: 0.08em;
font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 300;
}

/* 背景アイコン（ぼんやり装飾） */
.cf-bg{
 position:absolute;
  inset:0;                       /* パネル全域を 0-stretch で確保          */
  display:flex;                  /* 中央寄せ用フレックス                  */
  align-items:center;
  justify-content:center;
  pointer-events:none;
  opacity:0;                     /* ボタン閉時は消しておく                */
  transition:opacity .25s ease;
  z-index:0;                     /* テキストや枠線の背面                  */
}
/* .open が付いた時だけ見せる */
.cf-item.open .cf-bg{ opacity:.10; }   /* 濃さはお好みで */

.cf-bg img,
.cf-bg svg{
  width:60%;
  height:auto;                   /* アスペクト維持で縮小                  */
  object-fit:contain;
}

/* =====◆ メディアクエリ：狭幅時は縦並び ===== */
@media(max-width:768px){
  /* タイトル装飾（ダイヤ） */
  .cf-diamond {
    width: 10px;
    height: 10px;
  }

  /* タイトル調整 */
  .cf-title {
    font-size: 20px;
    gap: 10px;
  }

  /* リードコピー・説明 */
  .cf-lead,
  .cf-desc {
    font-size: 12px;
    line-height: 1.6;
  }

  /* グリッド：2列表示に変更 */
  .cf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 2列 */
    gap: 20px 20px;                         /* 行間・列間 */
    justify-items: center;
  }

  /* アイテムサイズ調整 */
  .cf-item {
    width: 160px;
    max-height: 30px;  /* 閉じ時 */
  }

  .cf-toggle {
    font-size: 14px;
    height: 30px;
    padding: 0 10px;
  }

  .cf-panel {
    padding: 20px 12px 100px; /* アイコン余白調整 */
  }

  .cf-panel p {
    font-size: 12px !important;
  }

  .cf-bg img,
  .cf-bg svg {
    width: 80%;
      height:auto;
    object-fit:contain;

  }
  .cf-bg{
    display:flex;
    align-items:center;
    justify-content:center;
    
  }

  
}


.feature-section {
  padding: 100px 0;
  background: none;
  color: #fff;
  font-family: "Hiragino Mincho ProN", serif;
  margin-bottom: 80px;
}

.feature-title {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 80px;
  font-weight: 300;
}

.rhombus {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #cba135;
  transform: rotate(45deg);
  margin: 0 20px;
}

.feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-images {
  display: flex;
  height: 32vw;
  gap: 10px;
  position: relative;
  margin-left: 140px;
}

.img-wrapper {
  height: 100%;
  flex: 0 0 5vw;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 4px;
}

.img-wrapper.expanded {
  flex: 0 0 32vw;
}

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

.feature-text {
  max-width: 500px;
  margin-left:40px;
  font-size: 16px;
  line-height: 2;
  position: relative;
  right: 140px;
  letter-spacing: 0.1em;
}
/* 画像ブロック（画像+注意文） */
.feature-images-block{
  display: inline-flex;           /* 中身幅にフィット */
  flex-direction: column;         /* 上:画像 下:注意文 */
  align-items: flex-end;          /* 右寄せ */
  gap: 8px;                       /* 画像と注意文の間隔 */
  margin-left: 0px;             /* 既存の画像左余白に合わせる */
}

/* ▼ 注意文（ヒラギノ明朝 / PC14px, SP12px） */
.feature-note{
  width: 100%;
  display: flex;
  justify-content: flex-end;      /* ブロック右端に寄せる */
  box-sizing: border-box;
  padding: 0 0;                   /* 画像の右端にそのまま揃える */
  white-space: nowrap;
  color: #ffffff;
  opacity: 0.9;
  font-family: "Hiragino Mincho ProN","Hiragino Mincho Pro","Yu Mincho",serif;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.feature-note .note--pc{ display: inline; font-size: 14px; }
.feature-note .note--sp{ display: none; }

/* ===== PC専用：noteを画像の直下に固定（ズレ防止・一体化） ===== */
@media (min-width: 1025px){

  /* 1) 2カラムは中央寄せ＋一定gap=20px（左右の“押し出し”指定は無効化） */
  .feature-content{
    display: flex !important;
    justify-content: center !important;  /* 中央寄せ */
    align-items: flex-start !important;
    gap: 60px !important;                /* 一定の間隔 */
    flex-wrap: nowrap !important;
  }

  /* 2) 画像ブロックを“ひとかたまり”にして、幅＝画像幅に厳密追従 */
  .feature-images-block{
    display: inline-block !important;    /* ブロック幅＝中身幅 */
    vertical-align: top;
    max-width: 100%;
    margin: 0 !important;                /* 余計なオフセットは撤廃 */
    padding: 0 !important;
  }

  /* 3) 画像列：左への押し出しを完全撤廃（noteと同じ原点に） */
  .feature-images{
    margin-left: 0 !important;           /* ← 既存の 140px を無効化 */
    left: 0 !important;
    transform: none !important;
    position: relative;
    display: flex;
    gap: 10px;
    /* 画面幅に応じて自然に縮む（親のflex計算に従う） */
    width: auto; 
    height: clamp(340px, 32vw, 560px);   /* 高さは従来比率のまま可変 */
  }

  /* 4) note は画像ブロックの直下・右寄せ（画像と“常に”同じ起点/幅） */
  .feature-note{
    display: block !important;
    width: 100% !important;              /* 画像ブロック幅いっぱい＝画像幅 */
    text-align: right !important;        /* 右寄せ */
    white-space: nowrap;                 /* PCは1行でOK（必要なら normal に） */
    margin-top: 8px !important;          /* 画像との間隔 */
    margin-right: 0 !important;
    padding: 0 !important;
  }
  .feature-note .note--pc{ display: inline; font-size: 14px; }
  .feature-note .note--sp{ display: none; }

  /* 5) 右側テキストは“押し出し”を撤廃して、通常フローで配置 */
  .feature-text{
    position: static !important;         /* ← right:140px を無効化 */
    right: 0 !important;
    margin: 0 !important;                /* gap=20px に任せる */
    max-width: 500px;                    /* 読みやすい幅を確保 */
  }
}


/* スマホ切替（768px未満） */
@media (max-width: 767px){
  .feature-note .note--pc{ display: none; }
  .feature-note .note--sp{ display: inline; font-size: 10px; }
}

/* レイアウトが縦積みになる幅での調整が必要ならここで上書き */
/* 768px〜1024px：縦並び＆画像ブロックを中央揃え */
@media (min-width: 768px) and (max-width: 1024px){
  /* セクション全体は縦並びにして中央寄せ */
  .feature-content{
    flex-direction: column;
    align-items: center;     /* 中央に寄せる */
    gap: 24px;               /* 画像ブロックと本文の間隔 */
  }

  /* 画像ブロック（画像＋注意文）を中央に配置 */
  .feature-images-block{
    margin: 0 auto;                     /* 中央寄せ */
    align-items: flex-end;               /* 注意文は右端（ブロック内右寄せ） */
    width: min(100%, 880px);             /* 横幅を制限して整える（数値は任意） */
    padding: 0 80px;                     /* 画面端との余白を確保 */
    box-sizing: border-box;
  }
  /* 各サムネイルのデフォルト幅を大きめに */
  .img-wrapper{
    flex: 0 0 10vw;           /* ← 元の5vwより広く */
  }
  .img-wrapper.expanded{
    flex: 0 0 50vw;           /* ← 元の32vwより広く */
  }
  /* 画像列：左マージンをリセットして中央に */
  .feature-images{
    margin-left: 0;            /* ← これが中央寄せの鍵（既存140pxを無効化） */
    justify-content: center;   /* 画像自体も中央に */
    width: 100%;
    height: 50vw;              /* 高さは少し控えめに（任意） */
    max-width: 900px;     /* タブレットで縦に伸びすぎないように（任意） */
  }

  /* 本文：右ずらしを解除して中央寄せに寄せる */
  .feature-text{
    right: 0;                  /* ← 既存の right:140px を無効化 */
    margin: 0 40px;            /* 左右に余白を確保 */
    max-width: 720px;          /* 可読幅に制限 */
    text-align: left;          /* 左揃えのままにしたい場合は維持 */
  }

  /* 注意文はブロックの右端に揃えたまま（幅合わせ） */
  .feature-note{
    width: 100%;               /* .feature-images-block の幅いっぱい */
    justify-content: flex-end; /* 右寄せキープ */
    margin-top: 10px;
    margin-right: 10px;
  }
}


@media (max-width: 767px){
 
  .feature-images-block{
    margin-left: 0;
    align-items: flex-end;        /* 画像幅に対して右寄せのまま */
    width: 100%;
    padding: 0 0px;              /* 画面端と一定間隔（任意） */
    box-sizing: border-box;
  }


  .feature-note{
    width: 100%;               /* .feature-images-block の幅いっぱい */
    justify-content: flex-end; /* 右寄せキープ */
    margin-top: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 1400px) {
  .feature-content {
    flex-wrap: wrap;
    justify-content: center;
  }
  .feature-text {
    margin: 40px auto 40px;
    right: 0;
    max-width: 80%; /* PCでも読みやすい幅に調整 */
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .part1 p {
  font-size: 12px;
  line-height: 1.5;

  padding-bottom: 10px;
  
}

  /* これより上に追記 — About Steps のスマホ版調整 */
  .about-steps {
    flex-direction: column;
    gap: 0;
  }
  .about-step {
    display: flex;
    flex-direction: column;
    justify-content: center; /* 縦中央揃え */
    
  }
  /* header・image・本文を一列に並び替え */
  .about-step__text {
    display: contents;       /* ネストを解除して兄弟要素化 */

  }
  
  .about-step__header { order: 1; margin-bottom: 20px !important;}
  .about-step__image {
    order: 2;
    width: 90%;             /* 画像とテキストを同幅に */
    margin: 15px 0;         /* 上下15pxの間隔 */
  }
  .about-step__text p { order: 3; }

  /* テキストブロックも同じ幅に */
  .about-step__text,
  .about-step__image {
    width: 90%;
    margin-bottom: 10px !important;
  }

  /* 奇数ステップは左寄せ、偶数ステップは右寄せ */
  .about-step:nth-child(odd) .about-step__text,
  .about-step:nth-child(odd) .about-step__image {
    align-self: flex-start;
  }
  .about-step:nth-child(even) .about-step__text,
  .about-step:nth-child(even) .about-step__image {
    align-self: flex-end;
  }
  /* ─── STEP 02 の順序をタイトル→画像→本文に固定 ─── */
 /* STEP02：画像は右寄せのまま、ヘッダーと本文を画像の左端に揃える */
  .about-step:nth-child(2) {
    /* 縦並びかつ幅100% */
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important; /* 子要素を横いっぱいに */
    gap: 15px;
  }
  .about-step:nth-child(2) .about-step__header {
    order: 1 !important;
     width: 90%;
     transform: translateX(45%);
   align-self: flex-end !important; 

  }
  .about-step:nth-child(2) .about-step__image {
 width: 90%;
    margin-left: auto;  /* 右寄せ */
    margin-right: 0;

  }
  .about-step:nth-child(2) .about-step__text p {
    order: 3 !important;
  
    margin-left: auto;  /* 画像の左端と同じ位置 */
    margin-right: 25px;
    
  }
 /* ─── About Steps: すべて左揃え ─── */
  .about-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;   /* 子要素を左揃え */
    justify-content: center !important;
    gap: 15px;
  }
  /* テキストと画像を同じ幅で左揃え */
  .about-step__header,
  .about-step__image
  {
    width: 90% !important;
    margin-left: 0 !important;
  }
.about-step__text p {
  width:45%;
}
 /* STEP 1 & 3：タイトルと本文の左マージンを20pxに */
  .about-step:nth-child(1) .about-step__header,
  .about-step:nth-child(3) .about-step__header,
  .about-step:nth-child(1) .about-step__text p,
  .about-step:nth-child(3) .about-step__text p {
    margin-left: 20px !important;
  }



  /* ─── About FV ─── */
.about-fv{
  padding-bottom: 20px;
}

  .about-fv__lead {
    font-size: 14px;
    font-feature-settings: "palt";
  letter-spacing: 0.04em;
  }
  .about-fv__text {
    font-size: 12px;
    line-height: 1.2;
  }
  .about-fv__scroll-indicator {
    bottom: 60px; /* 元20px → 上へ30px */
  }
.about-fv__arrow{
height: 65px
}
  /* ─── FV タイトル ─── */
  .fv-title-en {
    font-size: 22px;
  }
  .fv-title-dewa,
  .fv-title-text {
    font-size: 14px;
  }

  /* ─── About Steps を縦並びに ─── */
  .about-steps {
    flex-direction: column;
    gap: 30px;
  }
  .about-step {
    flex-direction: column;
    gap: 30px;
  }
  /* 偶数ステップはテキストと画像の順序を逆に */
  .about-step:nth-child(even) {
    flex-direction: column-reverse;
  }
  .about-step__number {
    font-size: 20px;
  }
  .about-step__title {
    font-size: 16px;
  }
  .about-step__text p {
    font-size: 12px;
  }

  /* ─── Brand History Mobile ─── */
  .brand-history-wrapper {
    justify-content: flex-start;
    left: 0;
    width: 80vw;
  }
/* Brand History コンテナーを画面いっぱい＆高さ70vhに */
.brand-history-container {
  width: 100vw;      /* ビューポート幅いっぱい */
  height: 65vh;      /* 高さ70vh */
  margin: 0;         /* 中央寄せの余白リセット */
}
.bh-line--top{
  margin: 0;
}
.bh-part{
  width: 25vw;
  margin-right: 40px;

}
  .bh-scroll {
    display: flex;
    gap: 100px;
    padding-left: 0px;
  }
  .bh-desc {
    font-size: 12px;
    width: 35vw;
  }
  .part1 p {
    font-size: 10px;
  }
.brand-history-wrapper .part1{
    margin-left: 100px;
  }

  .bh-title {
    font-size: 28px;
    margin: 0;
    margin-top: 15px;
    left: 100px;
  }
  .bh-img {
    width: 170px;
    height: auto;
  }
  .bh-year {
    font-size: 20px;
  }
  /* 外枠は上下のみ表示 */
  .brand-history-container::before {
    border: none;
    border-top: 1px solid #cba135;
    border-bottom: 1px solid #cba135;
  }
  .bh-divider{margin-top: 120px;height: 80%;margin-left: -50px !important;}



   /* セクション全体：パディング調整 */
  .why-section {
    padding: 40px 0;
    gap: 60px; /* ブロック間隔縮小 */
  }

  .why-heading {
    margin: 0 0 20px;
    width: 100vw; /* ← 画面幅いっぱいに */
    margin-left: -20px; /* ← padding相殺：左右マージンなしに調整 */
    display: flex;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
    padding: 0 20px;
  }

  .why-heading__line:first-child {
    flex: 0 0 50px;
  }

  .why-heading__line:last-child {
    flex: 2 2 auto;
  }

  /* 各ブロック：縦並びに変更 */
  .why-block {
    display: flex;
    flex-direction: column;
    padding: 0 0;

  }

  /* テキスト部分（見出し＋本文） */
  .why-text {
    margin: 0;
    padding-left: 50px;
    max-width: 100%;
  }

 /* 見出し行 */
.why-heading{
  /* 追加・変更分 ↓―――――――――――――――――――― */
  width:100vw;   /* 左 125px を除いた“画面いっぱい” */
  margin-left:-20px;          /* 親の左余白分だけ左へ引き戻す */
  /* ↑これで heading 全体がビューポート右端まで届く           */
  /* 既存プロパティはそのまま下に置く */
  margin-bottom:40px;
  display:flex;
  align-items:center;
  gap:10px;
}

/* 左線は 250px、右線は残り全部 */
.why-heading__line:first-child{ flex:0 0 100px; }
.why-heading__line:last-child { flex:1 1 auto; }

  .why-heading__title {
    font-size: 16px;
    color: var(--why-hd);
    letter-spacing: 0.08em;
  }

  .why-heading__lead {
    font-size: 24px;
    letter-spacing: 0.08em;
  }

  .why-media {
    display: none !important;
  }
  /* 本文（画像の下に来る） */
  .why-body {
    font-size: 14px;
    line-height: 2;
    width: 100%;
    margin: 0 auto 60px;
    padding: 0;
    color: var(--why-txt);
    letter-spacing: 0.08em;
    text-align: left;
  }
  


  /* ===== Feature Section Mobile ===== */
  .feature-title{
    font-size:18px;
    gap:0;
    font-feature-settings: "palt";
  }
  .rhombus{
    width:10px;
    height:10px;
  }
  .feature-content{
    flex-direction:column;
    align-items:center;
  }
 .feature-images{
   width: 100vw;            /* ← ビューポート幅そのもの */
    margin-left: 0;          /* デスクトップの 140px を打ち消し */
    left: 0;                 /* 中央寄せも不要なので解除 */
    transform: none;
    gap: 10px;
    margin-bottom: 150px;
  }
  /* collapsed 幅（PC の 5vw をモバイル比率に換算 = 約 12vw） */
  .img-wrapper{
    flex: 0 0 12vw;          /* ← 好みで 11〜13vw 程度に微調整可 */
    height: 65vw;            /* 縦横比そのまま */
    overflow: hidden;
    transition: flex-basis .4s ease;
  }

  /* expanded 幅 = 100vw − (collapsed ×2) − gap ×2 */
  .img-wrapper.expanded{
    flex: 0 0 calc(100vw - 24vw - 20px);  /* ＝約 76vw */
  }
  .feature-text{
    width:100%;
    font-size:14px;
    padding:0 15px;
    margin:60px 0 0;
    text-align:left;
    right:0;
    font-feature-settings: "palt";
    line-height: 1.6;
  }
}




/* PC では完全に隠す */
@media (max-width:768px){
  .global-nav{ display:none; }

}
@media (min-width:769px){
  #mobileNavToggle{ display:none; }
 #mobileNav{display: none;}
}

/* ===== Mobile Global Nav ===== */
@media (max-width: 768px) {

   /* ハンバーガー開閉ボタン */
 #mobileNavToggle {
 position: fixed !important;
    top: 20px !important;
    right: 0 !important;
    transform: none !important;    /* 親要素の transform 影響を排除 */
    z-index: 2000 !important;       /* fvのwrapper( z-index:5 ) 以上に */
    width: 75px;
    height: 35px;
    background-color: rgba(52, 52, 61, 0.4); /* #34343d 透明度0.3 */
    border: none;
    padding: 5px 20px 5px 8px; /* 上・下・左だけ2px、右は0 */
    cursor: pointer;
  box-sizing: border-box;
  line-height: 0;
  /* 行ボックス由来の隙間を殺す + 子を中央に収める */
  line-height: 0;
  display: grid;
  place-items: center;

  /* 子が大きくても外に出さない */
  overflow: hidden;

  /* タップ装飾のにじみ防止（モバイル） */
  -webkit-tap-highlight-color: transparent;

  }

#mobileNavToggle img {
  display: block;                 /* ベースライン隙間の排除 */
  width: auto;                    /* 縦基準でスケール */
  height: 100%;                   /* ← 内容枠（44-上下2px×2=40px）にフィット */
  max-width: 100%;                /* 横も 100% を上限に */
  object-fit: contain;            /* はみ出さずに収める */
  pointer-events: none;           /* クリックは親で拾う */
  transition: opacity .22s ease;  /* ← スムーズさ（変更OK） */
}


  /* メニュー本体 */
  #mobileNav {
     position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 75%;
    max-width: 300px;
    height: 100%;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  #mobileNav.open {
    transform: translateX(0);
  }

/* メニュー内 */
.mobile-nav__inner {
  padding: 20px 20px 5px; /* 上部にロゴ分の余白 */
  height: 100%;
 display: flex;
    flex-direction: column;
}

/* クローズボタン */
  .mobile-nav__head {
    display: flex;
    justify-content: flex-end;  /* 右寄せ */
    align-items: center;        /* 縦中央揃え */
    padding: 10px;              /* 必要に応じ調整 */
    margin-bottom: 30px;
  }
  .mobile-nav__logo {
    width: 55px;
    height: auto;
  }
.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
  .mobile-nav__logo {
    width: 55px;
    height: auto;
  }
  .mobile-nav__close img {
    width: 16px;
    height: 16px;
    pointer-events: none;
  }

  /* メニュー */
  .mobile-nav__menu {
    list-style: none;
    margin: 20px 0 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .mobile-nav__menu a,
  .mobile-nav__gallery-head {
    font: 600 20px/1.4 "Times New Roman", serif;
    color: #34343d;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  /* Gallery ドロップダウン */
  .mobile-nav__gallery-dropdown {
    display: none;
    list-style: none;
    margin: 12px 0 0 12px;
    padding: 0;
    flex-direction: column;
    gap: 20px;
  }
  .mobile-nav__gallery.open .mobile-nav__gallery-dropdown {
    display: flex;
  }
.mobile-nav__gallery .mobile-nav__gallery-head {
  display: inline-flex;
  align-items: center;
}
.mobile-nav__gallery .mobile-nav__gallery-head::after {
 content: '';
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.4s ease;
  transform-origin: center; /* 中心回転を保証 */
  transform: rotate(0deg);  /* 初期：上向き */
}
/* ホバー OR .open で矢印 ▼ */
.mobile-nav__gallery:hover  .mobile-nav__gallery-head::after,
.mobile-nav__gallery.open   .mobile-nav__gallery-head::after {
  transform: rotate(180deg);
}
.mobile-nav__gallery-dropdown{
  margin: 0;
  margin-top: 15px;

}

/* open クラスで展開 */
/* ホバー OR .open でドロップダウン表示 */

.mobile-nav__gallery.open   .mobile-nav__gallery-dropdown {
  display: flex;
}

.mobile-nav__gallery:hover > .mobile-nav__gallery-dropdown {
  display: flex;
}
  /* SNS */
  .mobile-nav__sns {
    margin-top: auto;
    display: flex;
    gap: 50px;
     align-items: center; /* 縦中央揃え */
     justify-content: center;
     margin-bottom: 30px;
  }
  .mobile-nav__sns img {
    height: 25px;
  }

  /* Legal */
  .mobile-nav__legal {
    margin-top: 10px;
    font-size: 12px;
    line-height: 2;
    transform: translateY(20px);
  }
  .mobile-nav__legal a {
    color: #34343d;
    text-decoration: none;
  }
  .mobile-nav__copy {
    margin: 8px 0 0;
  }
}



/* W3 = Light → CSSで font-weight:300; のとき使われる */
@font-face {
  font-family: "Hiragino Mincho ProN";   /* 既存CSSが呼ぶ名前 */
  src: local("Hiragino Mincho ProN W3"),
       local("hiragino-mincho-pron");
  font-weight: 300;
  font-style: normal;
}

/* W6 = SemiBold → CSSで font-weight:600; のとき使われる */
@font-face {
  font-family: "Hiragino Mincho ProN";
  src: local("Hiragino Mincho ProN W6"),
       local("hiragino-mincho-pron");
  font-weight: 600;
  font-style: normal;
}
