/* =====================================================
   Hiiragi Shouten — Editorial Botanical Design System
   ===================================================== */
/* Hiiragi CSS loaded: cache-bust active */

/* @font-face — Noto Serif JP (ローカル読み込み) */
@font-face {
  font-family: 'Noto Serif JP';
  src: url('../fonts/NotoSerifJP-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Serif JP';
  src: url('../fonts/NotoSerifJP-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==============================================
   カスタムプロパティ
============================================== */
:root {
  --ink:       #1a1a1a;
  --ink-soft:  #2c2a26;
  --gray-deep: #545454;
  --gray-mid:  #8a8a8a;
  --gray-soft: #b8b4ab;
  --line:      #d8d3c5;
  --parchment: #e8e3d4;
  --cream:     #f1ece0;
  --paper:     #faf6ec;
  --berry:     #7a1a1a;

  --serif-jp: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', 'HiraMinProN-W3', serif;
  --serif-en: 'Times New Roman', 'Georgia', 'Times', serif;
  --sc-en:    'Times New Roman', 'Georgia', 'Times', serif;

  --max: 1280px;
  --transition: 0.3s ease;
}

/* ==============================================
   リセット / ベース
============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  font-family: var(--serif-jp);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ==============================================
   スキップリンク (アクセシビリティ)
============================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gray-deep);
  color: var(--paper);
  padding: 0.5em 1em;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ==============================================
   タイポグラフィユーティリティ
============================================== */
.sc {
  font-family: var(--sc-en);
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-size: 11px;
}
.sc-md { font-size: 13px; letter-spacing: 0.4em; }
.serif-en { font-family: var(--serif-en); font-weight: 300; font-style: italic; }
.serif-en-r { font-family: var(--serif-en); font-weight: 400; font-style: normal; }
.num { font-family: var(--serif-en); font-weight: 300; font-style: italic; }

/* ==============================================
   オーナメント
============================================== */
.rule {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gray-mid);
}
.rule::before, .rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.rule .diamond {
  width: 6px; height: 6px;
  background: currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
}
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  color: var(--gray-mid);
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.08em;
  margin: 4rem 0;
}
.ornament .line { width: 60px; height: 1px; background: currentColor; opacity: 0.5; }
.ornament .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.6; }

/* ==============================================
   ヘッダー
============================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: var(--gray-deep);
  border-bottom: 1px solid rgba(250, 246, 236, 0.12);
}

/* ヘッダー固定分のオフセット */
body { padding-top: 84px; }

/* WordPress 管理バー表示時：管理バー分は html の margin-top で吸収されるため
   ヘッダーの top のみ下げる（body の padding-top は据え置き） */
.admin-bar .site-header { top: 32px; }

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.brand-mark {
  height: 42px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
/* 強セレクタ：グローバル img ルール (width:100% 等) の上書き */
.site-header .brand .brand-mark {
  height: 42px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.22em;
  color: var(--paper);
  white-space: nowrap;
  border-left: 1px solid rgba(250, 246, 236, 0.25);
  padding-left: 16px;
}

nav.primary ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
nav.primary a {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(250, 246, 236, 0.88);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
nav.primary a:hover { color: var(--paper); }
nav.primary a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--paper);
  transition: all var(--transition);
  transform: translateX(-50%);
}
nav.primary a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--paper);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.hamburger span:nth-child(1) { width: 28px; }
.hamburger span:nth-child(2) { width: 20px; align-self: flex-end; }

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
  width: 28px;
}
body.menu-open .hamburger span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
  width: 28px;
}

/* ==============================================
   モバイルメニュー
============================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 49;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
body.menu-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}
.mobile-nav-list li a {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.24em;
  color: var(--ink);
  transition: opacity var(--transition);
}
.mobile-nav-list li a:hover { opacity: 0.6; }

/* ==============================================
   ボタン
============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border: 1px solid var(--ink);
  font-family: var(--sc-en);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn .arrow {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sc-en);
  font-size: 12px;
  letter-spacing: 0.32em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.btn-text:hover { opacity: 0.6; }

/* ==============================================
   スクロールアニメーション (Reveal)
============================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================
   フォームメッセージ (WordPress)
============================================== */
.form-message {
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.form-message--success {
  background: rgba(100, 140, 100, 0.1);
  border: 1px solid rgba(100, 140, 100, 0.3);
  color: #2a5a2a;
}
.form-message--error {
  background: rgba(122, 26, 26, 0.06);
  border: 1px solid rgba(122, 26, 26, 0.2);
  color: var(--berry);
}
.form-message ul { padding-left: 1.5rem; list-style: disc; }
.form-message li { margin-bottom: 0.3rem; }

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ==============================================
   フッター
============================================== */
.site-footer {
  background: var(--gray-deep);
  color: var(--paper);
  padding: 100px 40px 40px;
  margin-top: 120px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(250, 246, 236, 0.18);
}
.site-footer .inner { max-width: var(--max); margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-top h4 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.28em;
  margin-bottom: 20px;
  color: rgba(250, 246, 236, 0.55);
}
.footer-top ul { list-style: none; }
.footer-top li {
  margin-bottom: 12px;
  font-size: 14px;
  font-family: var(--serif-jp);
  letter-spacing: 0.08em;
}
.footer-top a { transition: opacity var(--transition); }
.footer-top a:hover { opacity: 0.65; }

.footer-brand .mark {
  height: 38px;
  width: auto;
  max-width: 180px;
  margin-bottom: 22px;
  display: block;
  object-fit: contain;
}
.footer-brand .name {
  font-family: var(--serif-jp);
  font-size: 15px;
  letter-spacing: 0.24em;
  margin-bottom: 10px;
}
.footer-brand .tagline {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(250, 246, 236, 0.7);
  line-height: 1.9;
}
.footer-legal {
  padding: 20px 0 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(250, 246, 236, 0.72);
}
.footer-legal a {
  transition: opacity var(--transition);
  border-bottom: 1px solid rgba(250, 246, 236, 0.3);
  padding-bottom: 3px;
}
.footer-legal a:hover { opacity: 0.65; }
.footer-legal .sep { color: rgba(250, 246, 236, 0.35); }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 236, 0.18);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(250, 246, 236, 0.55);
}
.footer-bottom .en {
  font-family: var(--serif-en);
  font-style: italic;
  letter-spacing: 0.04em;
  font-size: 13px;
}

/* ==============================================
   フロントページ — ヒーロー
============================================== */
.hero {
  position: relative;
  min-height: 760px;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-left { position: relative; z-index: 2; }
.hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--gray-deep);
  margin-bottom: 56px;
}
.hero-meta .ja {
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--gray-deep);
}
.hero h1 {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 44px;
  color: var(--ink);
}
.hero h1 .line { display: block; white-space: nowrap; }
.hero-lede {
  max-width: 460px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 56px;
}
.hero-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--gray-mid);
}
.hero-cta .scroll {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-cta .scroll .bar {
  width: 60px; height: 1px;
  background: var(--gray-mid);
  position: relative;
  overflow: hidden;
}
.hero-cta .scroll .bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 20px;
  background: var(--ink);
  animation: scrollBar 2.4s ease-in-out infinite;
}
@keyframes scrollBar { 0% { left: -20px; } 100% { left: 60px; } }

.hero-right {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.holly-stage {
  position: relative;
  width: 100%; height: 100%;
  overflow: visible;
}
.falling-leaves {
  position: absolute;
  inset: -60px -40px -80px -40px;
  pointer-events: none;
  overflow: hidden;
}
.f-leaf {
  position: absolute;
  width: 76px; height: 48px;
  background: center/contain no-repeat;
  opacity: 0;
}
.f-leaf.lA { background-image: url('../images/leaf-A-green-v5.png'); }
.f-leaf.lB { background-image: url('../images/leaf-B-green-v5.png'); }
.f-leaf.lC { background-image: url('../images/leaf-C-green-v5.png'); width: 48px; height: 76px; }
.f-leaf.small { transform: scale(0.7); }

.f-leaf.fl-1  { left:  6%; animation: drift1 18s linear  0s infinite; }
.f-leaf.fl-2  { left: 22%; animation: drift2 22s linear  3s infinite; }
.f-leaf.fl-3  { left: 36%; animation: drift1 16s linear  7s infinite; }
.f-leaf.fl-4  { left: 52%; animation: drift3 20s linear  2s infinite; }
.f-leaf.fl-5  { left: 66%; animation: drift2 19s linear  9s infinite; }
.f-leaf.fl-6  { left: 80%; animation: drift1 21s linear  5s infinite; }
.f-leaf.fl-7  { left: 44%; animation: drift3 17s linear 13s infinite; }
.f-leaf.fl-8  { left: 14%; animation: drift2 20s linear 11s infinite; }
.f-leaf.fl-9  { left: 74%; animation: drift3 23s linear 15s infinite; }

@keyframes drift1 {
  0%   { transform: translate3d(0, -100px, 0) rotate(-30deg); opacity: 0; }
  8%   { opacity: 0.85; }
  50%  { transform: translate3d(40px, 340px, 0) rotate(70deg); opacity: 0.85; }
  92%  { opacity: 0.75; }
  100% { transform: translate3d(20px, 780px, 0) rotate(160deg); opacity: 0; }
}
@keyframes drift2 {
  0%   { transform: translate3d(0, -100px, 0) rotate(20deg); opacity: 0; }
  8%   { opacity: 0.8; }
  50%  { transform: translate3d(-50px, 340px, 0) rotate(-60deg); opacity: 0.8; }
  92%  { opacity: 0.7; }
  100% { transform: translate3d(-20px, 780px, 0) rotate(-140deg); opacity: 0; }
}
@keyframes drift3 {
  0%   { transform: translate3d(0, -100px, 0) rotate(-60deg) scale(0.75); opacity: 0; }
  8%   { opacity: 0.75; }
  50%  { transform: translate3d(30px, 340px, 0) rotate(40deg) scale(0.75); opacity: 0.75; }
  92%  { opacity: 0.65; }
  100% { transform: translate3d(-10px, 780px, 0) rotate(180deg) scale(0.75); opacity: 0; }
}

/* ==============================================
   フロントページ — お知らせストリップ
============================================== */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.strip-label {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gray-deep);
  border: 1px solid var(--gray-mid);
  padding: 6px 14px;
  flex-shrink: 0;
}
.strip-items {
  display: flex;
  gap: 36px;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.strip-items .item {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 13px;
  font-family: var(--serif-jp);
  white-space: nowrap;
  transition: opacity var(--transition);
  min-width: 0;
}
.strip-items .item:hover { opacity: 0.6; }
.strip-items .date {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--gray-mid);
  font-size: 13px;
}
.strip-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: opacity var(--transition);
}
.strip-more:hover { opacity: 0.6; }

/* ==============================================
   フロントページ — About
============================================== */
.about {
  padding: 140px 40px 120px;
  background: var(--paper);
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}
.about-side {
  position: sticky;
  top: 120px;
  align-self: start;
}
.about-num {
  font-family: var(--serif-en);
  font-weight: 300;
  font-style: italic;
  font-size: 92px;
  line-height: 1;
  color: var(--gray-soft);
  margin-bottom: 24px;
}
.about-side h3 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  line-height: 1.4;
}
.about-side .en-sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 18px;
  color: var(--gray-mid);
  margin-bottom: 28px;
}
.about-side .accent-line {
  width: 60px;
  height: 1px;
  background: var(--ink);
  margin-bottom: 24px;
}
.about-side .note {
  font-family: var(--serif-jp);
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-soft);
}
.about-body h2 {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.65;
  letter-spacing: 0.08em;
  margin-bottom: 56px;
  max-width: 620px;
  color: var(--ink);
}
.about-body .lede {
  font-family: var(--serif-jp);
  font-size: 17px;
  line-height: 2.05;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.about-body p {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  color: var(--ink-soft);
}
.about-body .pull-quote {
  margin: 56px 0;
  padding: 32px 0 32px 40px;
  border-left: 1px solid var(--ink);
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.about-body .pull-quote .en {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--gray-mid);
}
.about-body .signature {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--gray-mid);
}
.about-body .signature .name {
  font-family: var(--serif-jp);
  font-size: 18px;
  letter-spacing: 0.24em;
  color: var(--ink);
}
.about-body .signature .role {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.about-tagline {
  font-weight: 700;
  color: var(--ink) !important;
  letter-spacing: 0.08em;
}

/* ==============================================
   フロントページ — コレクション
============================================== */
.collection {
  padding: 140px 40px 120px;
  background: var(--cream);
}
.collection-inner { max-width: var(--max); margin: 0 auto; }
.collection-head {
  text-align: center;
  margin-bottom: 90px;
}
.collection-head .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 26px;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.collection-head h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.24em;
  line-height: 1.4;
  margin-bottom: 14px;
}
.collection-head .en-sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 20px;
  color: var(--gray-mid);
}
.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.coll-card {
  position: relative;
  padding: 50px 44px 44px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.4s ease;
}
.coll-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(60, 50, 40, 0.08);
}
.coll-illustration {
  height: 280px;
  margin: 0 -8px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.coll-illustration.eminin {
  background: #f1d8d4;
  border: 1px solid #e8c8c2;
}
.coll-illustration.shop {
  background: #d4dcc1;
  border: 1px solid #b9c4a3;
}
.coll-illustration img {
  max-height: 86%;
  max-width: 86%;
  width: auto;
  height: auto;
  display: block;
}
.coll-cat {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gray-deep);
  margin-bottom: 16px;
}
.coll-card h3 {
  font-family: var(--serif-en);
  font-weight: 400;
  font-style: italic;
  font-size: 38px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.coll-card .ja-name {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--gray-mid);
  margin-bottom: 28px;
}
.coll-card .text {
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 36px;
  min-height: 110px;
}
.coll-card .link-row {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ==============================================
   フロントページ — ジャーナル
============================================== */
.journal {
  padding: 140px 40px 120px;
  background: var(--paper);
}
.journal-inner { max-width: var(--max); margin: 0 auto; }
.journal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.journal-head .left .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--gray-mid);
  margin-bottom: 10px;
}
.journal-head h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.4;
  letter-spacing: 0.24em;
}
.journal-head .en-sub {
  margin-top: 8px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 18px;
  color: var(--gray-mid);
}
.journal-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}
.journal-feature .img-frame {
  height: 380px;
  margin-bottom: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
}
.journal-feature .img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.journal-feature .meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--gray-mid);
  margin-bottom: 18px;
}
.journal-feature .meta .cat {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.journal-feature h3 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  max-width: 580px;
}
.journal-feature .excerpt {
  font-family: var(--serif-jp);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.95;
  letter-spacing: 0.05em;
  max-width: 580px;
  margin-bottom: 24px;
}
.journal-list { display: flex; flex-direction: column; }
.journal-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.journal-item:first-child { padding-top: 0; }
.journal-item .jnum {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--gray-mid);
}
.journal-item .cat {
  font-family: var(--serif-jp);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gray-mid);
  margin-bottom: 10px;
  display: block;
}
.journal-item h4 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.journal-item .date {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  color: var(--gray-mid);
}

/* ==============================================
   フロントページ — コンタクトCTA
============================================== */
.contact-cta {
  padding: 140px 40px;
  background: var(--parchment);
  text-align: center;
}
.contact-cta-inner { max-width: 720px; margin: 0 auto; }
.contact-cta .label {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gray-deep);
  margin-bottom: 24px;
  display: block;
}
.contact-cta h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.6;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.contact-cta .en-sub {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 20px;
  color: var(--gray-mid);
  margin-bottom: 40px;
}
.contact-cta p {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 50px;
  color: var(--ink-soft);
}

/* ==============================================
   会社概要ページ
============================================== */
.page-head-company {
  padding: 120px 40px 70px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: end;
}
.page-head-company .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 26px;
  color: var(--gray-mid);
  margin-bottom: 18px;
}
.page-head-company h1 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.4;
  letter-spacing: 0.24em;
  margin-bottom: 12px;
}
.page-head-company .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--gray-mid);
}
.page-head-company .head-right {
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding-bottom: 16px;
}
.profile {
  padding: 80px 40px 60px;
  max-width: var(--max);
  margin: 0 auto;
}
.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
}
.profile-side {
  position: sticky;
  top: 120px;
  align-self: start;
}
.profile-side .label-num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 92px;
  line-height: 1;
  color: var(--gray-soft);
  margin-bottom: 24px;
}
.profile-side h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.24em;
  margin-bottom: 12px;
}
.profile-side .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 18px;
  color: var(--gray-mid);
  margin-bottom: 28px;
}
.profile-side .accent { width: 60px; height: 1px; background: var(--ink); margin-bottom: 28px; }
.profile-side .note {
  font-family: var(--serif-jp);
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-soft);
}
.profile-body dl.spec { border-top: 1px solid var(--line); }
.profile-body .row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.profile-body dt {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--gray-mid);
}
.profile-body dd {
  font-family: var(--serif-jp);
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.profile-body dd .small {
  display: block;
  font-size: 13px;
  color: var(--gray-mid);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.segments {
  padding: 120px 40px;
  background: var(--cream);
}
.segments-inner { max-width: var(--max); margin: 0 auto; }
.segments-head { text-align: center; margin-bottom: 70px; }
.segments-head .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 26px;
  color: var(--gray-mid);
  margin-bottom: 18px;
}
.segments-head h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 48px);
  letter-spacing: 0.24em;
  margin-bottom: 12px;
  line-height: 1.4;
}
.segments-head .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 20px;
  color: var(--gray-mid);
}
.segments-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.segment-item {
  background: var(--paper);
  padding: 44px 40px;
  min-height: 220px;
}
.segment-item.full { grid-column: 1 / -1; }
.segment-item .sno {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--gray-mid);
  margin-bottom: 22px;
  letter-spacing: 0.1em;
}
.segment-item h3 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.18em;
  line-height: 1.45;
  margin-bottom: 6px;
}
.segment-item .en-name {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 16px;
  color: var(--gray-mid);
  margin-bottom: 20px;
}
.segment-item p {
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.location { padding: 120px 40px; background: var(--paper); }
.location-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-info .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 26px;
  color: var(--gray-mid);
  margin-bottom: 18px;
}
.location-info h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 48px);
  letter-spacing: 0.24em;
  line-height: 1.4;
  margin-bottom: 12px;
}
.location-info .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 20px;
  color: var(--gray-mid);
  margin-bottom: 40px;
}
.location-info address {
  font-family: var(--serif-jp);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.location-info .tel,
.location-info .mail {
  font-family: var(--serif-jp);
  font-size: 15px;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 8px;
}
.location-info .tel .lab,
.location-info .mail .lab {
  display: inline-block;
  width: 48px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
}
.map-frame {
  height: 360px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==============================================
   お問い合わせページ
============================================== */
.contact-head {
  padding: 120px 40px 60px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.contact-head .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 26px;
  color: var(--gray-mid);
  margin-bottom: 18px;
}
.contact-head h1 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.4;
  letter-spacing: 0.24em;
  margin-bottom: 14px;
}
.contact-head .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--gray-mid);
  margin-bottom: 36px;
}
.contact-head p {
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.contact-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
}
.contact-form .form-head {
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.contact-form .form-head h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.24em;
}
.contact-form .form-head .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 18px;
  color: var(--gray-mid);
}
.field { margin-bottom: 36px; }
.field > label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 12px;
}
.field label .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}
.field label .req {
  font-family: var(--serif-jp);
  font-size: 11px;
  color: var(--berry);
  letter-spacing: 0.16em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
  font-family: var(--serif-jp);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--berry); }
.field textarea { min-height: 140px; resize: vertical; padding: 14px 0; line-height: 1.8; }
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 14px) 18px, calc(100% - 8px) 18px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.field .check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.field .check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  border: 1px solid var(--ink);
}
.field .check label {
  margin: 0;
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-family: var(--serif-jp);
  cursor: pointer;
}
.submit-bar {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.submit-bar .note {
  font-size: 12px;
  color: var(--gray-mid);
  font-family: var(--serif-jp);
  letter-spacing: 0.08em;
}
.submit-bar .btn { color: var(--ink); border-color: var(--ink); }
.contact-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 36px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.contact-aside .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 36px;
  color: var(--gray-soft);
  margin-bottom: 8px;
  line-height: 1;
}
.contact-aside h3 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.24em;
  margin-bottom: 8px;
}
.contact-aside .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 16px;
  color: var(--gray-mid);
  margin-bottom: 24px;
}
.contact-aside .accent { width: 40px; height: 1px; background: var(--ink); margin-bottom: 24px; }
.contact-aside .channel {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-aside .channel:last-of-type { border-bottom: 0; }
.contact-aside .ch-label {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--gray-mid);
  margin-bottom: 6px;
}
.contact-aside .val {
  font-family: var(--serif-jp);
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.85;
}

/* ==============================================
   ブログ一覧ページ
============================================== */
.blog-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.blog-head .left .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 26px;
  color: var(--gray-mid);
  margin-bottom: 18px;
}
.blog-head h1 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: 0.24em;
  line-height: 1.4;
  margin-bottom: 14px;
}
.blog-head .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--gray-mid);
  margin-bottom: 24px;
}
.blog-head .right {
  padding-bottom: 16px;
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.cat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.cat-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.cat-strip .cat-label {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gray-mid);
  margin-right: 8px;
}
.cat-strip a {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.12em;
  position: relative;
  padding: 4px 0;
}
.cat-strip a.active,
.cat-strip .current-cat a { color: var(--ink); }
.cat-strip a.active::after,
.cat-strip .current-cat a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
}
.cat-strip a:not(.active) { color: var(--gray-deep); }
.blog-featured {
  padding: 100px 40px 60px;
  max-width: var(--max);
  margin: 0 auto;
}
.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-card .img-frame {
  height: 520px;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
}
.featured-card .img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-card .meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--gray-mid);
  margin-bottom: 22px;
}
.featured-card .meta .cat {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.featured-card h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.55;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.featured-card .excerpt {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.archive {
  padding: 60px 40px 100px;
  max-width: var(--max);
  margin: 0 auto;
}
.archive-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
}
.archive-head h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.24em;
}
.archive-head .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 18px;
  color: var(--gray-mid);
  margin-left: 16px;
}
.archive-head .count {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}
.entry .img-frame {
  height: 220px;
  background: var(--cream);
  border: 1px solid var(--line);
  margin-bottom: 22px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.entry .img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.entry:hover .img-frame { transform: translateY(-4px); }
.entry .meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--serif-jp);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gray-mid);
  margin-bottom: 12px;
}
.entry .meta .cat { color: var(--ink); }
.entry h3 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.entry .excerpt {
  font-family: var(--serif-jp);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.pagination .nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.pagination .nav-links a,
.pagination .nav-links span {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 16px;
  padding: 8px 14px;
  color: var(--gray-mid);
  display: inline-block;
}
.pagination .nav-links .current {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

/* ==============================================
   ブログ詳細ページ
============================================== */
.article-head {
  max-width: 860px;
  margin: 0 auto;
  padding: 110px 40px 50px;
  text-align: center;
}
.article-head .breadcrumb {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  margin-bottom: 30px;
}
.article-head .breadcrumb a { color: var(--gray-mid); }
.article-head .breadcrumb a:hover { color: var(--ink); }
.article-head .cat-badge {
  display: inline-block;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--berry);
  padding: 6px 18px;
  border: 1px solid var(--berry);
  margin-bottom: 32px;
}
.article-head h1 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.65;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.article-head .meta-bar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
}
.article-head .meta-bar .author { color: var(--ink); }
.article-head .meta-bar .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.article-hero {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 40px;
}
.article-hero .frame {
  height: 480px;
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
}
.article-hero .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 80px;
  font-family: var(--serif-jp);
  font-size: 17px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.article-body p { margin-bottom: 26px; color: var(--ink-soft); }
.article-body h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  margin: 60px 0 26px;
  padding-top: 32px;
  position: relative;
  color: var(--ink);
}
.article-body h2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--ink);
}
.article-body blockquote {
  margin: 40px 0;
  padding: 28px 0 28px 32px;
  border-left: 1px solid var(--ink);
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.85;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.article-body img {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
  border: 1px solid var(--line);
}
.article-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-start;
}
.article-nav .back-link {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding-bottom: 3px;
  transition: color var(--transition);
}
.article-nav .back-link:hover { color: var(--ink); }

/* ==============================================
   法的ページ
============================================== */
.legal-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 40px 50px;
  text-align: center;
}
.legal-head .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 24px;
  color: var(--gray-mid);
  margin-bottom: 18px;
}
.legal-head h1 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 52px);
  letter-spacing: 0.24em;
  line-height: 1.4;
  margin-bottom: 14px;
}
.legal-head .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 20px;
  color: var(--gray-mid);
  margin-bottom: 28px;
}
.legal-head .updated {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gray-mid);
}
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 40px 100px;
  font-family: var(--serif-jp);
  color: var(--ink);
}
.legal-body > p.lede {
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.legal-body section { margin-bottom: 56px; }
.legal-body section:last-child { margin-bottom: 0; }
.legal-body h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.16em;
  line-height: 1.55;
  margin-bottom: 22px;
  padding-left: 18px;
  position: relative;
}
.legal-body h2::before {
  content: '';
  position: absolute;
  top: 12px; left: 0;
  width: 8px; height: 1px;
  background: var(--ink);
}
.legal-body p {
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.legal-body ul, .legal-body ol {
  padding-left: 24px;
  list-style: disc;
  margin-bottom: 16px;
}
.legal-body li {
  font-size: 14.5px;
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.sct-table { border-top: 1px solid var(--line); margin-bottom: 56px; }
.sct-table .row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.sct-table dt {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
}
.sct-table dd {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.sct-table dd .small {
  display: block;
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ==============================================
   汎用固定ページ
============================================== */
.page-main { min-height: 60vh; }
.page-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px 100px;
}
.page-article .page-header-block {
  margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.page-article h1 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.24em;
  line-height: 1.4;
}
.entry-content {
  font-family: var(--serif-jp);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.entry-content p { margin-bottom: 1.5em; }
.entry-content h2 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.16em;
  margin: 2.5em 0 1em;
  color: var(--ink);
}
.entry-content h3 {
  font-size: 19px;
  letter-spacing: 0.12em;
  margin: 2em 0 0.8em;
  color: var(--ink);
}
.entry-content ul, .entry-content ol {
  padding-left: 2em;
  list-style: disc;
  margin-bottom: 1.5em;
}
.entry-content li { margin-bottom: 0.5em; }
.entry-content a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color var(--transition);
}
.entry-content a:hover { border-color: var(--ink); }

/* ==============================================
   404 / エラーページ
============================================== */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  text-align: center;
}
.error-page .error-num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 1;
  color: var(--gray-soft);
  margin-bottom: 24px;
}
.error-page h1 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.24em;
  margin-bottom: 16px;
}
.error-page p {
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gray-mid);
  margin-bottom: 40px;
}

/* ==============================================
   クラウドファンディング案内（横長カード）
============================================== */
.crowdfunding-notice {
  margin: 50px 0 0;
  padding: 36px 50px;
  background: var(--gray-deep);
  border-left: 3px solid rgba(191, 149, 63, 0.6);
  display: flex;
  align-items: center;
  gap: 40px;
  color: var(--paper);
}
.crowdfunding-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
}
.crowdfunding-content {
  flex: 1;
  min-width: 0;
}
.crowdfunding-label {
  font-family: var(--serif-jp);
  font-size: 11px;
  letter-spacing: 0.36em;
  color: rgba(250, 246, 236, 0.6);
  margin-bottom: 8px;
}
.crowdfunding-note {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 236, 0.55);
  margin: 0;
}
.crowdfunding-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--paper);
  border-bottom: 1px solid rgba(250, 246, 236, 0.5);
  padding-bottom: 3px;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.crowdfunding-link:hover { opacity: 0.7; }

/* ==============================================
   サイトマップページ
============================================== */
.sitemap-head {
  padding: 120px 40px 60px;
  text-align: center;
}
.sitemap-head .num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--gray-mid);
  margin-bottom: 18px;
}
.sitemap-head h1 {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: 0.24em;
  margin-bottom: 12px;
  color: var(--ink);
}
.sitemap-head .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 20px;
  color: var(--gray-mid);
}
.sitemap-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 40px 120px;
}
.sitemap-list { list-style: none; }
.sitemap-item { border-bottom: 1px solid var(--line); }
.sitemap-item:first-child { border-top: 1px solid var(--line); }
.sitemap-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 8px;
  font-family: var(--serif-jp);
  font-size: 17px;
  letter-spacing: 0.18em;
  color: var(--ink);
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.sitemap-link:hover { opacity: 0.6; }
.sitemap-icon {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 16px;
  color: var(--gray-mid);
  flex-shrink: 0;
  width: 20px;
}
.sitemap-name { flex: 1; }

/* ==============================================
   モバイル (768px 以下)
============================================== */
@media (max-width: 768px) {
  body { font-size: 15px; padding-top: 64px; }

  .site-header .inner { height: 64px; padding: 0 20px; }
  .brand-mark { height: 34px; max-width: 150px; }
  .site-header .brand .brand-mark { height: 34px; max-width: 150px; }
  .brand-name { font-size: 12px; letter-spacing: 0.16em; padding-left: 12px; }
  nav.primary { display: none; }
  .hamburger { display: flex; }

  .site-footer { padding: 70px 24px 30px; margin-top: 80px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand .mark { height: 32px; max-width: 150px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-direction: column; gap: 10px; font-size: 12px; padding: 16px 0 24px; }
  .footer-legal .sep { display: none; }

  .hero { grid-template-columns: 1fr; padding: 50px 24px 60px; gap: 30px; min-height: auto; }
  .hero-right { height: 340px; order: -1; }
  .hero h1 { font-size: 32px; }
  .hero-meta { margin-bottom: 36px; }

  .strip-inner { padding: 18px 20px; flex-direction: column; align-items: stretch; gap: 16px; }
  .strip-items { flex-direction: column; gap: 14px; overflow: visible; }
  .strip-items .item { white-space: normal; flex-wrap: wrap; font-size: 14px; }
  .strip-more { align-self: flex-start; }

  .about { padding: 80px 24px 60px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-side { position: static; }
  .about-num { font-size: 64px; }
  .about-side h3 { font-size: 24px; }
  .about-body h2 { font-size: 22px; }
  .about-body .pull-quote { font-size: 18px; padding-left: 20px; }
  .about-body .pull-quote .en { font-size: 16px; }

  .collection { padding: 80px 24px 60px; }
  .collection-grid { grid-template-columns: 1fr; gap: 40px; }
  .coll-card { padding: 36px 28px; }
  .coll-card h3 { font-size: 32px; }
  .collection-head { margin-bottom: 50px; }

  .journal { padding: 80px 24px 60px; }
  .journal-grid { grid-template-columns: 1fr; gap: 40px; }
  .journal-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .journal-feature .img-frame { height: 280px; }
  .journal-feature h3 { font-size: 20px; }

  .contact-cta { padding: 80px 24px; }
  .contact-cta p { font-size: 14px; }

  .page-head-company { grid-template-columns: 1fr; padding: 70px 24px 40px; gap: 24px; }
  .page-head-company h1 { font-size: 32px; }
  .profile { padding: 50px 24px; }
  .profile-grid { grid-template-columns: 1fr; gap: 40px; }
  .profile-side { position: static; }
  .profile-side .label-num { font-size: 64px; }
  .profile-side h2 { font-size: 22px; }
  .profile-body .row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .segments { padding: 60px 24px; }
  .segments-list { grid-template-columns: 1fr; }
  .segment-item { padding: 32px 24px; min-height: auto; }
  .location { padding: 60px 24px; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .location-info h2 { font-size: 28px; }
  .map-frame { height: 260px; }

  .contact-head { padding: 70px 24px 40px; }
  .contact-head h1 { font-size: 32px; }
  .contact-body { grid-template-columns: 1fr; padding: 40px 24px 60px; gap: 50px; }
  .row-2 { grid-template-columns: 1fr; gap: 24px; }
  .contact-aside { position: static; }
  .submit-bar { flex-direction: column; align-items: stretch; gap: 16px; }

  .blog-head { grid-template-columns: 1fr; padding: 70px 24px 40px; gap: 24px; }
  .blog-head h1 { font-size: 32px; }
  .cat-strip-inner { padding: 14px 24px; gap: 20px; overflow-x: auto; flex-wrap: nowrap; }
  .blog-featured { padding: 50px 24px 40px; }
  .featured-card { grid-template-columns: 1fr; gap: 32px; }
  .featured-card .img-frame { height: 280px; }
  .featured-card h2 { font-size: 22px; }
  .archive { padding: 40px 24px 60px; }
  .archive-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .archive-head h2 { font-size: 24px; }
  .archive-grid { grid-template-columns: 1fr; gap: 40px; }

  .article-head { padding: 70px 24px 40px; }
  .article-head h1 { font-size: 22px; }
  .article-head .meta-bar { flex-direction: column; gap: 12px; }
  .article-hero { padding: 0 24px; }
  .article-hero .frame { height: 300px; }
  .article-body { padding: 0 24px 60px; font-size: 15px; line-height: 2; }
  .article-nav { padding: 24px; }

  .legal-head { padding: 70px 24px 30px; }
  .legal-head h1 { font-size: 28px; }
  .legal-body { padding: 30px 24px 60px; }
  .legal-body > p.lede { margin-bottom: 40px; padding-bottom: 28px; font-size: 14px; }
  .legal-body section { margin-bottom: 40px; }
  .legal-body h2 { font-size: 17px; padding-left: 16px; }
  .sct-table .row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }

  .page-article { padding: 80px 24px 60px; }
  .error-page { padding: 80px 24px; }
  .crowdfunding-notice {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    border-left: none;
    border-top: 3px solid rgba(191, 149, 63, 0.6);
    gap: 20px;
    margin: 40px 0 0;
    align-items: center;
  }
  .crowdfunding-logo { height: 40px; max-width: 160px; }
  .crowdfunding-link { white-space: normal; text-align: center; }
  .sitemap-head { padding: 70px 24px 40px; }
  .sitemap-head h1 { font-size: 28px; }
  .sitemap-body { padding: 30px 24px 80px; }
  .sitemap-link { font-size: 15px; padding: 18px 4px; }
}
