/* ——— PAGE LOADER ——— */
#loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.8s 0.3s, visibility 0.8s 0.3s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.2em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(201,169,110,0.2);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loaderSlide 1.8s ease forwards;
}
@keyframes loaderPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }
@keyframes loaderSlide { from{left:-100%;} to{left:100%;} }

/* ——— HERO ——— */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1);
  transition: transform 12s ease-out;
}
.hero-bg-image.zoom { transform: scale(1.08); }
.hero-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,24,20,0.88) 0%,
    rgba(26,24,20,0.55) 45%,
    rgba(26,24,20,0.15) 100%
  );
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,24,20,0.4) 0%,
    transparent 30%,
    transparent 70%,
    rgba(26,24,20,0.5) 100%
  );
  z-index: 1;
}
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float var(--dur, 8s) var(--delay, 0s) ease-in-out infinite alternate;
}
@keyframes float {
  from { transform: translateY(0) translateX(0) scale(1); opacity: var(--op, 0.3); }
  to   { transform: translateY(var(--dy,-40px)) translateX(var(--dx,20px)) scale(1.2); opacity: var(--op2, 0.6); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-left: 10vw;
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1.2s ease;
}
.hero-content.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-eyebrow {
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0;
}
.hero-title-jp {
  display: block;
}
.hero-title-jp:last-child {
  color: var(--gold-light);
  font-style: italic;
}

.hero-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 32px 0;
  transition: width 1s ease 0.8s;
}
.hero-content.active .hero-divider { width: 160px; }

.hero-sub {
  line-height: 2.4;
  color: rgba(245,240,232,0.6);
  margin-bottom: 52px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.hero-sub .gold { color: var(--gold); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 20px;
}

/* ヒーロー右側英語テキスト */
.hero-aside {
  position: absolute;
  right: 8vw;
  bottom: 15vh;
  z-index: 2;
  text-align: right;
  opacity: 0;
  animation: fadeIn 1.2s 2.2s forwards;
}
.hero-aside-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.06em;
  font-style: italic;
}
.hero-aside-text em {
  color: var(--gold);
  font-style: italic;
  font-size: 1.4em;
  display: block;
}

/* フェードイン系アニメ */
.hero-title,
.hero-divider,
.hero-sub,
.hero-actions {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.9s ease;
}
.hero-content.active .hero-title  { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.hero-content.active .hero-sub    { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.hero-content.active .hero-actions { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }

.hero-scroll {
  position: absolute;
  bottom: 50px; right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s 2.5s forwards;
}
.hero-scroll span { letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s 3s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity:1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity:1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity:0; }
}

/* ——— MARQUEE ——— */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-inner span { letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0 40px;
  font-weight: 600;
  transition: color 0.3s;
}
.marquee-inner span:hover { color: rgba(26,24,20,0.5); }
.marquee-inner span::before { content: '✦'; margin-right: 40px; opacity: 0.4; }
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ——— ABOUT ——— */
.section-about {
  padding: 140px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%; height: 600px;
  object-fit: cover;
  filter: sepia(20%) contrast(1.08);
  transition: filter 0.6s, transform 0.8s;
}
.about-visual:hover img { filter: sepia(5%) contrast(1.12); transform: scale(1.02); }
.about-visual-label {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  padding: 28px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
  font-style: italic;
  transition: transform 0.4s, bottom 0.4s, right 0.4s;
}
.about-visual:hover .about-visual-label { bottom: -28px; right: -28px; }
.about-text { padding-left: 20px; }
.about-body {
  font-family: 'Noto Serif JP', serif;
  line-height: 2.4;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 40px;
}
.about-quote {
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  background: rgba(201,169,110,0.05);
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  font-weight: 300;
  color: var(--text);
  line-height: 2.2;
  margin-bottom: 44px;
  letter-spacing: 0.05em;
  transition: padding-left 0.4s, border-color 0.3s, background 0.4s;
}
.about-quote:hover {
  padding-left: 36px;
  border-color: var(--rose);
  background: rgba(201,169,110,0.09);
}

/* ——— STATS ——— */
/* impact-section.cssへ */

/* ——— PROJECTS ——— */
.section-projects {
  padding: 140px 0;
  background: var(--charcoal);
  overflow: hidden;
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding: 0 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-projects .section-heading       { color: var(--cream); }
.section-projects .section-heading em    { color: var(--gold-light); }
.section-projects .section-label         { color: var(--gold); }
.section-projects .text-link             { color: var(--gold-light); border-color: var(--gold); }
.section-projects .text-link:hover       { color: var(--gold); }

/* ——— グリッド ——— */
.projects-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  grid-template-rows: 420px 303px;
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ——— 配置 ——— */
.project-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }  /* 縦長フィーチャー */
.project-card:nth-child(2) { grid-column: 2 / 4; grid-row: 1; } /* 横大 */
.project-card:nth-child(3) { grid-column: 2; grid-row: 2; }      /* 右下左 */
.project-card:nth-child(4) { grid-column: 3; grid-row: 2; }      /* 右下右 */

/* ——— カード共通 ——— */
.project-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}

/* ——— 画像 ——— */
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: sepia(28%) contrast(1.08) brightness(0.72);
  transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.8s;
}
.project-card:hover img {
  transform: scale(1.06);
  filter: sepia(5%) contrast(1.1) brightness(0.85);
}

/* ——— オーバーレイ ——— */
.project-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px 44px;
  background: linear-gradient(
    to top,
    rgba(26,24,20,0.96) 0%,
    rgba(26,24,20,0.35) 50%,
    transparent 100%
  );
  transition: background 0.6s;
}
.project-card:hover .project-overlay {
  background: linear-gradient(
    to top,
    rgba(26,24,20,0.98) 0%,
    rgba(26,24,20,0.6) 60%,
    rgba(26,24,20,0.1) 100%
  );
}
.project-card:nth-child(3) .project-overlay,
.project-card:nth-child(4) .project-overlay {
  padding: 24px 28px;
}

/* ——— ナンバリング ——— */
.project-num {
  position: absolute; top: 28px; left: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px; letter-spacing: 0.45em; font-style: italic;
  color: rgba(201,169,110,0.5);
  z-index: 2; pointer-events: none;
}
.project-card:nth-child(3) .project-num,
.project-card:nth-child(4) .project-num {
  top: 18px; left: 24px;
}

/* ——— タグ ——— */
.project-tag {
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
  opacity: 0; transform: translateY(6px);
  transition: transform 0.45s 0.04s, opacity 0.45s 0.04s;
}
.project-card:hover .project-tag { opacity: 1; transform: translateY(0); }

/* ——— タイトル ——— */
.project-title {
  font-family: 'Noto Serif JP', serif; font-weight: 400;
  color: var(--cream); line-height: 1.65; letter-spacing: 0.03em;
}
.project-card:nth-child(1) .project-title { font-size: clamp(16px,1.4vw,21px); }
.project-card:nth-child(2) .project-title { font-size: clamp(15px,1.3vw,19px); }
.project-card:nth-child(3) .project-title,
.project-card:nth-child(4) .project-title { font-size: clamp(12px,1.0vw,14px); line-height: 1.7; }

/* ——— ゴールドライン ——— */
.project-divider {
  width: 0; height: 1px;
  background: var(--gold); opacity: 0.65;
  margin: 13px 0;
  transition: width 0.45s cubic-bezier(0.4,0,0.2,1) 0.06s;
}
.project-card:hover .project-divider { width: 32px; }

/* ——— 矢印 ——— */
.project-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s 0.13s, transform 0.4s 0.13s;
}
.project-arrow::after { content: '→'; transition: transform 0.35s; }
.project-card:hover .project-arrow             { opacity: 1; transform: translateY(0); }
.project-card:hover .project-arrow:hover       { letter-spacing: 0.44em; }
.project-card:hover .project-arrow:hover::after { transform: translateX(6px); }

/* ——— コーナーアクセント（01・02）——— */
.project-card:nth-child(1)::before,
.project-card:nth-child(2)::before {
  content: '';
  position: absolute; top: 18px; left: 18px;
  width: 24px; height: 24px;
  border-top: 1px solid rgba(201,169,110,0.35);
  border-left: 1px solid rgba(201,169,110,0.35);
  z-index: 2; pointer-events: none;
  transition: opacity 0.4s;
}
.project-card:nth-child(1):hover::before,
.project-card:nth-child(2):hover::before { opacity: 0; }

/* ——— レスポンシブ ——— */
@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 280px 280px;
  }
  .project-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .project-card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .project-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .project-card:nth-child(4) { grid-column: 1 / 3; grid-row: 3; height: 280px; }
}

@media (max-width: 900px) {
  .section-projects { padding: 80px 0; }
  .projects-header  { padding: 0 28px; margin-bottom: 40px; }
  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .project-card:nth-child(1),
  .project-card:nth-child(2),
  .project-card:nth-child(3),
  .project-card:nth-child(4) {
    grid-column: 1; grid-row: auto;
    height: auto; aspect-ratio: 16/9;
  }
  .project-overlay { padding: 24px 28px; }
  .project-num { top: 14px; left: 22px; }
}
/* ——— PHILOSOPHY ——— */
.section-philosophy {
  background: var(--charcoal);
  padding: 140px 60px;
  overflow: hidden;
}
.philosophy-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.philosophy-heading {
  color: var(--cream);
  position: sticky;
  top: 120px;
}
.philosophy-heading em {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
}
.philosophy-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.philosophy-item {
  display: flex;
  gap: 30px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(201,169,110,0.12);
  transition: background 0.4s;
}
.philosophy-item:first-child { padding-top: 0; }
.philosophy-item:last-child { border-bottom: none; }
.philosophy-num {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
  padding-top: 4px;
  font-size: var(--fs-md);
}
.philosophy-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.philosophy-body {
  line-height: 2.4;
  color: rgba(245,240,232,0.75);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ——— MESSAGE ——— */
.section-message {
  background: var(--cream);
  padding: 180px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.message-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  color: rgba(201,169,110,0.055);
  white-space: nowrap;
  pointer-events: none; line-height: 1;
  animation: bgTextFloat 10s ease-in-out infinite alternate;
  letter-spacing: 0.1em;
}
@keyframes bgTextFloat {
  from { transform: translate(-50%,-50%) scale(1) rotate(-0.5deg); }
  to   { transform: translate(-50%,-50%) scale(1.04) rotate(0.5deg); }
}
.message-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.message-heading {
}
.message-jp {
  font-family: 'Noto Serif JP', serif; line-height: 3;
  color: var(--text); font-weight: 300;
  letter-spacing: 0.1em;
  margin-top: 48px;
}

/* ——— STORIES ——— */
.section-stories { padding: 140px 60px; background: var(--charcoal); }
.stories-inner { max-width: 1400px; margin: 0 auto; }
.stories-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-card {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.4s, box-shadow 0.5s;
}
.story-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,169,110,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.story-card img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  filter: sepia(20%) brightness(0.85);
  transition: filter 0.6s, transform 0.7s;
}
.story-card:hover img { filter: sepia(5%) brightness(0.95); transform: scale(1.04); }
.story-info { padding: 28px; }
.story-tag { letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.story-name {
  font-family: 'Noto Serif JP', serif; color: var(--cream);
  line-height: 1.8; font-weight: 400;
  margin-bottom: 16px;
}
.story-arrow { letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none;
  transition: letter-spacing 0.4s, color 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.story-arrow::after { content: '→'; transition: transform 0.4s; }
.story-card:hover .story-arrow { letter-spacing: 0.35em; color: var(--gold-light); }
.story-card:hover .story-arrow::after { transform: translateX(6px); }

/* ——— NEWS ——— */
.section-news { padding: 140px 60px; max-width: 1400px; margin: 0 auto; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
.news-card {
  display: flex; gap: 28px;
  padding: 40px;
  border: 1px solid rgba(201,169,110,0.15);
  text-decoration: none;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
  align-items: flex-start;
  position: relative; overflow: hidden;
}
.news-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s;
}
.news-card:hover::after { width: 100%; }
.news-card:hover {
  background: rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-4px);
}
.news-card img {
  width: 100px; height: 100px;
  object-fit: cover; flex-shrink: 0;
  filter: sepia(20%);
  transition: filter 0.4s, transform 0.5s;
}
.news-card:hover img { filter: sepia(5%); transform: scale(1.05); }
.news-date { letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.news-title {
  font-family: 'Noto Serif JP', serif; color: var(--text);
  line-height: 1.9; font-weight: 400;
}


/* ——— MOBILE ——— */
@media (max-width: 1024px) {
  .philosophy-inner { grid-template-columns: 1fr; gap: 60px; }
  .philosophy-heading { position: static; }
  .hero-aside { display: none; }
}

@media (max-width: 900px) {
  .btn-primary, .btn-secondary { padding: 20px 20px;}
  .hero-content.active .hero-actions{ justify-content: center; }
  .marquee-inner span { font-size: var(--fs-xs); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}


@media (max-width: 900px) {
  /* ——— HERO ——— */
  .hero-content { padding: 0 28px 80px; margin-left: 0; max-width: 500px; }

  /* ——— ABOUT ——— */
  .section-about { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .about-text { padding-left: 0; }


  /* ================================================================
     「続きを見る」— ヘッダー右上から → カード下・中央に移動
     ================================================================ */

  /* Project・Story・News のヘッダーから text-link を隠す */
  .projects-header .text-link,
  .stories-header  .text-link,
  .news-header     .text-link { display: none; }

  /* ヘッダーは見出しのみ縦並び */
  .projects-header,
  .stories-header  { flex-direction: column; align-items: flex-start; gap: 0; margin-bottom: 20px;}



 /* ================================================================
     PROJECT — モバイル専用レイアウト（4枚固定）
     
     ┌─────────────────┐  280px
     │  01（全幅）      │
     ├────────┬────────┤  220px
     │  02    │  03    │
     ├────────┴────────┤  200px
     │  04（全幅）      │
     └─────────────────┘
     ================================================================ */
  .section-projects { padding: 100px 0; }
  .projects-header  { padding: 0 28px; margin-bottom: 44px; }

  .projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px 200px;
    gap: 3px;
  }

  /* 01: 全幅フィーチャー */
  .project-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
    height: auto;
    aspect-ratio: unset;
  }
  /* 02: 左 */
  .project-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    aspect-ratio: unset;
  }
  /* 03: 右 */
  .project-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    height: auto;
    aspect-ratio: unset;
  }
  /* 04: 全幅で締める */
  .project-card:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
    height: auto;
    aspect-ratio: unset;
  }

  .project-overlay { padding: 20px 24px; }
  .project-num { top: 14px; left: 20px; }

  /* タグ・矢印はモバイルでは常時表示 */
  .project-tag {
    opacity: 1;
    transform: translateY(0);
  }
  .project-arrow {
    opacity: 1;
    transform: translateY(0);
    margin-top: 8px;
  }
  .project-divider { width: 24px; }

  /* ================================================================
     STORIES — モバイル専用レイアウト
     ================================================================ */
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .story-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    border: 1px solid rgba(201,169,110,0.12);
  }
  .story-card img {
    width: 120px;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
    aspect-ratio: unset;
    object-position: right bottom;
  }
  .story-info {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  .story-name { line-height: 1.6; }
  .story-arrow { margin-top: 4px; }

  /* ================================================================
     NEWS — モバイル専用
     ================================================================ */
  .news-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 20px;}
  .news-card { padding: 24px; }
  .news-card img { width: 80px; height: 80px; }
}
/* ——— PROJECT SECTION WRAPPER ——— */
/* front-page.php の <section class="section-projects-wrap"> 用 */
.section-projects-wrap {
  background: var(--charcoal);
}