/* ===================================
   株式会社ふるめいつ コーポレートサイト
   v2 - Enhanced Design
   =================================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --main: #B53332;
  --main-dark: #8C2727;
  --main-light: #D4605F;
  --main-pale: rgba(181, 51, 50, 0.06);
  --text: #2D2A26;
  --text-light: #6B6560;
  --bg: #FFFFFF;
  --bg-light: #FAF7F5;
  --bg-dark: #F4EDE8;
  --accent: #E8D5C4;
  --border: #E8E0DA;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-main: 0 8px 30px rgba(181, 51, 50, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--main); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--main-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* ===================================
   Scroll Animations
   =================================== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header-logo img {
  height: 44px;
  width: auto;
  transition: transform var(--transition-fast);
}

.header-logo:hover img { transform: scale(1.05); }

.nav-list {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-list a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 6px;
  transition: color var(--transition-fast);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--main);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }

.nav-list a:hover { color: var(--main); }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition-fast);
}

/* ===================================
   Hero
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-light);
  overflow: hidden;
  padding-top: 76px;
}

/* Parallax floating circles */
.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(181, 51, 50, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(181, 51, 50, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 120px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px 80px;
}

.hero-logo {
  width: 180px;
  margin: 0 auto 48px;
  animation: logoAppear 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

@keyframes logoAppear {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tagline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  animation: fadeUp 1s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 44px;
  letter-spacing: 0.1em;
  animation: fadeUp 1s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

.hero-cta {
  display: inline-block;
  background: var(--main);
  color: #fff;
  padding: 16px 44px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeUp 1s 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.hero-cta:hover::before { left: 100%; }

.hero-cta:hover {
  background: var(--main-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-main);
}

/* ===================================
   Hero Photo (Full-width)
   =================================== */
.hero-photo {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(6px);
  transform: scale(1.08);
  z-index: 0;
}

.hero-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hero-photo__content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
}

.hero-photo__logo {
  width: 160px;
  margin: 0 auto 40px;
  filter: brightness(0) invert(1);
  animation: logoAppear 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

.hero-photo__title {
  font-size: clamp(1.5rem, 6.2vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeUp 1s 0.3s ease forwards;
  opacity: 0;
}

.hero-photo__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 44px;
  letter-spacing: 0.12em;
  animation: fadeUp 1s 0.5s ease forwards;
  opacity: 0;
}

.hero-photo__cta {
  display: inline-block;
  background: var(--main);
  color: #fff;
  padding: 16px 44px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  animation: fadeUp 1s 0.7s ease forwards;
  opacity: 0;
}

.hero-photo__cta:hover {
  background: #fff;
  color: var(--main);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===================================
   Section
   =================================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section--alt { background: var(--bg-light); }
.section--dark { background: var(--bg-dark); color: var(--text); }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--main);
  margin-bottom: 14px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: 0.04em;
}

.section--dark .section-title { color: var(--text); }

.section-divider {
  width: 40px;
  height: 3px;
  background: var(--main);
  margin: 24px auto 0;
  border-radius: 2px;
}

/* ===================================
   Philosophy Cards
   =================================== */
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.philosophy-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--main);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--main-pale) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
}

.philosophy-card:hover::before { opacity: 1; }

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.philosophy-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--main);
  margin-bottom: 16px;
  position: relative;
}

.philosophy-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
}

.philosophy-card__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.9;
  position: relative;
}

/* ===================================
   Pin Scroll (Philosophy)
   =================================== */
.narrative {
  position: relative;
  height: 400vh;
}

.narrative__credo-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  margin: 16px auto 0;
}

.narrative__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  z-index: 1;
  overflow: hidden;
}

.narrative__bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.narrative__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.narrative__bg--active {
  opacity: 1;
}

.narrative__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}

.narrative__sticky .container {
  position: relative;
  z-index: 1;
}

.narrative__header {
  text-align: center;
  margin-bottom: 48px;
}

.narrative__stage {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.narrative__card {
  text-align: center;
  padding: 48px 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--main);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.narrative__card--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.narrative__card--exit {
  opacity: 0;
  transform: translateY(-30px);
}

.narrative__card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.7;
}

.narrative__card-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 2;
}

.narrative__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.narrative__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s ease, transform 0.3s ease;
}

.narrative__dot--active {
  background: var(--main);
  transform: scale(1.3);
}

/* Progress bar */
.narrative__progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.narrative__progress-bar {
  height: 100%;
  background: var(--main);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  will-change: width;
}

.narrative__trigger {
  display: none;
}

/* ===================================
   Bento Credo
   =================================== */
.bento-credo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-credo__item {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(181, 51, 50, 0.08);
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.bento-credo__item--wide {
  grid-column: span 2;
}

.bento-credo__item:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(181, 51, 50, 0.15);
}

.credo-figure {
  max-width: 760px;
  margin: 0 auto 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: #fff;
}

.credo-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* Business — stacked block (description, then logo below) */
.biz-block {
  max-width: 760px;
  margin: 0 auto;
}

.biz-logo {
  margin-top: 36px;
  border-radius: var(--radius);
  min-height: 180px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.biz-logo img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

.biz-logo--manaviism {
  background: #ffffff;
  border: 1px solid var(--border);
}

.biz-logo--humble {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.credo-item__icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  transition: transform var(--transition);
}

.bento-credo__item:hover .credo-item__icon {
  transform: scale(1.15);
}

.credo-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.credo-item__text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===================================
   Bento Business
   =================================== */
.bento-business {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}

.bento-business__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.bento-business__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* Legacy class kept for compatibility */
.business-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.business-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.business-card__image {
  height: 220px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.business-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1));
}

/* Photo card for business */
.biz-card-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.biz-card-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-business__item:hover .biz-card-photo__img {
  transform: scale(1.05);
}

.biz-card-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15));
}

.business-card__body { padding: 36px; }

.business-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--main);
  margin-bottom: 10px;
}

.business-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.business-card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 24px;
}

.business-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--main);
  transition: all var(--transition-fast);
}

.business-card__link:hover {
  gap: 14px;
  color: var(--main-dark);
}

/* ===================================
   CEO Message Section
   =================================== */
.ceo-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.ceo-photo {
  position: relative;
}

.ceo-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin: 0 auto;
}

.ceo-photo::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--main);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.ceo-message__text {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--text-light);
  margin-bottom: 20px;
}

.ceo-message__sign {
  text-align: right;
  margin-top: 40px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===================================
   Company Info Table
   =================================== */
.company-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--border);
}

.company-table th,
.company-table td {
  padding: 20px 16px;
  text-align: left;
  font-size: 0.95rem;
  vertical-align: top;
}

.company-table th {
  width: 160px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.company-table td {
  color: var(--text-light);
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--main);
  color: rgba(255, 255, 255, 0.9);
  padding: 56px 0 36px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
}

.footer-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.footer-company {
  font-size: 0.85rem;
  line-height: 1.9;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 28px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-nav a:hover { color: #fff; }

.footer-copyright {
  text-align: center;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  position: relative;
}

/* ===================================
   Wave SVG decoration
   =================================== */
.wave-separator {
  display: block;
  width: 100%;
  height: auto;
  margin: -2px 0;
}

/* ===================================
   News（お知らせ）
   =================================== */
.news-section {
  padding: 56px 0;
  background: #fff;
}

.news-box {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 40px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.news-box__head {
  flex-shrink: 0;
  text-align: center;
  padding-top: 4px;
}

.news-box__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--main);
}

.news-box__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 2px;
}

.news-list {
  list-style: none;
  flex: 1;
  min-width: 0;
}

.news-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 12px 0;
}

.news-item + .news-item {
  border-top: 1px solid var(--border);
}

.news-item__date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.news-item__tag {
  display: inline-block;
  background: var(--main);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 2px 12px;
  border-radius: 50px;
  flex-shrink: 0;
}

.news-item__text {
  flex: 1;
  min-width: 220px;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text);
}

/* ===================================
   Cheer Club（チアクラブ）
   =================================== */
.bento-business--three {
  grid-template-columns: repeat(3, 1fr);
}

.biz-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--main);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.new-badge {
  display: inline-block;
  background: var(--main);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 10px;
  border-radius: 50px;
  vertical-align: middle;
  margin-left: 8px;
}

.cheer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.cheer-gallery__item {
  margin: 0;
}

.cheer-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.cheer-gallery__item figcaption {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
}

.cheer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.cheer-stat {
  text-align: center;
  padding: 26px 12px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cheer-stat__num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--main);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.cheer-stat__num span {
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 2px;
}

.cheer-stat__label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 6px;
}

.cheer-aiueo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.cheer-aiueo__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 96px;
}

.cheer-aiueo__kana {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--main);
  color: var(--main);
  font-size: 1.3rem;
  font-weight: 700;
}

.cheer-aiueo__word {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-list {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    height: calc(100vh - 76px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav-list.open { transform: translateX(0); }

  .nav-list a { font-size: 1.1rem; }

  .hero-tagline { font-size: 1.5rem; }
  .hero-logo { width: 140px; }

  .section { padding: 80px 0; }
  .section-title { font-size: 1.5rem; }

  .philosophy-cards { grid-template-columns: 1fr; gap: 20px; }
  .bento-credo { grid-template-columns: 1fr; }
  .bento-credo__item--wide { grid-column: span 1; }
  .bento-business { grid-template-columns: 1fr; }
  .bento-business--three { grid-template-columns: 1fr; }
  .business-cards { grid-template-columns: 1fr; gap: 24px; }

  .news-box { flex-direction: column; gap: 12px; padding: 26px 22px; }
  .news-box__head { display: flex; align-items: baseline; gap: 10px; text-align: left; }
  .cheer-gallery { grid-template-columns: 1fr; gap: 14px; }
  .cheer-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cheer-stat { padding: 18px 6px 14px; }
  .cheer-stat__num { font-size: 1.4rem; }
  .cheer-stat__label { font-size: 0.7rem; }
  .cheer-aiueo { gap: 10px; }
  .cheer-aiueo__item { width: 84px; }
  .cheer-aiueo__kana { width: 52px; height: 52px; font-size: 1.1rem; }
  .narrative { height: auto; }
  .narrative__sticky { position: relative; height: auto; padding: 80px 0; }
  .narrative__stage { height: auto; overflow: visible; }
  .narrative__card { position: relative; opacity: 1; transform: none !important; pointer-events: auto; margin-bottom: 24px; padding: 36px 22px; }
  .narrative__card-title { font-size: 1.1rem; line-height: 1.6; margin-bottom: 18px; }
  .narrative__card-text { font-size: 0.86rem; line-height: 1.95; }
  .narrative__dots { display: none; }
  .narrative__progress { display: none; }

  .ceo-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ceo-photo img { max-width: 340px; }

  .company-table th { width: 110px; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { flex-direction: column; align-items: center; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-tagline { font-size: 1.2rem; }
  .credo-grid { grid-template-columns: 1fr; }
  .company-table th, .company-table td { display: block; padding: 8px 0; }
  .company-table th { padding-top: 20px; }

  .ceo-photo img { max-width: 300px; }
  .ceo-photo::before { display: none; }
}
