

/* ============================================================
   FLEX株式会社 — style.css
   カラー: #2f4f4f (forest) / #dda146 (amber) / #92a7a7 (sage)
============================================================ */

/* ============================================================
   CSS変数 / リセット
============================================================ */
:root {
  --forest:      #2f4f4f;
  --amber:       #dda146;
  --amber-t:     rgba(221, 161, 70, .45);
  --sage:        #92a7a7;
  --cream:       #f8f5ef;
  --brown:       #94624c;
  --off:         #fff;
  --ink:         #231815;
  --line:        rgba(47, 79, 79, .14);
  --line-tan:    rgba(160, 152, 128, .22);
  --text-muted:  #5a5650;
  --text-light:  #a09880;
  --font-en:        'Gilda Display', Georgia, serif;
  --font-jp:        'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-di:        'Cormorant Infant', Georgia, serif;
  --font-en2:       'Cormorant Garamond', 'Cormorant Infant', Georgia, serif;
  --font-serif-jp:  'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  --ease:   cubic-bezier(.77, 0, .175, 1);
  --ease2:  cubic-bezier(.23, 1, .32, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul  { list-style: none; }
img { max-width: 100%; vertical-align: bottom; }
a   { text-decoration: none; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-jp);
  background: var(--off);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ============================================================
   スクロールリビール
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }


/* ============================================================
   ヘッダー
============================================================ */
header {
  height: 68px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--amber-t);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 8000;
  transition: background .5s, box-shadow .5s;
}
header.scrolled {
  background: rgba(221, 161, 70, .9);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .09);
}
header h1 {
  font-family: var(--font-en);
  font-size: 2.8rem;
  line-height: 1;
  position: relative;
  z-index: 8200;
  margin-top: 5px;
}
header h1 a {
  color: var(--forest);
  display: flex;
  gap: 4px;
  margin-left: 8px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* デスクトップナビ */
nav.global { line-height: 1; }
.global ul { display: flex; align-items: center; }
.global li a {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  padding: 0 18px;
  letter-spacing: .08em;
  position: relative;
  transition: color .25s;
}
.global li [aria-current="page"] {
  display: none;
}
.global li a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 18px; right: 18px;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.global li a:hover { color: rgba(255, 255, 255, .72); }
.global li a:hover::after { transform: scaleX(1); }


/* ============================================================
   ハンバーガーボタン
============================================================ */
.hbg {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 8200;
  transition: border-color .3s, background .3s;
}
.hbg:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .85);
}
.hbg span {
  display: block;
  width: 18px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  transition: transform .45s var(--ease2), opacity .3s, top .45s var(--ease2);
}
.hbg span:nth-child(1) { top: calc(50% - 5px); }
.hbg span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hbg span:nth-child(3) { top: calc(50% + 4px); }

.hbg.open { border-color: rgba(47, 79, 79, .25); background: rgba(248, 245, 239, .12); }
.hbg.open span { background: var(--forest); }
.hbg.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; transform: translateY(-50%) scaleX(0); }
.hbg.open span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }


/* ============================================================
   モバイルメニュー（右ドロワー）
============================================================ */
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(35, 24, 21, .5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 8050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}
.mob-overlay.open { opacity: 1; pointer-events: auto; }

.mob-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(221, 161, 70, .07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(47, 79, 79, .05) 0%, transparent 50%);
  z-index: 8100;
  display: flex;
  flex-direction: column;
  padding: 0 40px 48px;
  transform: translateX(105%);
  transition: transform .65s var(--ease2);
  overflow-y: auto;
}
.mob-menu.open { transform: translateX(0); }

.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--line);
  margin: 0 -40px;
  padding: 0 40px;
}
.mob-head-logo {
  font-family: var(--font-en);
  font-size: 2.0rem;
  color: var(--forest);
  letter-spacing: .06em;
}

.mob-close {
  position: relative;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s;
}
.mob-close::before,
.mob-close::after {
  content: '';
  position: absolute;
  width: 13px; height: 1px;
  background: var(--forest);
}
.mob-close::before { transform: rotate(45deg); }
.mob-close::after  { transform: rotate(-45deg); }
.mob-close:hover { background: var(--forest); border-color: var(--forest); }
.mob-close:hover::before,
.mob-close:hover::after { background: #fff; }

.mob-nav { margin-top: 32px; flex: 1; }
.mob-nav li {
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .4s var(--ease2), transform .4s var(--ease2);
}
.mob-nav li:first-child { border-top: 1px solid var(--line); }
.mob-menu.open .mob-nav li:nth-child(1) { opacity: 1; transform: none; transition-delay: .15s; }
.mob-menu.open .mob-nav li:nth-child(2) { opacity: 1; transform: none; transition-delay: .21s; }
.mob-menu.open .mob-nav li:nth-child(3) { opacity: 1; transform: none; transition-delay: .27s; }
.mob-menu.open .mob-nav li:nth-child(4) { opacity: 1; transform: none; transition-delay: .33s; }
.mob-menu.open .mob-nav li:nth-child(5) { opacity: 1; transform: none; transition-delay: .39s; }
.mob-menu.open .mob-nav li:nth-child(6) { opacity: 1; transform: none; transition-delay: .45s; }

.mob-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  transition: padding-left .35s var(--ease);
}
.mob-nav a::before {
  content: '';
  position: absolute;
  left: -40px; top: 0; bottom: 0;
  width: 3px;
  background: var(--amber);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease);
}
.mob-nav a:hover { padding-left: 12px; }
.mob-nav a:hover::before { transform: scaleY(1); }

.mob-nav-texts { display: flex; flex-direction: column; gap: 3px; }
.mob-nav-jp {
  font-family: var(--font-jp);
  font-size: 1.5rem; font-weight: 400;
  color: var(--forest);
  letter-spacing: .08em;
  transition: color .25s;
}
.mob-nav-en {
  font-family: var(--font-en);
  font-size: 1.05rem;
  color: var(--sage);
  letter-spacing: .14em;
}
.mob-nav a:hover .mob-nav-jp { color: var(--brown); }

.mob-nav-arr {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .3s var(--ease);
}
.mob-nav-arr svg {
  width: 10px; height: 10px;
  stroke: var(--sage); fill: none; stroke-width: 1.5;
  transition: stroke .25s;
}
.mob-nav a:hover .mob-nav-arr { background: var(--forest); border-color: var(--forest); transform: translateX(3px); }
.mob-nav a:hover .mob-nav-arr svg { stroke: #fff; }
.mob-nav [aria-current="page"] {
  display: none;
}

.mob-foot {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--line);
  opacity: 0;
  transition: opacity .4s .5s ease;
}
.mob-menu.open .mob-foot { opacity: 1; }
.mob-foot-label {
  font-family: var(--font-en);
  font-size: 1.0rem; letter-spacing: .18em;
  color: var(--sage);
  margin-bottom: 14px;
}
.mob-sns { display: flex; gap: 12px; }
.mob-sns a {
  width: 36px; height: 36px;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s;
}
.mob-sns a:hover { background: var(--forest); border-color: var(--forest); }
.mob-sns img {
  width: 16px; height: 16px; object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(20%) saturate(600%) hue-rotate(130deg);
}
.mob-sns a:hover img { filter: brightness(0) invert(1); }

/* ============================================================
   ヒーロースライダー
============================================================ */
.hero-slider {
  position: relative;
  width: 100%; height: 100svh;
  min-height: 520px; max-height: 860px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(47, 79, 79, .4) 0%, rgba(0, 0, 0, .05) 100%);
}

.hero-inner {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  z-index: 2;
}
.hero-text { padding: 0 0 100px 88px; }
.hero-text p {
  font-family: var(--font-en);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 400; color: #fff; line-height: 2.0;
  text-shadow: 1px 2px 10px rgba(3, 30, 3, .45);
  opacity: 0; transform: translateY(24px);
  animation: heroUp 1.1s .5s var(--ease) forwards;
}
@keyframes heroUp { to { opacity: 1; transform: none; } }

.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-particles span {
  position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, .32);
  animation: heroFloat var(--d, 8s) var(--de, 0s) ease-in-out infinite alternate;
}
@keyframes heroFloat {
  from { transform: translate(0, 0); }
  to   { transform: translate(var(--tx, 8px), var(--ty, -16px)); }
}

.scroll-ind {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
  opacity: 0; animation: heroUp 1s 1.6s var(--ease) forwards;
}
.scroll-ind span {
  font-family: var(--font-en);
  font-size: 1.0rem; letter-spacing: .3em;
  color: rgba(255, 255, 255, .65);
}
.scroll-line {
  width: 1px; height: 52px;
  background: rgba(255, 255, 255, .28);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0% { top: -100%; } 100% { top: 100%; } }

.hero-dots {
  position: absolute; bottom: 32px; right: 48px;
  z-index: 3; display: flex; gap: 8px;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
  border: none; cursor: pointer; padding: 0;
  transition: background .35s, transform .35s;
}
.hero-dot.active { background: #fff; transform: scale(1.4); }

/* ============================================================
   ボタン index.html と product.html 共通
============================================================ */
.btn a {
  border: 1.5px solid var(--forest); border-radius: 3px;
  font-size: 1.5rem; display: block; text-align: center;
  width: 100%; max-width: 200px; margin: 40px auto 0;
  padding: 15px 0; color: var(--forest);
  position: relative; overflow: hidden;
  transition: color .5s;
  line-height: 2; letter-spacing: .1em;
}
.btn a span,
.btn a::after { position: relative; z-index: 1; }
.btn a::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--forest);
  transform: scaleX(0); transform-origin: right;
  transition: transform .55s var(--ease);
}
.btn a:hover { color: #fff; }
.btn a:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-arrow-right a::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 20px;
  width: 8px; height: 8px; margin: auto;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  box-sizing: border-box; z-index: 1;
}

/* ============================================================
   ラッパー / セクション共通
============================================================ */
.wrapper { width: 90%; max-width: 1024px; margin: 0 auto; }

section h2 {
  font-family: var(--font-di);
  font-size: clamp(4.2rem, 7vw, 6.2rem);
  font-weight: 600; color: var(--forest);
  text-align: center; line-height: 1;
  margin: 0 0 8px;
}
section.wrap { padding: 100px 0; }

/* ============================================================
   ミッション
============================================================ */
div.content section p {
  text-align: center; line-height: 2.5;
  font-size: 1.7rem; color: #3a3530;
}
div.content p.jp {
  margin: 6px auto 40px;
  font-size: 1.25rem; letter-spacing: .22em;
  color: #fff; text-align: center;
  font-weight: 400; line-height: 1;
}


/* ============================================================
    index.html(Philosophy)
============================================================ */
.philosophy-section h2 {
  font-family: 'Cormorant Garamond', var(--font-di);
  font-weight: 500; letter-spacing: .03em;
  color: #385a5a;
}
section.wrap.philosophy-section {
  position: relative;
  background: #f3f4f4;
  margin: 0 calc(50% - 50vw);
  padding: 92px calc(50vw - 50% + 56px) 82px;
  overflow: hidden;
}
.philosophy-section::after {
  content: "";
  position: absolute;
  right: 12px; bottom: -34px;
  width: 380px; height: 380px;
  opacity: .42;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 260'%3E%3Cg fill='none' stroke='%23b7bdbe' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M35 210 C65 160 105 120 165 84'/%3E%3Cpath d='M95 165 C82 150 73 137 68 122'/%3E%3Cpath d='M120 145 C107 129 99 116 94 99'/%3E%3Cpath d='M145 126 C132 111 126 97 122 82'/%3E%3Cpath d='M168 108 C156 95 150 83 147 70'/%3E%3Cpath d='M112 176 C126 165 140 158 158 153'/%3E%3Cpath d='M136 157 C151 147 166 141 184 138'/%3E%3Cpath d='M158 139 C173 130 187 124 204 121'/%3E%3Cellipse cx='66' cy='121' rx='14' ry='7' transform='rotate(-43 66 121)'/%3E%3Cellipse cx='92' cy='98' rx='13' ry='6.5' transform='rotate(-43 92 98)'/%3E%3Cellipse cx='120' cy='81' rx='12' ry='6' transform='rotate(-40 120 81)'/%3E%3Cellipse cx='146' cy='69' rx='10' ry='5.3' transform='rotate(-38 146 69)'/%3E%3Cellipse cx='156' cy='153' rx='12' ry='5.8' transform='rotate(-8 156 153)'/%3E%3Cellipse cx='183' cy='138' rx='11.5' ry='5.6' transform='rotate(-10 183 138)'/%3E%3Cellipse cx='205' cy='121' rx='11' ry='5.3' transform='rotate(-12 205 121)'/%3E%3C/g%3E%3C/svg%3E");
}
.philosophy-section p.jp {
  font-family: var(--font-serif-jp);
  font-size: 2.2rem; letter-spacing: .24em;
  color: #9aaeb2;
  margin: 12px auto 46px;
}
.philosophy-copy {
  font-family: var(--font-serif-jp);
  font-size: 1.9rem; line-height: 2.25; letter-spacing: .03em;
  color: #2f3f4a;
  max-width: 34em;
  margin: 0 auto 30px;
  text-wrap: pretty;
}
.philosophy-copy + .philosophy-copy { margin-top: 8px; }
.philosophy-section .btn { margin-top: 34px; }
/* Philosophyセクション (index.html) ここまで*/

/* ============================================================
   ボタン index.html と product.html 共通
============================================================ */
.btn a {
  border: 1.5px solid var(--forest); border-radius: 3px;
  font-size: 1.5rem; display: block; text-align: center;
  width: 100%; max-width: 200px; margin: 40px auto 0;
  padding: 15px 0; color: var(--forest);
  position: relative; overflow: hidden;
  transition: color .5s;
  line-height: 2; letter-spacing: .1em;
}
.btn a span,
.btn a::after { position: relative; z-index: 1; }
.btn a::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--forest);
  transform: scaleX(0); transform-origin: right;
  transition: transform .55s var(--ease);
}
.btn a:hover { color: #fff; }
.btn a:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-arrow-right a::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 20px;
  width: 8px; height: 8px; margin: auto;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  box-sizing: border-box; z-index: 1;
}


/* ============================================================
   Products セクション (index.html)
============================================================ */
.section-content {
  background: var(--sage);
  margin: 0 calc(50% - 50vw);
  padding: 72px calc(50vw - 50% + 28px);
}
.section-content h2 { color: #fff; }
.section-content p.jp {
  font-size: 1.25rem; letter-spacing: .22em;
  color: #fff; text-align: center;
  margin: 0 0 52px;
}

.showcase-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  width: 100%;
}
.showcase-item {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s;
}
.showcase-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .2);
}
.showcase-item a {
  display: flex; flex-direction: column;
  height: 100%; color: inherit;
}

.img-wrap {
  aspect-ratio: 4 / 3;
  position: relative; overflow: hidden;
  background: var(--forest);
}
.img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .65s var(--ease);
}
.showcase-item:hover .img-wrap img { transform: scale(1.07); }

.description {
  background: rgba(47, 79, 79, .86);
  padding: 18px 20px 22px;
  width: 100%;
  flex-grow: 1;
}
.description .title {
  font-family: var(--font-en);
  font-size: 2.0rem; font-weight: 400; color: #fff;
  margin-bottom: 8px;
  letter-spacing: .06em; line-height: 1.3;
}
.details {
  font-size: 1.35rem; letter-spacing: .06em;
  color: rgba(255, 255, 255, .78); line-height: 1.85;
}


/* ============================================================
   ウェーブ (index.html)
============================================================ */
.wave-section {
  position: relative;
  background: var(--sage); height: 90px;
  margin: 0 calc(50% - 50vw); overflow: hidden;
}
.wave-section svg {
  position: absolute; bottom: 0; left: 0;
  width: 200%; height: 100%;
  animation: waveSlide 10s linear infinite;
}
@keyframes waveSlide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ============================================================
   ニュース (index.html)
============================================================ */
.section-news { padding: 100px 0 80px; }
.section-news h2 { margin-bottom: 8px; }
.section-news .jp {
  font-size: 1.25rem; letter-spacing: .22em;
  color: var(--sage); text-align: center; margin: 0 0 48px;
}

dl.info {
  border: 1.5px solid rgba(47, 79, 79, .3);
  border-radius: 8px; overflow: hidden;
}
.info-item {
  display: flex; align-items: baseline; gap: 32px;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(47, 79, 79, .1);
  font-size: 1.5rem;
  transition: background .25s;
}
.info-item:last-child { border-bottom: none; }
.info-item:hover { background: var(--cream); }
.info-item dt {
  flex-shrink: 0;
  font-size: 1.2rem; color: var(--sage);
  white-space: nowrap; width: 10em; letter-spacing: .04em;
}
.info-item dd { color: var(--forest); line-height: 1.7; }


/* ============================================================
   フッター　(index.html)
============================================================ */
footer { background: var(--forest); }

.foot-brand-top { display: flex; align-items: center; gap: 8px; }
.foot-brand-top .foot-logo-img {
  height: 28px; width: auto;
  margin-top: -23px; margin-right: 4px;
}

.foot-upper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px; align-items: start;
  padding: 64px 56px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.foot-logo-img {
  height: 28px; width: auto; display: block;
  filter: brightness(0) invert(1); opacity: .9;
}
.foot-brand-name {
  font-family: var(--font-en);
  font-size: 2.2rem; font-weight: 400;
  color: rgba(255, 255, 255, .5);
  line-height: 1; margin-bottom: 14px; letter-spacing: .06em;
}
.foot-tagline {
  font-size: 1.3rem; color: rgba(255, 255, 255, .5);
  line-height: 1.7; letter-spacing: .06em;
  margin-bottom: 24px; max-width: 260px;
}

.foot-sns { display: flex; align-items: center; gap: 10px; }
.foot-sns a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s;
}
.foot-sns a:hover { background: rgba(255, 255, 255, .15); border-color: rgba(255, 255, 255, .6); }
.foot-sns img {
  width: 15px; height: 15px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .8;
}

.foot-nav-block {
  display: flex;
  gap: 56px;
 }
.foot-nav-group h3 {
  font-family: var(--font-en);
  font-size: 1.05rem; color: rgba(255, 255, 255, .45);
  letter-spacing: .18em; margin-bottom: 16px; font-weight: 400;
}
.foot-nav-group ul { display: flex; flex-direction: column; gap: 10px; }
.foot-nav-group li a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .04em; display: block;
  transition: color .2s;
   white-space: nowrap;
}
.foot-nav-group li a:hover { color: var(--amber); }

.foot-lower {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px; flex-wrap: wrap; gap: 8px;
}
.foot-lower small {
  font-size: 1.1rem; color: rgba(255, 255, 255, .35);
  letter-spacing: .06em; display: block; line-height: 1;
}
.foot-lower-links { display: flex; gap: 24px; }
.foot-lower-links a {
  font-size: 1.1rem; color: rgba(255, 255, 255, .35);
  letter-spacing: .04em; transition: color .2s;
}
.foot-lower-links a:hover { color: rgba(255, 255, 255, .7); }


/* ============================================================
   Coming Soon ページ
============================================================ */
.coming-soon-page {
  background-color: #faf7f2;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.coming-soon-wrapper {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px; text-align: center;
}
.coming-soon-content { animation: fadeInUp 1.2s ease-out; }
.coming-soon-title {
  font-family: var(--font-en);
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--forest); line-height: 1.1; margin-bottom: 10px;
}
.coming-soon-text {
  margin-top: 30px;
  font-size: 1.4rem; line-height: 1.8;
  color: #5a7575; letter-spacing: .05em;
}
.btn-back { margin-top: 50px; }
.btn-back a {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid var(--forest); color: var(--forest);
  font-size: 1.2rem; letter-spacing: .1em;
  transition: background .3s, color .3s;
}
.btn-back a:hover { background: var(--forest); color: #fff; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   レスポンシブ
============================================================ */
@media (max-width: 960px) {
  .showcase-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .img-wrap { height: 190px; }
}

@media (max-width: 768px) {
  header { padding: 0 20px; height: 60px; }
  header h1 { font-size: 2.4rem; }
  nav.global { display: none; }
  .hbg { display: flex; }
  .hero-slider { height: 56svh; min-height: 300px; max-height: 460px; }
  .hero-text { padding: 0 0 44px 24px; }
  .hero-text p { font-size: clamp(2.0rem, 5.5vw, 2.8rem); line-height: 1.85; }
  .hero-dots { right: 16px; bottom: 14px; }
  .scroll-ind { display: none; }

  .wrapper { width: 92%; }
  section h2 { font-size: clamp(3.8rem, 9vw, 5.2rem); }
  section.wrap { padding: 72px 0; }
  div.content section p { font-size: 1.6rem; }
  div.sec-desc p { font-size: 1.15rem; }
  section.wrap.philosophy-section {
  padding: 60px calc(50vw - 50% + 18px) 52px;
}
  .philosophy-section p.jp { font-size: 1.8rem; margin-bottom: 36px; }
  .philosophy-section::after { width: 260px; height: 260px; right: -30px; bottom: -34px; opacity: .32; }
  .philosophy-copy { font-size: 1.6rem; line-height: 2.0; max-width: 100%; margin-bottom: 24px; }

  .section-content { padding: 56px 20px; }
  .img-wrap { height: 220px; }
  .wave-section { height: 64px; }

  .section-news { padding: 72px 0 56px; }
  .info-item { flex-direction: column; gap: 6px; padding: 16px 20px; }
  .info-item dt { width: auto; }
  .foot-upper { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 36px; }
  .foot-nav-block { gap: 24px; }
  .foot-nav-group h3 { font-size: 1.0rem; margin-bottom: 12px; }
  .foot-lower { padding: 16px 24px; flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 600px) {
  .showcase-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-text { padding: 0 0 36px 18px; }
  .btn a { max-width: 180px; font-size: 1.4rem; }
  .section-content { padding: 48px 14px; }
  .info-item { padding: 14px 16px; }
  .mob-menu { padding: 0 28px 48px; }
  .mob-head { margin: 0 -28px; padding: 0 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
  PAGE: philosophy (philosophy.html)
============================================================ */
.philosophy-page {
   background: #faf8f4;
   overflow-x: hidden;
    }
.about-main {
      padding-top: 68px;
    }
/* HERO — パララックス風フルスクリーン */
.about-hero {
   position: relative;
   height: 100svh;
   min-height: 560px;
   display: flex;
   align-items: flex-end;
   overflow: visible;
    }

    .philosophy-page .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1556228578-8c89e6adf883?w=1600&auto=format&fit=crop&q=80');
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.08);
      transition: transform 12s ease-out;
      will-change: transform;
      overflow: hidden;
    }
    .philosophy-page .hero-bg.loaded {
       transform: scale(1);
       }
    .philosophy-page .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(20, 30, 28, 0.82) 0%,
        rgba(20, 30, 28, 0.28) 55%,
        rgba(20, 30, 28, 0.08) 100%
      );
      overflow: hidden;
    }
    .hero-title-group {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end; /* 右端を揃える */
}
    .philosophy-page .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 72px 80px;
      width: 100%;
    }
    /*.philosophy-page .hero-eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      letter-spacing: .32em;
      color: rgba(255,255,255,.55);
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp .9s .3s ease forwards;
    }*/
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(5.6rem, 9vw, 11rem);
      font-weight: 500;
      line-height: .95;
      color: #fff;
      letter-spacing: -.01em;
      margin-bottom: 32px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s .5s ease forwards;
    }
    .philosophy-page .hero-title em {
      font-style: italic;
      color: rgba(221,161,70,.9);
    }
     .philosophy-page .hero-sub {
      display: flex;
      align-items: center;
      gap: 16px;
      opacity: 0;
      animation: fadeUp .9s .75s ease forwards;
      justify-content: flex-end; /* 追加：右寄せ */
      width: clamp(340px, 57vw, 890px); /* h2の幅に合わせて調整 */
    }
    .philosophy-page .hero-sub::before {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: rgba(255,255,255,.45);
    }
    .philosophy-page .hero-sub p {
      font-family: 'Noto Serif JP', serif;
      font-size: 1.8rem;
      color: rgba(255,255,255,.7);
      letter-spacing: .18em;
    }
    .philosophy-page .hero-scroll {
      position: absolute;
      right: 52px;
      bottom: 52px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: fadeIn 1s 1.2s ease forwards;
    }
    .philosophy-page .hero-scroll span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      letter-spacing: .22em;
      color: rgba(255,255,255,.45);
      writing-mode: vertical-rl;
    }
    .philosophy-page .scroll-line {
      width: 1px;
      height: 52px;
      background: rgba(255,255,255,.35);
      position: relative;
      overflow: hidden;
    }
    .philosophy-page .scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(221,161,70,.8);
      animation: scrollDown 2s 1.4s ease-in-out infinite;
    }

    /* INTRO — テキスト＋画像の二段構成 */
    .about-intro {
      padding: 120px 0 0;
    }
    .intro-grid {
      display: grid;
      grid-template-columns: 6fr 4fr;
      gap: 0;
      align-items: stretch;
    }
    .intro-text-col {
      padding: 80px 72px 80px 0;
    }
    .intro-text-col .eyebrow {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      letter-spacing: .28em;
      color: #a89a85;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .intro-text-col .eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: #c8b89a;
    }
    .intro-text-col h3 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(2.6rem, 3.2vw, 3.8rem);
      color: #2a3d3a;
      line-height: 1.75;
      font-weight: 500;
      margin-bottom: 32px;
    }
    .intro-text-col p {
      font-size: 1.5rem;
      line-height: 2.2;
      color: #596060;
      margin-bottom: 32px;
    }
    .intro-img-col {
      position: relative;
      overflow: hidden;
      top: -60px;
    }
    .intro-img-col img {
      width: 100%;
      object-fit: cover;
      display: block;
      transition: transform 8s ease;
      aspect-ratio: 4 / 5;
    }

    .intro-img-col:hover img {
      transform: scale(1.04);
    }
    .intro-img-label {
      position: absolute;
      bottom: 28px;
      left: 28px;
      background: rgba(20,30,28,.55);
      backdrop-filter: blur(6px);
      padding: 10px 18px;
      border-left: 2px solid rgba(221,161,70,.7);
    }
    .intro-img-label p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      letter-spacing: .2em;
      color: rgba(255,255,255,.75);
    }

    /* QUOTE BANNER */
    .about-quote {
      margin: 0 calc(50% - 50vw);
      background: #2f4f4f;
      padding: 80px calc(50vw - 50% + 72px);
      position: relative;
      overflow: hidden;
    }
    .about-quote::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 24rem;
      color: rgba(255,255,255,.04);
      position: absolute;
      top: -40px;
      left: 40px;
      line-height: 1;
      pointer-events: none;
    }
    .about-quote blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 3.2vw, 2.2rem);
      font-weight: 400;
      font-style: italic;
      color: rgba(255,255,255,.88);
      line-height: 1.65;
      max-width: 800px;
      position: relative;
      z-index: 1;
    }
    .about-quote cite {
      display: block;
      font-family: 'Noto Sans JP', sans-serif;
      font-style: normal;
      font-size: 1.2rem;
      letter-spacing: .16em;
      color: rgba(221,161,70,.75);
    }

    /* VALUES — 交互レイアウト */

    .values-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .values-header .en {
      font-family: 'Cormorant Garamond', serif;
      letter-spacing: .28em;
      color: #a89a85;
      font-size: 1.3rem;
      margin-top: 55px;
      margin-bottom: 14px;
    }
    .values-header h3 {
      font-family: 'Noto Serif JP', serif;
      color: #2a3d3a;
      font-size: clamp(2rem, 4vw, 3.8rem);
      font-weight: 200;
    }
    .value-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 480px;
      margin-bottom: 4px;
    }
    .value-row:last-child { margin-bottom: 0; }
    .value-row.reverse .value-img { order: 2; }
    .value-row.reverse .value-body { order: 1; }
    .value-img {
      position: relative;
      overflow: hidden;
    }
    .value-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 7s ease;
    }
    .value-img:hover img { transform: scale(1.05); }
    .value-body {
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 64px;
      border: 1px solid rgba(47,79,79,.08);
    }
    .value-body .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      color: rgba(47,79,79,.12);
      line-height: 1;
      margin-bottom: 20px;
    }
    .value-body h4 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(2.4rem, 2.8vw, 3.2rem);
      color: #2a3d3a;
      margin-bottom: 20px;
      font-weight: 500;
      line-height: 1.5;
    }
    .value-body p {
      font-size: 1.55rem;
      color: #596060;
      line-height: 2.15;
    }
    .value-tag {
      display: inline-block;
      margin-top: 24px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      letter-spacing: .22em;
      color: #a89a85;
      border-top: 1px solid rgba(47,79,79,.15);
      padding-top: 16px;
    }

    /* STRENGTH — アイコン＋カード */
    .about-strength {
      margin: 0 calc(50% - 50vw);
      background: #f2efe8;
      padding: 100px calc(50vw - 50% + 72px);
    }
    .strength-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 32px;
    }
    .strength-header .left .en {
      font-family: 'Cormorant Garamond', serif;
      letter-spacing: .28em;
      color: #a89a85;
      font-size: 1.3rem;
      margin-bottom: 14px;
    }
    .strength-header h3 {
      font-family: 'Noto Serif JP', serif;
      color: #2a3d3a;
      font-size: clamp(2.8rem, 3.6vw, 3.8rem);
      font-weight: 500;
    }
    .strength-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .strength-card {
      background: #fff;
      border-radius: 4px;
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
      transition: transform .4s ease, box-shadow .4s ease;
    }
    .strength-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(47,79,79,.1);
    }
    .strength-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 0;
      background: var(--amber);
      transition: height .5s ease;
    }
    .strength-card:hover::before { height: 100%; }
    .strength-card .label {
      font-family: 'Cormorant Garamond', serif;
      color: #b8a88a;
      letter-spacing: .18em;
      margin-bottom: 12px;
      font-size: 1.2rem;
    }
    .strength-card h4 {
      font-family: 'Noto Serif JP', serif;
      color: #2a3d3a;
      font-size: clamp(2.0rem, 2.2vw, 2.6rem);
      margin-bottom: 16px;
      font-weight: 500;
      line-height: 1.6;
    }
    .strength-card p {
      color: #5a6363;
      font-size: 1.45rem;
      line-height: 2;
    }

    /* TEAM IMAGE STRIP — 横スクロール写真帯 */
    .about-strip {
      padding: 80px 0 0;
      overflow: hidden;
    }
    .strip-track {
      display: flex;
      gap: 12px;
      animation: stripScroll 28s linear infinite;
      width: max-content;
    }
    .strip-track:hover { animation-play-state: paused; }
    .strip-item {
      width: 320px;
      height: 220px;
      flex-shrink: 0;
      overflow: hidden;
      border-radius: 2px;
    }
    .strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }
    .strip-item:hover img { transform: scale(1.06); }

    /* CTA */
    .about-cta {
      position: relative;
      overflow: hidden;
      padding: 100px calc(50vw - 50% + 72px);
      text-align: center;
    }
    .cta-bg-text {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(8rem, 18vw, 18rem);
      font-weight: 600;
      color: rgba(255,255,255,.035);
      letter-spacing: -.02em;
      pointer-events: none;
      user-select: none;
    }
    .about-cta h3 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(2.6rem, 3.8vw, 4rem);
      line-height: 1.85;
      margin-bottom: 18px;
      font-weight: 500;
      color: #fff;
      position: relative;
      z-index: 1;
    }
    .about-cta p {
      font-size: 1.5rem;
      line-height: 2;
      color: #5a6363;
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
    }
    .cta-btn {
      display: inline-block;
      padding: 16px 48px;
      border: 1px solid rgba(221,161,70,.6);
      color: rgba(221,161,70,.9);
      font-size: 1.4rem;
      letter-spacing: .12em;
      transition: background .3s, color .3s, border-color .3s;
      position: relative;
      z-index: 1;
    }
    .cta-btn:hover {
      background: var(--amber);
      border-color: var(--amber);
      color: #fff;
    }

    /*  REVEAL ANIMATIONS */
    .js-reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .9s cubic-bezier(.23,1,.32,1), transform .9s cubic-bezier(.23,1,.32,1);
    }
    .js-reveal.visible {
      opacity: 1;
      transform: none;
    }
    .js-reveal.d1 { transition-delay: .1s; }
    .js-reveal.d2 { transition-delay: .22s; }
    .js-reveal.d3 { transition-delay: .34s; }
    .js-reveal.d4 { transition-delay: .46s; }

     /* KEYFRAMES */
    @keyframes fadeUp {
      to { opacity: 1; transform: none; }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }
    @keyframes stripScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes scrollDown {
      0%   { top: -100%; }
      100% { top: 200%; }
    }
    /* RESPONSIVE */
    @media (max-width: 960px) {
      .intro-grid,
      .value-row {
        grid-template-columns: 1fr;
      }
      .intro-text-col { padding: 56px 0 0; }
      .value-row { min-height: auto; }
      .value-row.reverse .value-img { order: 1; }
      .value-row.reverse .value-body { order: 2; }
      .value-img { height: 260px; }
      .value-body { padding: 40px 28px; }
      .strength-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .philosophy-page .about-main { padding-top: 60px; }
      .philosophy-page .hero-sub { 
        justify-content: flex-end;
        width: 100%;
        }
      .philosophy-page .hero-sub p {
        font-size: 1.4rem; /* 文字を小さく */
        }
      .philosophy-page .hero-sub::before {
        width: 24px; /* 線を短く */
        }
       .philosophy-page .hero-scroll {
        display: flex; /* noneを上書きして表示 */
        right: 8px;
        bottom: -25px;
        }
    .philosophy-page .hero-bg {
    background-position: center 20%; /* 数値を小さくするほど上に */
  }
      .about-intro { padding: 80px 0 0; }
      .about-quote { padding: 64px calc(50vw - 50% + 24px); }
      .values-header { margin-bottom: 48px; }
      .about-strength { padding: 80px calc(50vw - 50% + 24px);}
      .strength-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      .about-cta { padding: 80px calc(50vw - 50% + 24px); }
      .strip-item { width: 220px; height: 160px; }


      .intro-text-col p {margin-bottom: 92px;}
      .about-quote cite {
      margin-top: 10px;
      margin-left: 80px;
    }
  }
/* ============================================================
  PAGE: philosophy (philosophy.html)ここまで
============================================================ */

/* ============================================================
   PAGE: Products (product.html)
============================================================ */
body.products {
  --nav-h:   68px;
  --p-mid:   #5a5650;
  --p-light: #a09880;
  --p-line:  rgba(160, 152, 128, .22);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.8;
}

/* ヒーロー */
body.products .hero {
  padding-top: var(--nav-h);
  position: relative; height: 56vh; min-height: 380px;
  overflow: hidden; display: flex; align-items: flex-end;
}
body.products .hero-bg {
  position: absolute; inset: 0;
  background-image: url("../images/product-hero.png");
  background-size: cover; background-position: center 35%;
  transform: scale(1.06);
  animation: pfProductHeroZoom 9s ease-out forwards;
}
@keyframes pfProductHeroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
body.products .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30, 28, 24, .05) 0%, rgba(30, 28, 24, .52) 65%, rgba(30, 28, 24, .75) 100%);
}
body.products .hero-content {
  position: relative; z-index: 2;
  padding: 0 64px 56px;
  opacity: 0; transform: translateY(20px);
  animation: pfProductFadeUp .9s .25s var(--ease2) forwards;
}
@keyframes pfProductFadeUp { to { opacity: 1; transform: translateY(0); } }

body.products .hero-en-label {
  font-family: var(--font-en2);
  font-size: 1.15rem; letter-spacing: .28em;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase; margin-bottom: 12px;
}
body.products .hero-title {
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400;
  color: #fff; letter-spacing: .06em; line-height: 1.18;
}
body.products .hero-title em {
  font-style: italic; font-family: var(--font-en2);
  color: rgba(255, 255, 255, .65); font-size: .82em;
}
body.products .hero-title-jp {
  margin-top: 10px; font-family: var(--font-serif-jp);
  font-size: 1.4rem; font-weight: 400;
  color: rgba(255, 255, 255, .5); letter-spacing: .14em;
}

/* パンくず */
body.products .breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 64px;
  font-size: 1.12rem; color: var(--p-light); letter-spacing: .08em;
  border-bottom: 1px solid var(--p-line);
}
body.products .breadcrumb a { color: var(--p-light); transition: color .2s; }
body.products .breadcrumb a:hover { color: var(--amber); }

/* アンカーナビ */
body.products .anchor-nav {
  position: sticky; top: var(--nav-h); z-index: 90;
  background: rgba(247, 243, 237, .96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--p-line);
}
body.products .anchor-nav-inner {
  display: flex; align-items: center;
  padding: 0 64px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
body.products .anchor-tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 16px 40px; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: border-color .25s;
  text-decoration: none; white-space: nowrap;
}
body.products .anchor-tab:hover { border-bottom-color: rgba(221, 161, 70, .4); }
body.products .anchor-tab.active { border-bottom-color: var(--amber); }
body.products .anchor-tab-en {
  font-family: var(--font-en);
  font-size: 1.8rem; letter-spacing: .06em;
  color: var(--forest); transition: color .25s;
}
body.products .anchor-tab-jp {
  font-size: 1.0rem; letter-spacing: .1em;
  color: var(--p-light); transition: color .25s;
}
body.products .anchor-tab.active .anchor-tab-en,
body.products .anchor-tab:hover .anchor-tab-en { color: var(--amber); }

/* ラインナップセクション */
body.products .lineup-section { padding: 95px 64px; scroll-margin-top: calc(var(--nav-h) + 58px); }
body.products .lineup-section--alt { background: rgba(255, 255, 255, .6); }
body.products .sec-header {
  display: grid; grid-template-columns: auto 2fr;
  align-items: end; gap: 48px;
  margin-bottom: 72px; padding-bottom: 36px;
  border-bottom: 1px solid var(--p-line);
}

body.products .sec-category-en {
  font-family: var(--font-en2);
  font-size: 1.1rem; letter-spacing: .26em;
  color: var(--amber); text-transform: uppercase;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
}
body.products .sec-category-en::before {
  content: ""; display: block;
  width: 28px; height: 1px; background: var(--amber);
}
body.products .sec-title {
  font-family: var(--font-en);
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 400;
  letter-spacing: .04em; color: var(--forest); line-height: 1.2;
}
body.products .sec-title-jp {
  font-family: var(--font-serif-jp);
  font-size: 1.3rem; font-weight: 400;
  color: var(--p-mid); margin-top: 6px; letter-spacing: .1em;
}
body.products .sec-desc {
  font-size: 1.8rem; color: var(--p-mid);
  line-height: 2.1; max-width: 800px; align-self: end;
  font-family: var(--font-serif-jp); font-weight: 500;
}

/* ラインナップカード */
body.products .lineup-cards { display: flex; flex-direction: column; gap: 2px; }
body.products .lineup-card {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 440px;
  min-height: 340px; overflow: hidden;
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s var(--ease2), transform .75s var(--ease2);
}
body.products .lineup-card.visible { opacity: 1; transform: translateY(0); }
body.products .lineup-card:nth-child(even) { direction: rtl; }
body.products .lineup-card:nth-child(even) > * { direction: ltr; }
body.products .card-photo {
   position: relative;
   overflow: hidden;
   background: #e0dbd2;
   }
body.products .card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .85s var(--ease2);
}
body.products .lineup-card:hover .card-photo img { transform: scale(1.05); }

body.products .card-photo-badge {
  position: absolute; top: 24px; left: 24px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
body.products .badge {
  display: inline-block; font-family: var(--font-en2);
  font-size: 1.0rem; letter-spacing: .16em;
  text-transform: uppercase; padding: 4px 10px;
  color: #fff; background: var(--forest);
}
body.products .badge.organic { background: var(--sage); }
body.products .badge.quasi   { background: var(--brown); }
body.products .card-body {
  background: var(--off);
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body.products .card-function-label {
   display: flex;
   align-items: baseline;
   gap: 16px;
   margin-bottom: 20px;
   }
body.products .card-function-jp {
  font-family: var(--font-serif-jp);
  font-size: 2rem; font-weight: 390;
  color: var(--forest); letter-spacing: .06em;
}
body.products .card-function-en {
  font-family: var(--font-en2);
  font-size: 1.3rem; color: var(--sage);
  letter-spacing: .14em; font-style: italic;
}

  /* カード強みポイント */
body.products .card-points {
  list-style: none;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.products .card-points li {
  font-size: 1.3rem;
  color: var(--p-mid);
  line-height: 1.8;
  padding-left: 14px;
  position: relative;
}
body.products .card-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

/* カード実績数値 */
body.products .card-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 28px;
  padding: 16px 0;
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
}
body.products .card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
body.products .card-stat-num {
  font-family: var(--font-en2);
  font-size: 2.2rem;
  color: var(--forest);
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}
body.products .card-stat-num small {
  font-size: 1.4rem;
}
body.products .card-stat-label {
  font-size: 1.0rem;
  color: var(--p-light);
  letter-spacing: .08em;
  white-space: nowrap;
}
body.products .card-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--p-line);
  flex-shrink: 0;
}

body.products .card-desc {
  font-family: var(--font-serif-jp);
  color:var(--p-mid);; font-size: 1.5rem;
  line-height: 2.1; margin-bottom: 50px;
}
body.products .sec-desc p {
  margin-top: 0;
  margin-bottom: 0.1em;
}
body.products .sec-desc p + p {
  margin-top: 0;
}
body.products .formulation-groups { display: flex; flex-wrap: wrap; gap: 20px 36px; }
body.products .formulation-group-title {
  font-family: var(--font-en2);
  font-size: 1.05rem; letter-spacing: .2em;
  color: var(--amber); text-transform: uppercase;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
body.products .formulation-group-title::before {
  content: ""; display: inline-block;
  width: 14px; height: 1px; background: var(--amber);
}
body.products .formulation-tags { display: flex; flex-wrap: wrap; gap: 6px; }
body.products .formulation-tag {
  font-size: 1.3rem; letter-spacing: .05em;
  color: var(--forest);
  border: 1px solid rgba(47, 79, 63, .2);
  padding: 4px 12px;
  background: rgba(47, 79, 63, .03);
  transition: background .2s, border-color .2s, color .2s;
  cursor: default;
}

/* 医薬部外品ブロック */
body.products .quasi-block {
  background: var(--forest);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 360px; overflow: hidden;
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s var(--ease2), transform .75s var(--ease2);
}
body.products .quasi-block.visible { opacity: 1; transform: translateY(0); }
body.products .quasi-photo { position: relative; overflow: hidden; }
body.products .quasi-photo img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .55; transition: transform .85s var(--ease2);
}
body.products .quasi-block:hover .quasi-photo img { transform: scale(1.05); }
body.products .quasi-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(47, 79, 63, .5), transparent);
}
body.products .quasi-body {
  padding: 52px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
body.products .quasi-label {
  font-family: var(--font-en2);
  font-size: 1.05rem; letter-spacing: .26em;
  color: rgba(255, 255, 255, .42);
  text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
body.products .quasi-label::before {
  content: ""; display: block;
  width: 22px; height: 1px; background: var(--amber);
}
body.products .quasi-title {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 400;
  color: #fff; letter-spacing: .04em; margin-bottom: 6px;
}
body.products .quasi-title-jp {
  font-family: var(--font-serif-jp);
  font-size: 1.3rem; color: rgba(255, 255, 255, .45);
  letter-spacing: .1em; margin-bottom: 24px;
}
body.products .quasi-desc {
  font-size: 1.3rem; color: rgba(255, 255, 255, .6);
  line-height: 2.1; margin-bottom: 28px;
  font-family: var(--font-serif-jp);
}
body.products .quasi-tags { display: flex; flex-wrap: wrap; gap: 8px; }
body.products .quasi-tag {
  font-size: 1.12rem; letter-spacing: .08em;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 5px 14px;
  transition: background .2s, border-color .2s;
}
body.products .quasi-tag:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .5); }

/* ミニカード */
body.products .mini-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 440px; align-items: stretch;
}
body.products .mini-card {
  display: grid; grid-template-columns: 260px 1fr;
  min-height: 280px; overflow: hidden;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease2), transform .6s var(--ease2);
}
body.products .mini-card.visible { opacity: 1; transform: translateY(0); }
body.products .mini-card:nth-child(2) { transition-delay: .1s; }
body.products .mini-card-photo { overflow: hidden; background: #e8e3db; }
body.products .mini-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease2);
}
body.products .mini-card:hover .mini-card-photo img { transform: scale(1.07); }
body.products .mini-card-body {
  background: var(--off); padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
body.products .mini-title-jp {
  font-family: var(--font-serif-jp);
  font-size: 1.7rem; font-weight: 400;
  color: var(--forest); letter-spacing: .06em; margin-bottom: 4px;
}
body.products .mini-title-en {
  font-family: var(--font-en2);
  font-size: 1.15rem; color: var(--sage);
  letter-spacing: .14em; font-style: italic; margin-bottom: 20px;
}
body.products .mini-group-title {
  font-family: var(--font-en2);
  font-size: 1.0rem; letter-spacing: .18em;
  color: var(--amber); text-transform: uppercase; margin-bottom: 8px;
}
body.products .mini-tags { display: flex; flex-wrap: wrap; gap: 5px; }
body.products .mini-tag {
  font-size: 1.1rem; letter-spacing: .05em;
  color: var(--forest);
  border: 1px solid rgba(47, 79, 63, .2);
  padding: 3px 10px;
  transition: background .2s, color .2s;
}
body.products .mini-tag:hover { background: var(--forest); color: #fff; }

/* フィーチャーストリップ */
body.products .feature-strip { background: var(--forest); overflow: hidden; }
body.products .feature-strip-inner {
  display: flex; width: max-content;
  animation: pfStripScroll 32s linear infinite;
}
@keyframes pfStripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
body.products .feature-strip-inner:hover { animation-play-state: paused; }
body.products .strip-item {
  display: flex; align-items: center; gap: 18px;
  padding: 0 52px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  white-space: nowrap;
}
body.products .strip-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}
body.products .strip-text {
  font-family: var(--font-en);
  font-size: 1.1rem; letter-spacing: .1em;
  color: rgba(255, 255, 255, .75);
}
body.products .strip-jp {
  font-family: var(--font-serif-jp);
  font-size: 1.09rem; letter-spacing: .1em;
  margin-left: 4px;
}

/* 原料セクション */
body.products .ingredients-section { padding: 96px 64px; background: rgba(255, 255, 255, .55); }
body.products .ingredients-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 72px;
}
body.products .ingredients-photo { position: relative; overflow: hidden; aspect-ratio: 4/3; }
body.products .ingredients-photo img { width: 100%; height: 100%; object-fit: cover; }
body.products .ingredients-photo::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(221, 161, 70, .3);
  z-index: 2; pointer-events: none;
}
body.products .ingredients-label {
  font-family: var(--font-en2);
  font-size: 1.1rem; letter-spacing: .26em;
  color: var(--amber); text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
body.products .ingredients-label::before {
  content: ""; display: block;
  width: 28px; height: 1px; background: var(--amber);
}
body.products .ingredients-title {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400;
  color: var(--forest); letter-spacing: .04em;
  line-height: 1.25; margin-bottom: 8px;
}
body.products .ingredients-title-jp {
  font-family: var(--font-serif-jp);
  font-size: 1.3rem; color: var(--p-mid);
  letter-spacing: .1em; margin-bottom: 24px;
}
body.products .ingredients-body {
   font-size: 1.35rem;
    color: var(--p-mid);
     line-height: 2.1;
    font-family: var(--font-serif-jp);
   }

body.products .ingredient-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
body.products .ingredient-item {
  background: var(--off); padding: 36px 24px;
  text-align: center; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease2), transform .6s var(--ease2);
}
body.products .ingredient-item.visible { opacity: 1; transform: translateY(0); }
body.products .ingredient-item:nth-child(2) { transition-delay: .08s; }
body.products .ingredient-item:nth-child(3) { transition-delay: .16s; }
body.products .ingredient-item:nth-child(4) { transition-delay: .24s; }
body.products .ingredient-item:nth-child(5) { transition-delay: .32s; }
body.products .ingredient-item:nth-child(6) { transition-delay: .40s; }
body.products .ingredient-item:nth-child(7) { transition-delay: .48s; }
body.products .ingredient-item:nth-child(8) { transition-delay: .56s; }
body.products .ingredient-item::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease2);
}
body.products .ingredient-item:hover::after { transform: scaleX(1); }
body.products .ingredient-photo {
  width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 16px; border: 1px solid var(--line);
}
body.products .ingredient-photo img { width: 100%; height: 100%; object-fit: cover; }
body.products .ingredient-name-en {
  font-family: var(--font-en);
  font-size: 1.05rem; color: var(--forest);
  letter-spacing: .05em; margin-bottom: 3px;
}
body.products .ingredient-name-jp {
  font-family: var(--font-serif-jp);
  font-size: 1.1rem; color: var(--sage);
  letter-spacing: .1em; margin-bottom: 10px;
}
body.products .ingredient-note {
  font-size: 1.15rem;
  color: var(--p-mid);
  line-height: 1.9;
  }

/* CTAセクション */
body.products .cta-section {
  position: relative; padding: 120px 64px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
body.products .cta-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1608248543803-ba4f8c70ae0b?w=1400&auto=format&fit=crop&q=80");
  background-size: cover; background-position: center; opacity: .09;
}
body.products .cta-content { position: relative; z-index: 2; max-width: 640px; }
body.products .cta-label {
  font-family: var(--font-en2);
  font-size: 1.1rem; letter-spacing: .26em;
  color: var(--amber); text-transform: uppercase; margin-bottom: 18px;
}
body.products .cta-title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 400;
  color: var(--forest); letter-spacing: .04em;
  line-height: 1.25; margin-bottom: 8px;
}
body.products .cta-jp {
  font-family: var(--font-serif-jp);
  font-size: 1.4rem; color: var(--p-mid);
  letter-spacing: .1em; margin-bottom: 24px;
}
body.products .cta-desc {
  font-size: 1.35rem; color: var(--p-mid);
  line-height: 2.1; margin-bottom: 32px;
}
body.products .cta-tel {
  font-family: var(--font-en2);
  font-size: 2rem; color: var(--forest);
  letter-spacing: .06em; margin-bottom: 4px;
}
body.products .cta-tel-note {
  font-size: 1.12rem; color: var(--p-light);
  letter-spacing: .1em; margin-bottom: 36px;
}
body.products .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

body.products .btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-en2);
  font-size: 1.2rem; letter-spacing: .18em;
  color: #fff; background: var(--forest);
  padding: 15px 36px; text-transform: uppercase;
  transition: background .3s, gap .3s var(--ease);
}
body.products .btn-primary:hover { background: var(--sage); gap: 20px; }
body.products .btn-primary::after { content: "→"; }

body.products .btn-outline {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-en2);
  font-size: 1.2rem; letter-spacing: .18em;
  color: var(--forest);
  border: 1px solid rgba(47, 79, 63, .35);
  padding: 15px 36px; text-transform: uppercase;
  transition: background .3s, border-color .3s, gap .3s var(--ease);
}
body.products .btn-outline:hover { background: rgba(47, 79, 63, .05); border-color: var(--forest); gap: 20px; }
body.products .btn-outline::after { content: "→"; }

/* Products レスポンシブ */
@media (max-width: 768px) {}
  body.products { --nav-h: 60px; }
  body.products .hero-content    { padding: 0 28px 44px; }
  body.products .breadcrumb      { padding: 14px 28px; }
  body.products .anchor-nav-inner { 
    flex-wrap: wrap;
    padding: 0 16px;
   }

  body.products .anchor-tab      {
    padding: 14px 18px;
    flex: 1 1 calc(50% - 16px); /* 2列 */
    padding: 12px 8px;
    text-align: center;
   }
  body.products .lineup-section  { padding: 64px 28px; }
  body.products .card-body       { padding: 36px 28px; }
  body.products .quasi-body      { padding: 36px 28px; }
  body.products .mini-card-body  { padding: 28px 24px; }
  body.products .ingredients-section { padding: 64px 28px; }
  body.products .cta-section     { padding: 80px 28px; }
  body.products .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
  body.products .cta-btns        { flex-direction: column; align-items: center; }
  body.products .sec-title-jp { text-align: center; }
  body.products .ingredients-title-jp { text-align: center; }
  body.products .mini-title-jp { font-size: 1.4rem; }
  body.products .card-function-label {
    flex-direction: column;
    gap: 4px;
  }
  body.products .card-function-jp {
    font-size: 1.6rem;
    gap: 0;
  }
  body.products .card-function-en {
    font-size: 1.1rem;
  }
  body.products .card-stats { gap: 14px; }
  body.products .card-stat-num { font-size: 1.8rem; }
  body.products .card-stat-label { font-size: 0.9rem; }
      
  body.products .strip-text{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    line-height:1.25;
    white-space:normal;
  }
  body.products .strip-jp{
    display:block;
    margin-top:4px;
    margin-left:0;
    font-size:1em;
  }
body.products .strip-item {
  padding: 0 28px;
  }

@media (max-width: 900px) {
  body.products .lineup-card         { grid-template-columns: 1fr; min-height: auto; }
  body.products .lineup-card:nth-child(even) { direction: ltr; }
  body.products .card-photo          { aspect-ratio: 16/9; }
  body.products .quasi-block         { grid-template-columns: 1fr; }
  body.products .quasi-photo         { aspect-ratio: 16/9; }
  body.products .mini-cards          { grid-template-columns: 1fr; }
  body.products .mini-card           { grid-template-columns: 1fr; }
  body.products .mini-card-photo     { aspect-ratio: 16/9; }
  body.products .ingredients-intro   { grid-template-columns: 1fr; }
  body.products .ingredient-grid     { grid-template-columns: repeat(2, 1fr); }
  body.products .sec-header          { grid-template-columns: 1fr; gap: 20px; }
}