/* =========================================================
   Phiten BEAUTY — CLEANED FULL CSS
   File: assets/css/phiten-beauty.css
   ========================================================= */
/* =========================
   TOKENS (colors, fonts, scales)
   ========================= */ :root {
  /* Colors */
  --pb-ink: #222;
  --pb-sub: #6b6b6b;
  --pb-line: #eae8e4;
  --pb-bg: #faf8f6;
  --pb-surface: #fff;
  --pb-accent: #b89f7a;
  --hed-line: #C9CACA;
  --footer-bg: #CCBA93;
  --footer-txt: #7A6A56;
  --ink: #320F05;
  --sub: #6d5a4e;
  --white: #fff;
  --grey: #E6E6E6;
  --date: #9FA0A0;
  /* Fonts */
  --fn-en: "Sorts Mill Goudy", serif;
  --fn-jp: "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "MS PGothic", sans-serif;
  --fn-yu: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  --fn-out: "Outfit", sans-serif;
  /* Type scale */
  --fs08: 0.8rem;
  --fs09: 0.9rem;
  --fs10: 1.0rem;
  --fs11: 1.1rem;
  --fs12: 1.2rem;
  --fs13: 1.3rem;
  --fs14: 1.4rem;
  --fs15: 1.5rem;
  --fs16: 1.6rem;
  --fs17: 1.7rem;
  --fs18: 1.8rem;
  --fs19: 1.9rem;
  --fs20: 2.0rem;
  --fs21: 2.1rem;
  --fs22: 2.2rem;
  --fs23: 2.3rem;
  --fs24: 2.4rem;
  --fs25: 2.5rem;
  --fs26: 2.6rem;
  --fs27: 2.7rem;
  --fs28: 2.8rem;
  --fs29: 2.9rem;
  --fs30: 3.0rem;
  --fs31: 3.1rem;
  --fs32: 3.2rem;
  --fs33: 3.3rem;
  --fs34: 3.4rem;
  --fs35: 3.5rem;
  --fs36: 3.6rem;
  --fs37: 3.7rem;
  --fs38: 3.8rem;
  --fs39: 3.9rem;
  --fs40: 4.0rem;
  --fs41: 4.1rem;
  --fs42: 4.2rem;
  --fs43: 4.3rem;
  --fs44: 4.4rem;
  --fs45: 4.5rem;
  --fs46: 4.6rem;
  --fs47: 4.7rem;
  --fs48: 4.8rem;
  --fs49: 4.9rem;
  --fs50: 5.0rem;
  --fs57: 5.7rem;
  /* Root font size (1024〜1920px) */
  font-size: clamp(9px, calc(9px + (14 - 9) * ((100vw - 1024px) / (1920 - 1024))), 14px);
}
@media (max-width:1024px) {
  :root {
    font-size: 9px;
  }
}
/* =========================
   BASE
   ========================= */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  color: var(--pb-ink);
  background: #fff;
  font-family: var(--fn-jp);
  line-height: 1.7;
  letter-spacing: .02em;
  font-feature-settings: 'palt'1;
}
html {
  scroll-behavior: smooth;
}
h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.28;
  font-family: "Noto Serif JP", serif;
}
p {
  margin: .5em 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  --pad: clamp(16px, 4vw, 48px);
  width: 100%;
  padding-inline: var(--pad);
  margin-inline: auto;
}
.section {
  padding-block: clamp(36px, 6vw, 84px);
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* 全ページのアンカー位置調整 */
[id] {
  scroll-margin-top: 80px;
}
/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: transparent;
  border: 0;
  isolation: isolate;
}
.header-inner {
  display: grid;
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* PC */
@media (min-width:1025px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand nav company";
    align-items: center;
    padding-top: 35px;
  }
  .brand-logo {
    grid-area: brand;
  }
  .brand-logo img {
    height: 18px;
  }
  .nav {
    grid-area: nav;
    justify-self: end;
    margin-right: 50px;
  }
  .company-logo {
    grid-area: company;
  }
  .company-logo img {
    height: 22px;
  }
  .nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
  }
  .nav a {
    font-family: var(--fn-out);
    font-size: var(--fs11);
    letter-spacing: 1px;
    color: #000 !important;
  }
  .has-sub {
    position: relative;
    --dd-gap: 14px;
  }
  /* ブリッジ：メインリンクの直下に透明の帯を作る */
  .has-sub::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }
  .nav .nav-link {
    display: inline-flex;
    align-items: center;
    gap: .4em;
  }
  .dropdown {
    position: absolute;
    top: calc(100% + var(--dd-gap));
    left: 0;
    z-index: 101;
    display: grid;
    gap: 8px;
    min-width: 180px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .18s, transform .18s;
  }
  .has-sub:hover > .dropdown, .has-sub:focus-within > .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .overlay-logos, .nav-toggle {
    display: none;
  }
}
@media (min-width:1025px) {
  .header-inner {
    position: relative;
  }
  /* デフォルトは非表示（ページごとに出し分け） */
  .header-inner::after {
    content: none;
  }
  /* 下線を出したいページのみ有効化 */
  body.page-has-headerline .header-inner::after {
    content: "";
    position: absolute;
    bottom: -28px; /* 下げたい位置は調整 */
    left: var(--line-left, 0px);
    right: var(--line-right, 0px);
    height: 1px;
    background: var(--hed-line);
    opacity: 1;
    transition: opacity .3s ease; /* ← 0.5秒かけてフェード */
  }
  /* スクロールしたら消す */
  body.page-has-headerline.scrolled .header-inner::after {
    opacity: 0;
  }
}
/* SP */
@media (max-width:1024px) {
  .header-inner {
    grid-template-areas: "company brand hamburger";
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 60px;
    background: var(--pb-line);
  }
  .brand-logo {
    grid-area: brand;
    justify-self: center;
  }
  .brand-logo img {
    height: 12px;
  }
  .company-logo {
    grid-area: company;
    justify-self: start;
  }
  .company-logo img {
    height: 12px;
  }
  .nav-toggle {
    grid-area: hamburger;
    justify-self: end;
    position: relative;
    width: 32px;
    height: 24px;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    z-index: 2400;
  }
  .nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--pb-ink);
    transition: all .5s, background-color .3s;
  }
  .nav-toggle span:nth-of-type(1) {
    top: 2px;
  }
  .nav-toggle span:nth-of-type(2) {
    top: 10px;
  }
  .nav-toggle span:nth-of-type(3) {
    top: 18px;
  }
  .nav-toggle.is-open span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .nav-toggle.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-toggle.is-open span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 2300;
    border: none;
    background: var(--pb-bg);
    display: grid;
    place-items: center;
    transform: scale(.96);
    opacity: 0;
    pointer-events: none;
    transition: transform .36s cubic-bezier(.22, .61, .36, 1), opacity .36s ease;
  }
  .underline {
    border-bottom: solid 1px #000;
  }
  .nav.is-open {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav ul {
    display: grid;
    gap: 18px;
    padding: 24px;
    place-content: center;
    align-content: center;
  }
  .nav a {
    color: #000;
    font-size: clamp(20px, 5vw, 28px);
    letter-spacing: 1px;
  }
  .dropdown {
    position: static;
    min-width: auto;
    padding: 8px 0 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    gap: 6px;
    display: grid;
  }
  .has-sub {
    text-align: center;
  }
  .has-sub .dropdown a {
    color: #000;
    opacity: .78;
    font-size: clamp(16px, 4.2vw, 20px);
  }
  .overlay-logos {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2600;
    pointer-events: none;
    opacity: 0;
    transform: scale(.96);
    transition: opacity .35s, transform .35s cubic-bezier(.22, .61, .36, 1);
  }
  .ol-brand {
    position: fixed;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    height: 12px;
  }
  .ol-company {
    position: fixed;
    top: 23px;
    left: 17px;
    height: 12px;
  }
  body.no-scroll .overlay-logos {
    opacity: 1;
    transform: scale(1);
  }
  body.no-scroll .brand-logo, body.no-scroll .company-logo {
    visibility: hidden;
  }
}
body.no-scroll {
  overflow: hidden;
}
/* === SP：閉じている間はTOPメニューを完全無効化 === */
@media (max-width:1024px) {
  .nav {
    visibility: hidden; /* 透明＋非表示レイヤー扱い */
  }
  .nav.is-open {
    visibility: visible; /* 開いた時だけ表示に戻す */
  }
  .nav:not(.is-open) * {
    pointer-events: none !important; /* 子要素（News/Topics/Journal等）も無反応に */
  }
}
/* ===== SPナビ：上揃え・左揃え・区切り線・右端＞ ===== */
@media (max-width:1024px) {
  /* オーバーレイ全体：中央配置をやめて上寄せ */
  .nav {
    /* 既存: display:grid; background: var(--pb-bg); ... */
    place-items: initial; /* ← 既存の中央寄せを無効化 */
    align-content: start; /* ← コンテンツを上に寄せる */
    justify-items: center; /* 横位置は中央に（ULを中央寄せ） */
    padding-top: clamp(16px, 4vh, 40px);
  }
  /* UL：幅を固定せず最大幅を制限、行間ギャップを無効化（罫線を連続させるため） */
  .nav ul {
    width: min(560px, 92vw);
    gap: 0; /* ← 罫線を綺麗につなげる */
    padding: 0;
    margin: 40px 0;
    place-content: initial;
    align-content: initial;
  }
  /* LI直下のリンク：左揃え＋左右に余白、上下に区切り線、右端に＞ */
  .nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 左テキスト／右マーク */
    width: 100%;
    text-align: left; /* ← 左揃え */
    padding: 16px 8px 16px 2px; /* お好みで調整 */
    font-size: var(--fs17);
    font-weight: 700;
    border-bottom: 1px solid var(--pb-line); /* 下線 */
    letter-spacing: 1px;
  }
  /* 先頭行のみ上線を付与（上下に罫線） */
  .nav > ul > li:first-child > a {
    border-top: 1px solid var(--pb-line);
  }
  /* 右端の「＞」マーク（見た目は二重山括弧に近い "›" 推奨） */
  .nav > ul > li > a::after {
    content: "＞"; /* または ">" */
    font-family: var(--fn-jp, sans-serif);
    font-weight: 400;
    font-size: 1em;
    line-height: 1;
    opacity: .7;
    margin-left: 12px;
    flex: 0 0 auto;
  }
  /* 以前の中央揃え指定を打ち消し */
  .has-sub {
    text-align: left;
  }
  /* ドロップダウン（子）も左揃えに。上下線は親の行のみでOKなので子からは除去 */
  .dropdown {
    margin-top: 4px;
    padding: 0 0 0 10px; /* 少し字下げ */
    gap: 0;
  }
  .has-sub .dropdown a {
    display: block;
    text-align: left;
    padding: 10px 8px;
    font-size: var(--fs17);
    font-weight: 700;
    border: none; /* 子は罫線なし（必要なら好みで追加可） */
    opacity: .85;
  }
  /* ドロップダウン内最後のリンクの下に区切り線を追加 */
  .has-sub .dropdown a:last-child {
    border-bottom: 1px solid var(--pb-line);
    padding-bottom: 16px; /* 区切り線との間隔調整 */
    margin-bottom: 0;
  }
}
/* =========================================================
   HERO
   ========================================================= */
/* ===== HERO：下起点ズーム＆下端固定 ===== */
.hero {
  position: relative;
  /* iOSの動的UIでも“見えている領域”いっぱいを優先 */
  @supports (height: 100dvh) {
    min-height: 100dvh;
  }
  @supports not (height: 100dvh) {
    min-height: 100svh;
  }
  background: #fff;
  overflow: hidden;
  /* Homeバーが出ても下端要素が隠れないよう余白を足す */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
/* 背景を下基準に。拡大しても“下端を動かさない” */
.hero-bg {
  position: absolute;
  inset: 0;
  /* PC共通のデフォルト */
  background-image: url('../img/top/hero-main.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 100%; /* ← 下端基準（center bottom） */
  transform-origin: center center; /* ← 変形の原点も下端 */
  transform: scale(1);
  will-change: transform;
  animation: heroZoom 12s ease-in-out forwards;
}
/* オーバーレイはそのまま */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, .12) 78%, rgba(0, 0, 0, .24) 100%);
}
/* ロゴ（PCの下フチ配置は残す） */
.hero-logo-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  z-index: 2;
  pointer-events: none;
}
.hero-logo {
  width: 100%;
  height: auto;
  display: block;
}
/* スマホ調整 */
@media (max-width:767px) {
  /* 背景をSP用に差し替え。下基準は維持 */
  .hero-bg {
    background-image: url('../img/top/hero-main_sp.jpg');
    background-position: 50% 80%;
  }
  /* SPはロゴを上配置に切替（※要素がある前提） */
  .hero-logo-wrap {
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
  }
  .hero-logo {
    display: none;
  }
  .hero-logo-sp {
    position: absolute;
    top: 100px; /* お好みで微調整 */
    left: 50%;
    transform: translateX(-50%);
    width: min(54vw, 220px);
    height: auto; /* ← タイプミス修正（“.nav”を削除） */
    display: block;
    z-index: 2;
    pointer-events: none;
  }
}
/* 画像を一度だけ下基準でゆっくり拡大 */
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  } /* お好みで 1.04〜1.12 程度 */
}
@media (min-width:768px) {
  .hero-logo-sp {
    display: none;
  }
}
/* =========================================================
   Philosophy Layout
   ========================================================= */
.philosophy {
  background: #F4F2EB;
}
.philosophy-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr auto;
  gap: 28px;
  align-items: flex-start;
}
/* 左：商品（ページ左端に付ける） */
.philosophy .ph-products {
  /* コンテナの左パディングぶんだけ引き出す */
  margin-left: calc(-1 * var(--pad));
  margin-top: 40%;
}
.philosophy .ph-products img {
  width: 100%;
  height: auto;
  display: block;
}
/* 中央：モデル */
.philosophy .ph-model img {
  width: 100%;
}
/* 右：テキスト */
.philosophy .ph-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-top: 35%;
  margin-left: 15px;
}
.philosophy .ph-text .ph-title {
  font-family: var(--fn-jp);
  font-size: var(--fs20);
  font-weight: 400;
  letter-spacing: .2rem;
}
.philosophy .ph-text p {
  font-size: var(--fs12);
  line-height: 2.0;
  letter-spacing: .2rem;
}
/* 縦書き見出し（他セクションと同じ2列仕様） */
.philosophy .ph-aside {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding-right: clamp(4px, .6vw, 8px);
}
.philosophy .ph-aside .section-title {
  font-family: var(--fn-out);
  font-size: var(--fs23);
  font-weight: 700;
  letter-spacing: .15em;
  margin: 0;
}
.philosophy .ph-aside .subtitle {
  font-size: var(--fs10);
  letter-spacing: .12em;
  margin: 0;
  opacity: .8;
  color: #000;
}
/* Philosophy ボタン用ラッパー */
.philosophy-more-wrap {
  margin-top: 20px; /* 上下余白は個別調整可能 */
  display: flex;
  justify-content: flex-start; /* ← 必要に応じて left / center / right に切替 */
}
/* SP 調整 */
@media (max-width:767px) {
  .philosophy-layout {
    grid-template-columns: 1fr;
    row-gap: 16px;
    align-items: start;
  }
  .philosophy .ph-products {
    margin-left: 0; /* 引き出し無効化 */
    margin-top: 0;
  }
  .philosophy .ph-products img {
    max-width: 100%;
  }
  .philosophy .ph-text {
    margin-top: 10px;
    margin-left: 0;
  }
  .philosophy .ph-aside {
    order: -1;
    writing-mode: initial;
    text-orientation: initial;
  }
  .philosophy .ph-aside .section-title {
    font-size: var(--fs22);
  }
  .philosophy-more-wrap {
    justify-content: flex-end;
  }
}
/* =========================================================
   TOPICS
   ========================================================= */
/* レイアウト：左=縦書き見出し / 右=カード群 */
.topics-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(20px, 4vw, 40px);
  align-items: start;
}
/* 左：縦書きタイトル */
.topics-aside {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
.topics-aside .section-title {
  font-family: var(--fn-out, sans-serif); /* 英字用アウトラインフォント */
  font-size: var(--fs23);
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1;
  margin: 0;
}
.topics-aside .subtitle {
  font-family: var(--fn-jp, "Noto Sans JP", sans-serif); /* 日本語用 */
  font-size: var(--fs10);
  font-weight: 400;
  letter-spacing: .12em;
  margin: 0;
  opacity: .8;
  color: #000;
}
/* 右：カード3カラム */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}
/* カード */
.t-card {
  display: flex;
  flex-direction: column;
}
/* 画像 */
.t-media {
  display: block;
  /*height: 150px;*/ /* ← 高さを150pxに変更 */
  aspect-ratio: 3.26 / 1.5;
  border-radius: 0; /* ← 角丸なし */
  overflow: hidden;
  background: #f5f5f5;
  width: 100%;
}
.t-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
@media (hover:hover) and (pointer:fine) {
  .t-card:hover .t-media img {
    transform: scale(1.03);
  }
}
/* 記事タイトル */
.t-title {
  margin: 14px 0 6px;
  font-family: var(--fn-jp, "Noto Sans JP", sans-serif);
  font-size: var(--fs13);
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.7;
  color: #000;
}
/* 日付 */
.t-date {
  display: block;
  font-family: var(--fn-out, sans-serif);
  font-size: var(--fs11);
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--date);
}
/* ボタン（カード列下で右寄せ） */
.topics-more-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
/* SP：見出しは上で横書き、カード2→1カラム */
@media (max-width:1024px) {
  .topics-layout {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .topics-aside {
    writing-mode: initial;
    text-orientation: initial;
    display: block;
  }
  .topics-aside .section-title {
    font-size: clamp(22px, 6vw, 28px);
    margin: 0 0 4px;
  }
}
@media (max-width:767px) {
  .topics-grid {
    grid-template-columns: 1fr;
  }
  .t-media {
    height: auto;
  } /* 念のための保険 */
}
/* =========================================================
   Brands
   ========================================================= */
/* レイアウト全体 */
.brands-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: clamp(20px, 4vw, 40px);
  align-items: start;
}
/* 左：ブランド3カラム */
.brands .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.brand-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.brand-item .brand-cat {
  font-size: var(--fs10);
  letter-spacing: .12em;
  margin: 0;
  color: #000;
}
/* カード本体（統一サイズ） */
.brand-card {
  background: #f8f6f2;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px; /* 高さ統一。必要に応じて調整 */
}
/* カード内ロゴ画像（デフォルトサイズ） */
.brand-card img {
  max-width: 80%;
  max-height: 70px;
  height: auto;
  width: auto;
}
/* 個別ロゴ調整 */
.brand-card.ag img {
  max-height: 11px;
} /* AQUAGOLD */
.brand-card.kyo img {
  max-height: 42px;
} /* 京のおしろい落とし */
.brand-card.biyou img {
  max-height: 24px;
} /* 美YOU人 */
/* 右：縦書き BRANDS */
.brands-aside {
  display: flex;
  flex-direction: row; /* ← row-reverseをやめる */
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}
/* 両方とも縦書きのまま */
.brands-aside .section-title, .brands-aside .subtitle {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
}
/* 並び順の明示：左=ブランド、右=BRANDS */
.brands-aside .subtitle {
  order: 1;
} /* ブランド（左） */
.brands-aside .section-title {
  order: 2;
} /* BRANDS（右） */
.brands-aside .section-title {
  font-family: var(--fn-out);
  font-size: var(--fs23);
  font-weight: 700;
  letter-spacing: .15em;
  margin: 0;
}
.brands-aside .subtitle {
  font-size: var(--fs10);
  letter-spacing: .12em;
  margin: 0;
  opacity: .8;
  color: #000;
}
/* ▼ 外置きした「ブランドについて」ボタン */
.brands-more-wrap {
  margin-top: 30px;
}
.brand-item.is-kyo .brand-cat {
  visibility: hidden;
}
/* row の中で4つ目の行に配置 */
.brands .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.brands-more {
  grid-column: 1 / -1; /* 3カラム全幅を占有 */
  display: flex;
  justify-content: flex-end; /* PCは右寄せ */
  margin-top: 10px;
}
/* Responsive（SP時は縦積み＋左寄せ） */
@media (max-width:1024px) {
  .brands-layout {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .brands-aside {
    display: block;
    order: -1; /* ← これで最上部に */
    writing-mode: initial;
    text-orientation: initial;
    align-items: flex-start;
  }
  /* SPでは最上部・横書き2行 */
  .brands-aside .subtitle, .brands-aside .section-title {
    writing-mode: initial;
    text-orientation: initial;
    display: block;
    margin: 0;
  }
  .brands .row {
    grid-template-columns: 1fr; /* カード縦積み */
    gap: 16px;
  }
  .brand-item.is-kyo .brand-cat {
    display: none;
  }
}
/* =========================================================
   PRODUCTS（左縦見出し / 右グリッド、画像上テキスト、PCホバー切替）
   ========================================================= */
.products-layout {
  display: grid;
  grid-template-columns: minmax(20px, 64px) 1fr;
  column-gap: clamp(16px, 4vw, 32px);
  align-items: start;
}
/* 左縦見出し（Safari対応） */
.products-aside {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl; /* Safari */
  text-orientation: mixed;
  -webkit-text-orientation: mixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  padding-right: clamp(4px, .6vw, 8px);
}
.products-aside .p-title {
  font-family: var(--fn-out);
  font-weight: 700;
  letter-spacing: .15em;
  font-size: var(--fs23);
  margin: 0;
  text-orientation: sideways; /* ← 英字を90°回転（横倒し） */
  -webkit-text-orientation: sideways; /* Safari */
  white-space: nowrap;
  display: inline-block; /* Safariの描画安定化 */
}
.products-aside .p-sub {
  font-size: var(--fs10);
  letter-spacing: .14em;
  margin: 0;
  color: #000;
}
/* グリッド */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
/* カード（画像上テキスト＋ホバー画像） */
.pcard {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
}
.pcard .media {
  position: relative;
  aspect-ratio: 3/4;
  background: #f7f5f2;
}
.pcard .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pcard .img-main {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform .35s ease;
}
.pcard .img-hover {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity .25s ease, transform .35s ease;
}
.p-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #000;
  padding: 0 20px 10%;
  text-align: center;
}
.p-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--fn-jp);
  font-size: var(--fs11);
  font-weight: normal;
  letter-spacing: .1em;
  line-height: 1.7;
  margin: 0 0 6px;
}
.p-meta {
  margin: 0;
  font-family: var(--fn-jp);
  font-size: var(--fs11);
  letter-spacing: .1em;
}
.p-meta span {
  font-size: var(--fs09);
  margin: 0 3px;
}
/* PCのみホバー演出 */
@media (hover:hover) and (pointer:fine) {
  .pcard:hover .img-main {
    transform: scale(1.03);
  }
  .pcard:hover .img-hover {
    opacity: 1;
    transform: scale(1.03);
  }
}
/* ページャ */
.p-pager {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  align-items: center;
  gap: 10px;
  margin-top: clamp(16px, 2.2vw, 22px);
}
.p-btn {
  height: 38px;
  min-width: 140px;
  padding: 0 14px;
  border: 1px solid var(--pb-line);
  border-radius: 5px;
  background: #fff;
  font-size: var(--fs13);
  font-weight: 700;
  letter-spacing: .08em;
  color: #222;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
/* 左右配置 */
.p-btn.is-prev {
  justify-self: start;
}
.p-btn.is-next {
  justify-self: end;
}
/* ホバー時：ベージュ色 */
.p-btn:hover:not(:disabled) {
  background: #C9BC9C;
  color: #fff;
  border-color: #CCBA93;
}
/* アクティブ時（クリック中など） */
.p-btn:active:not(:disabled) {
  background: #B89F7A; /* 少し濃いベージュ */
  border-color: #B89F7A;
  color: #fff;
}
/* 無効（最初/最後） */
.p-btn:disabled {
  border-color: #ddd;
  color: #aaa;
  cursor: default;
}
/* ドット */
.p-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-dots .dot {
  width: 35px;
  height: 35px;
  border-radius: 999px;
  border: 1px solid var(--pb-line);
  background: #fff;
  display: grid;
  place-items: center;
  font-family: var(--fn-out);
  font-weight: 400;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.p-dots .dot:hover {
  background: #C9BC9C;
  border-color: #CCBA93;
  color: #fff;
}
.p-dots .dot.is-active {
  background: #C9BC9C;
  border-color: #C9BC9C;
  color: #fff;
}
.products-more-wrap .journal-more {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}
/* ===============================
   Morph Tabs（PC：モーフィング / SP：静的UI）
   =============================== */
.morph-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 0 0 20px;
  isolation: isolate;
}
.morph-tabs .tab {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 50px;
  padding: 0 10px;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: #1a1a1a;
  font-family: var(--fn-out, sans-serif);
  font-size: var(--fs13);
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
  overflow: hidden;
  transition: color .25s ease, transform .18s ease;
}
.morph-tabs .tab:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
/* モーフィング背景（PC） */
.morph-tabs .morph-bg {
  position: absolute;
  z-index: 1;
  --x: 0px;
  --y: 0px;
  --w: 0px;
  --h: 0px;
  transform: translate(var(--x), var(--y));
  width: var(--w);
  height: var(--h);
  border-radius: 5px;
  background: #CCBA93;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  transition: transform .45s cubic-bezier(.22, .61, .36, 1), width .45s cubic-bezier(.22, .61, .36, 1), height .45s cubic-bezier(.22, .61, .36, 1), border-radius .45s ease;
}
/* 選択・ホバー時の文字色（PC） */
.morph-tabs .tab[aria-selected="true"], .morph-tabs .tab.is-hover {
  color: #fff;
}
/* プレビュー中は選択タブ文字を黒に戻す → ALLが消えない */
.morph-tabs.is-previewing .tab[aria-selected="true"] {
  color: #1a1a1a;
}
/* ===============================
   Responsive
   =============================== */
@media (max-width:767px) {
  .morph-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width:1024px) {
  .products-layout {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .products-aside {
    order: -1;
    writing-mode: initial;
    -webkit-writing-mode: initial;
    text-orientation: initial;
    -webkit-text-orientation: initial;
    justify-content: flex-start;
    gap: 4px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-pager {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .p-btn.is-prev, .p-btn.is-next {
    justify-self: center;
    width: min(320px, 100%);
  }
}
@media (max-width:767px) {
  .p-title {
    font-size: var(--fs10);
    letter-spacing: .1em;
    margin: 0 0;
  }
  .p-meta {
    font-size: var(--fs10);
  }
  .p-meta span {
    font-size: var(--fs08);
  }
  .morph-tabs {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 6px;
    gap: 4px;
  }
  .morph-tabs .tab {
    height: 46px;
    font-size: var(--fs12);
    background: rgba(204, 186, 147, .15);
    border-radius: 4px;
    color: #1a1a1a;
  }
  .morph-tabs .tab[aria-selected="true"] {
    background: #CCBA93;
    color: #fff;
  }
  .morph-tabs .morph-bg {
    display: none;
  } /* SPはアニメ無効 */
  .products-aside .p-title {
    font-size: var(--fs22);
  }
  .p-pager {
    grid-template-columns: 90px 1fr 90px;
    gap: 10px;
  }
  .p-btn {
    height: 38px;
    min-width: 80px;
    padding: 0 14px;
    font-size: var(--fs12);
  }
  .p-dots .dot {
    gap: 5px;
    width: 30px;
    height: 30px;
  }
}
/* 追記分 */
#productGrid {
  min-height: auto;
}
#productsPager[hidden] {
  display: none !important;
}
/* =========================================================
   JOURNAL（PC: 3カラム＋右縦見出し / SP: 見出し縦積み）
   ========================================================= */
.journal-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 50px;
  align-items: start;
}
.journal-main {
  display: block;
}
@media (min-width:1025px) {
  .journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
/* category label */
.j-Category {
  display: inline-block;
  min-width: 80px;
  background: #000;
  color: var(--white);
  font-family: var(--fn-out);
  font-size: var(--fs11);
  font-weight: 600;
  letter-spacing: .15rem;
  margin: 20px 0 10px;
  padding: 1px 10px;
  text-align: center;
}
/* title overflow */
.j-title {
  font-family: var(--fn-jp);
  font-size: var(--fs13);
  letter-spacing: .1rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: justify;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.7em * 2);
}
/* date */
.j-date {
  color: var(--date);
  font-size: var(--fs11);
  font-family: var(--fn-out);
  font-weight: 500;
  letter-spacing: .1rem;
  margin: 0 0 4px;
}
/* media + hover */
.j-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f5f5;
}
.j-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
@media (hover:hover) and (pointer:fine) {
  .j-card:hover .j-media img {
    transform: scale(1.05);
  }
}
/* card link */
.j-card a.j-link {
  display: grid;
  grid-template-rows: auto auto;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
/* right vertical heading */
.journal-aside {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  padding-right: clamp(4px, .6vw, 8px);
}
.journal-aside .section-title {
  font-family: var(--fn-out);
  font-size: var(--fs23);
  font-weight: 700;
  letter-spacing: .15em;
  margin: 0;
}
.journal-aside .subtitle {
  font-size: var(--fs10);
  letter-spacing: .12em;
  margin: 0;
  opacity: .8;
  color: #000;
}
.j-card {
  margin-bottom: 30px;
}
/* button (scoped) */
.journal-more-wrap .journal-more {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}
/* SP: heading on top */
@media (max-width:1024px) {
  .journal-layout {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
  .journal-aside {
    order: -1;
    writing-mode: initial;
    text-orientation: initial;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-right: 0;
  }
  .journal-aside .section-title {
    font-size: var(--fs22);
  }
}
/* =========================================================
   NEWS（左カラム見出し＋右リスト）
   ========================================================= */
.news .container {
  padding-top: 0;
}
.news-grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  grid-template-areas:
    "aside list"
    "more  list";
  column-gap: clamp(24px, 6vw, 40px);
  row-gap: 28px;
  align-items: start;
}
/* left */
.news-aside {
  grid-area: aside;
}
.news-title {
  font-family: var(--fn-out, sans-serif);
  font-size: var(--fs26);
  font-weight: 700;
  letter-spacing: .12em;
  margin: 0 0 18px;
}
.news-cat {
  font-size: var(--fs11);
  letter-spacing: .12em;
  margin: 0;
}
/* right list */
.news-list {
  grid-area: list;
  border-top: 1px solid var(--grey, #eae8e4);
}
.news-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(12px, 2.4vw, 24px);
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--grey, #eae8e4);
  color: inherit;
  text-decoration: none;
}
.news-row:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.news-row time {
  font-family: var(--fn-out, sans-serif);
  font-size: var(--fs11);
  letter-spacing: .12em;
  color: var(--date);
}
/* title truncation */
.news-text {
  font-size: var(--fs11);
  letter-spacing: .1em;
  line-height: 2;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* more button */
.news-more-wrap .journal-more {
  grid-area: more;
  margin-top: 0;
  display: flex;
  justify-content: flex-start;
}
.journal-btn {
  display: flex;
  justify-content: space-between; /* ← 均等配置 */
  align-items: center;
  min-width: 160px; /* ← 必要に応じて調整 */
  gap: 0; /* gapは不要 */
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey);
  font-size: var(--fs12);
  letter-spacing: .12em;
}
.journal-btn .circle {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  font-size: var(--fs10);
  flex-shrink: 0;
}
.journal-btn:hover {
  opacity: .9;
  transform: translateX(1px);
}
/* スマホの時だけデザイン変更 */
/*@media (max-width:767px) {
.journal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    width: 100%;
    padding: 8px 14px;
    border: 1px solid var(--pb-line);
    border-radius: 999px;
    font-size: var(--fs12);
    border-bottom: none;  
  }
.journal-btn .circle {
    background: #000;
    color: #fff;
  }
.journal-btn:hover {
    background: #C9BC9C;
    color: #fff;
    border-color: #CCBA93;
  }
}*/
/* responsive (NEWS) */
@media (max-width:1024px) {
  .news-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
    text-overflow: ellipsis;
    line-clamp: 2;
  }
  .news-row {
    grid-template-columns: 80px 1fr;
    padding: 18px 0;
  }
}
@media (max-width:767px) {
  .news-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "aside""list""more";
    row-gap: 20px;
  }
  .news-title {
    font-size: var(--fs22);
    margin: 0 0 5px;
  }
  .news-text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .news-more-wrap .journal-more {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}
/* =========================================================
   BREADCRUMBS
   ========================================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  height: 60px;
}
.breadcrumb .container {
  padding-block: 10px;
}
.breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: var(--fs11);
  letter-spacing: .08em;
  flex-wrap: nowrap;
}
.breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}
.breadcrumb li + li::before {
  content: "/";
  margin: 0 6px;
  color: var(--sub);
}
@media (max-width:1024px) {
  .breadcrumb {
    height: 50px;
  }
  .breadcrumb .container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .breadcrumb .container::-webkit-scrollbar {
    display: none;
  }
  .breadcrumb ol {
    gap: 6px;
    min-width: max-content;
    font-size: var(--fs10);
  }
  .breadcrumb li {
    display: inline-block;
    white-space: nowrap;
  }
}
/* =========================================================
   CTAs
   ========================================================= */
.cta-row {
  background: #fff;
  border-top: 1px solid var(--pb-line);
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
}
@media (max-width:767px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}
.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
  background: transparent;
  border: none;
  border-right: 1px solid var(--grey);
}
.cta-card:last-child {
  border-right: none;
}
@media (max-width:767px) {
  .cta-card {
    border-right: none;
    border-bottom: 1px solid var(--grey);
  }
  .cta-card:last-child {
    border-bottom: none;
  }
}
.cta-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.cta-card h3 {
  font-family: var(--fn-out);
  font-size: var(--fs16);
  font-weight: 600;
  letter-spacing: .1em;
  margin: 0 0 7px;
}
.cta-card a p, .cta-desc {
  font-size: var(--fs10);
  font-weight: 300;
  letter-spacing: .1em;
  margin: 6px 0 0;
}
.cta-icons {
  display: flex;
  gap: 24px;
}
.cta-icon {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 10px;
  background: #EFEFEF;
  margin: 15px 0 5px;
}
.cta-icon:hover {
  opacity: .7;
}
/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
}
.site-footer > .cta-row {
  display: none;
}
.mega-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: clamp(28px, 4vw, 48px) 0 0;
}
.mf-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 48px;
}
.mf-brand img {
  height: clamp(16px, 2.2vw, 26px);
  width: auto;
  display: block;
}
/* PC: 6カラム右寄せ */
.mf-nav {
  display: grid;
  grid-template-columns: repeat(6, auto);
  justify-content: flex-end;
  gap: 50px;
  margin-left: 50px;
}
.mf-col h4 {
  font-family: var(--fn-out);
  font-size: var(--fs12);
  font-weight: 600;
  color: var(--footer-txt) !important;
  letter-spacing: .1rem;
  line-height: 1.4;
  margin: 0 0 .6em;
  text-decoration: none;
}
.mf-col h4 .f-headlink {
  color: var(--footer-txt) !important;
  font-weight: 600;
  letter-spacing: .1rem;
  text-decoration: none;
}
.mf-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .3em;
}
.mf-col a {
  font-family: var(--fn-out, sans-serif);
  font-size: var(--fs10);
  color: #fff;
  font-weight: 300;
  letter-spacing: .08em;
  text-decoration: none;
}
.mf-col a:hover {
  opacity: .8;
}
/* トグル（PC非表示） */
.f-toggle {
  display: none;
}
.mf-col.is-linkonly .f-head::after {
  content: none;
}
/* SNS（PC） */
.mf-social {
  display: grid;
  justify-items: end;
  gap: 20px;
}
.mf-social .sns {
  width: 20px;
  height: 20px;
}
.mf-social .sns img {
  width: 100%;
  height: 100%;
  display: block;
  filter: brightness(0) invert(1);
}
/* 下段 */
.footer-bigband {
  background: var(--footer-bg);
  padding: 150px 40px 10px;
  overflow: hidden;
}
.footer-biglogo {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.mf-bottom {
  display: flex;
  justify-content: flex-end;
  padding: 20px 50px;
}
.mf-bottom small {
  font-family: var(--fn-out, sans-serif);
  font-size: 12px;
  color: #7A6A56;
  letter-spacing: .04em;
}
/* Footer responsive */
@media (max-width:1024px) {
  .mf-nav {
    gap: 20px;
    margin-left: 0;
  }
}
@media (max-width:767px) {
  /* 見出し行：テキストと＋を左右に離す */
  .f-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
  }
  /* テキスト部分を可変幅にして右側へ余白を作る */
  .f-headlink {
    flex: 1 1 auto; /* ← これが重要 */
    display: block;
    padding: 10px 8px 10px 0;
    margin: 0; /* 余計なマージンは外す */
  }
  .mega-footer {
    padding: 30px 0 0;
  }
  .mf-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mf-brand {
    order: 1;
  }
  .mf-brand img {
    height: 20px;
  }
  .mf-nav {
    order: 2;
    grid-template-columns: 1fr;
    margin: 0;
    gap: 0;
  }
  .mf-col {
    border-bottom: 1px solid rgba(255, 255, 255, .45);
  }
  .mf-col h4 {
    display: flex;
    align-items: center; /* 縦中央 */
    min-height: 65px; /* タップ面積 */
    margin: 0; /* 余白はリンク側に集約 */
  }
  .mf-col h4 .f-headlink {
    flex: 1;
    padding: 10px 8px 10px 0; /* 行内余白 */
    margin: 0; /* ここでのmarginは不要 */
  }
  .mf-col a {
    font-size: var(--fs16);
  }
  /* 本文（アコーディオン） */
  .mf-col ul {
    overflow: hidden;
    max-height: 0;
    margin: 0;
    padding: 0;
    transition: max-height .3s ease, padding .25s ease;
  }
  .f-head[aria-expanded="true"] + ul {
    max-height: 320px;
    padding: 0 0 12px;
  }
  /* 行 */
  .mf-col ul li {
    list-style: none;
  }
  .mf-col ul li > a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
  }
  .mf-col ul li:last-child > a {
    margin-bottom: 12px;
  }
  .mf-col ul li > a.is-accent {
    background: #C5B186;
    color: #fff;
  }
  /* ONLINE SHOP / STORE：リンクのみ */
  .mf-col.is-linkonly .f-toggle {
    display: none;
  }
  .mf-col.is-linkonly ul {
    display: none;
  }
  .mf-col.is-linkonly .f-head {
    position: relative;
    padding-right: 28px;
    cursor: pointer;
  }
  .mf-col.is-linkonly .f-head::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--footer-txt);
    border-top: 1.5px solid var(--footer-txt);
    transform: translateY(-50%) rotate(45deg);
  }
  /* ＋／－ */
  .f-toggle {
    display: block;
    position: relative;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .f-toggle::before, .f-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 1.5px;
    background: var(--footer-txt);
    transform: translate(-50%, -50%);
    transition: transform .25s, opacity .25s;
  }
  .f-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .f-head[aria-expanded="true"] .f-toggle::after {
    opacity: 0;
  }
  /* SNS & bottom */
  .mf-social {
    order: 3;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .mf-social .sns {
    width: 30px;
    height: 30px;
  }
  .mf-bottom {
    justify-content: center;
    padding: 20px 50px;
  }
  .footer-bigband {
    padding: 100px 20px 0;
  }
}
/* ===== Footer Contact Button ===== */
.mf-contact {
  display: flex;
  justify-content: flex-end;
  margin: 30px 0;
}
.contact-btn {
  position: relative; /* ← アイコンを絶対配置できるように */
  display: inline-flex;
  align-items: center;
  justify-content: center; /* テキストを中央寄せ */
  gap: 10px; /* PC時だけ効く */
  padding: 7px 28px;
  border: 1px solid #fff;
  font-family: var(--fn-out, sans-serif);
  font-size: var(--fs11);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: .1em;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.contact-btn:hover {
  background: #E8DFC8; /* 薄いベージュ */
  border-color: #E8DFC8;
}
.contact-icon {
  width: 16px;
  height: auto;
}
/* スマホ調整 */
@media (max-width:767px) {
  .mf-contact {
    justify-content: center;
  }
  .contact-btn {
    width: 80%;
    justify-content: center; /* テキストは中央 */
    padding-left: 40px; /* アイコンの分だけ左余白 */
    font-size: var(--fs16) !important;
  }
  .contact-icon {
    position: absolute;
    left: 16px; /* ボタン左端からの距離 */
    top: 50%;
    transform: translateY(-50%);
  }
}
/* =========================================================
   ABOUT (page modifier)
   ========================================================= */
body.about .site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--pb-line);
  backdrop-filter: saturate(180%) blur(8px);
}
body.about .site-header .logo img {
  height: 28px;
}
body.about .site-header .corp-logo img {
  height: 20px;
}
body.about .site-header nav ul {
  display: flex;
  gap: 24px;
}
body.about .site-header nav a {
  color: var(--pb-ink);
}
@media (max-width:1024px) {
  body.about .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(255, 255, 255, .98);
    transform: translateY(-200%);
    transition: .25s ease;
    border-bottom: 1px solid var(--pb-line);
  }
  body.about .nav.is-open {
    transform: translateY(0);
  }
  body.about .nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
    align-items: flex-start;
  }
}
/* =========================================================
   screen-reader only
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/* === Page Top button === */
.to-top {
  position: fixed;
  right: clamp(12px, 2vw, 20px);
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: #6d5a4e; /* 茶色 */
  color: #fff; /* 矢印を白に */
  font-size: 20px; /* 矢印サイズ */
  line-height: 1;
  font-family: inherit; /* サイト全体のフォントに合わせる */
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background-color .2s ease;
  transition: bottom 0.3s ease; /* ← スムーズに切り替え */
}
/* フッターに重なりそうな時だけ追加で上げる */
.to-top.is-avoid-footer {
  bottom: calc(40px + env(safe-area-inset-bottom)); /* ← 好みに合わせて +40〜60px 程度 */
}
.to-top:is(:hover, :focus-visible) {
  background: #8a6b5c; /* ホバー時少し明るく */
}
.to-top:active {
  transform: translateY(12px) scale(.96);
}
.to-top[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* もしフッター上で被るのが気になる場合は、幅が狭い時に少し上げる */
@media (max-width: 767px) {
  /* フッターに重なりそうな時だけ追加で上げる */
  .to-top.is-avoid-footer {
    bottom: calc(110px + env(safe-area-inset-bottom)); /* ← 好みに合わせて +40〜60px 程度 */
  }
}