/* ============================================================
   TOPLUS - TOPページ専用スタイル
============================================================ */

/* ============================================================
   HERO
============================================================ */
.p-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.p-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.p-hero__video img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 24s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}
.p-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(4, 30, 77, 0.6) 0%,
    rgba(20, 25, 41, 0.35) 40%,
    rgba(4, 30, 77, 0.75) 100%);
  z-index: 1;
}

.p-hero__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 96px; height: 96px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.35s, background 0.35s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.p-hero__play::before {
  content: '';
  width: 0; height: 0;
  border-left: 18px solid var(--orange);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}
.p-hero__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--orange);
}
.p-hero__play:hover::before { border-left-color: #fff; }
.p-hero__play-ring {
  position: absolute; inset: -16px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  animation: ringPulse 2.6s ease-out infinite;
}
@keyframes ringPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.p-hero__inner {
  position: relative; z-index: 2;
  width: 100%; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 124px 64px 140px;
}
.p-hero__eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1rem; letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 18px;
}
.p-hero__eyebrow::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--orange);
}
.p-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  word-break: keep-all;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.p-hero__title > span { display: block; }
.p-hero__title em {
  font-style: normal;
  background-image: linear-gradient(180deg, transparent 70%, var(--orange) 70%);
  padding: 0 0.05em;
}
.p-hero__lead {
  font-size: 1rem;
  line-height: 2.3;
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.p-hero__trio {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(4, 30, 77, 0.9);
  backdrop-filter: blur(12px);
}
.p-hero__trio-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; gap: 20px;
}
.p-hero__trio-item:last-child { border-right: none; }
.p-hero__trio-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--orange);
}
.p-hero__trio-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.p-hero__trio-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.75rem; letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 4px;
}
.p-hero__trio-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.08rem; font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.4;
}


/* ============================================================
   INDEX NAV
============================================================ */
.p-indexnav {
  background: var(--cream);
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 84px;
  z-index: 50;
}
.p-indexnav__list {
  display: flex; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.p-indexnav__item { position: relative; }
.p-indexnav__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--line);
}
.p-indexnav__link {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 32px;
  color: var(--ink);
}
.p-indexnav__link small {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.85rem; letter-spacing: 0.1em;
  color: var(--orange);
}
.p-indexnav__link span {
  font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.08em;
}
.p-indexnav__link:hover small { color: var(--ink); }


/* ============================================================
   INTRO STATEMENT
============================================================ */
.p-intro {
  background: var(--paper);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.p-intro__bg-text {
  position: absolute;
  top: 40%; right: -100px;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 22rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.04em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.p-intro__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.p-intro__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.2rem;
  color: var(--orange);
  letter-spacing: 0.14em;
  margin-bottom: 32px;
}
.p-intro__quote {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 48px;
  word-break: keep-all;
}
.p-intro__quote > span { display: block; }
.p-intro__quote em {
  font-style: normal;
  color: var(--orange);
}
.p-intro__line {
  width: 48px; height: 1px;
  background: var(--orange);
  margin: 0 auto 36px;
}
.p-intro__text {
  font-size: 0.98rem;
  line-height: 2.3;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto;
}


/* ============================================================
   PEOPLE
============================================================ */
.p-people {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.p-people__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.p-people__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.p-people__visual-main {
  position: absolute; inset: 0;
  overflow: hidden;
}
.p-people__visual-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.p-people__visual-frame {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 65%; height: 65%;
  border: 8px solid var(--orange);
  z-index: 1;
}
.p-people__visual-tag {
  position: absolute;
  top: 32px; left: 32px;
  z-index: 2;
  background: rgba(4, 30, 77, 0.9);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  color: #fff;
}
.p-people__visual-tag-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}
.p-people__visual-tag-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.p-people__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.3rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.p-people__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  word-break: keep-all;
}
.p-people__title > span { display: block; }
.p-people__title em {
  font-style: normal;
  background-image: linear-gradient(180deg, transparent 65%, rgba(232, 80, 26, 0.25) 65%);
  padding: 0 0.05em;
}
.p-people__text {
  font-size: 0.96rem;
  line-height: 2.3;
  color: var(--text);
  margin-bottom: 24px;
}
.p-people__text:last-of-type { margin-bottom: 0; }
.p-people__text strong {
  color: var(--ink); font-weight: 600;
  background: linear-gradient(180deg, transparent 65%, rgba(232, 80, 26, 0.15) 65%);
}


/* ============================================================
   GROUP PHOTO BREAK
============================================================ */
.p-groupphoto {
  position: relative;
  height: 70vh; min-height: 480px;
  background: var(--ink);
  overflow: hidden;
}
.p-groupphoto img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%;
  animation: groupZoom 26s ease-in-out infinite alternate;
}
@keyframes groupZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.p-groupphoto::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(4, 30, 77, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(4, 30, 77, 0.5) 100%);
}
.p-groupphoto__overlay {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start;
  padding: 64px 80px;
  color: #fff;
}
.p-groupphoto__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.05rem;
  color: var(--orange-soft);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 16px;
}
.p-groupphoto__label::before {
  content: ''; width: 40px; height: 1px;
  background: var(--orange-soft);
}
.p-groupphoto__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  word-break: keep-all;
}


/* ============================================================
   SERVICE - TOP用
============================================================ */
.p-service__list {}
.p-service__item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  gap: 0;
}
.p-service__item:nth-child(2n) {
  grid-template-columns: 1fr 1.1fr;
}
.p-service__item:nth-child(2n) .p-service__item-visual { order: 2; }
.p-service__item:nth-child(2n) .p-service__item-body { order: 1; }
.p-service__item-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}
.p-service__item-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.p-service__item:hover .p-service__item-visual img { transform: scale(1.05); }
.p-service__item-num {
  position: absolute;
  top: 40px; left: 40px;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.p-service__item-num small {
  display: block;
  font-size: 0.32em;
  letter-spacing: 0.32em;
  color: var(--orange-soft);
  margin-top: 8px;
}
.p-service__item-body {
  padding: 96px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}
.p-service__item:nth-child(2n) .p-service__item-body { background: var(--paper); }
.p-service__item-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.15rem;
  color: var(--orange);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.p-service__item-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  word-break: keep-all;
  line-height: 1.6;
}
.p-service__item-text {
  font-size: 0.95rem;
  line-height: 2.3;
  color: var(--text);
  margin-bottom: 32px;
}
.p-service__item-link {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  width: fit-content;
  transition: gap 0.3s;
}
.p-service__item-link:hover { gap: 26px; color: var(--orange); border-color: var(--orange); }


/* ============================================================
   PHILOSOPHY (TOP用)
============================================================ */
.p-philosophy {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.p-philosophy__bg-kanji {
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 28rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.p-philosophy__bg-kanji--1 { top: 8%;   left: -3%; }
.p-philosophy__bg-kanji--2 { top: 38%;  right: -3%; }
.p-philosophy__bg-kanji--3 { bottom: 8%; left: 30%; }
.p-philosophy .l-container { position: relative; z-index: 1; }

.p-philosophy__main {
  text-align: center;
  margin-bottom: 96px;
}
.p-philosophy__catch {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 40px;
  line-height: 2;
  word-break: keep-all;
}
.p-philosophy__catch > span { display: block; }
.p-philosophy__catch em {
  font-style: normal;
  color: var(--orange);
}
.p-philosophy__main-text {
  font-size: 1rem;
  line-height: 2.3;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
}
.p-philosophy__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.p-philosophy__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 36px;
  transition: background 0.4s, border 0.4s;
}
.p-philosophy__item:hover {
  background: rgba(232, 80, 26, 0.1);
  border-color: var(--orange);
}
.p-philosophy__item-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 24px;
}
.p-philosophy__item-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.p-philosophy__item-text {
  font-size: 0.9rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
}


/* ============================================================
   MESSAGE (TOP用)
============================================================ */
.p-message {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.p-message__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 96px;
  align-items: start;
}
.p-message__visual {
  position: relative;
  aspect-ratio: 3 / 4;
}
.p-message__visual-img {
  width: 100%; height: 100%; object-fit: cover;
  position: relative;
  z-index: 1;
}
.p-message__visual-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(135deg, rgba(232,80,26,0.05) 0%, rgba(4,30,77,0.1) 100%),
    var(--cream-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 48px;
  border: 1px dashed var(--line);
  z-index: 1;
}
.p-message__visual-placeholder-icon {
  width: 80px; height: 80px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
}
.p-message__visual-placeholder-icon svg { width: 40px; height: 40px; }
.p-message__visual-placeholder-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.p-message__visual-placeholder-text {
  font-size: 0.78rem;
  color: var(--text-mute);
  line-height: 1.8;
}
.p-message__visual-frame {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 70%; height: 70%;
  border: 6px solid var(--orange);
  z-index: 0;
}
.p-message__visual-name {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  padding: 16px 24px;
}
.p-message__visual-name-position {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}
.p-message__visual-name-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.p-message__visual-name-jp strong {
  font-size: 1.15rem;
  margin-left: 8px;
  letter-spacing: 0.2em;
}
.p-message__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.25rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.p-message__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  word-break: keep-all;
}
.p-message__title > span { display: block; }
.p-message__text {
  font-size: 0.96rem;
  line-height: 2.3;
  color: var(--text);
  margin-bottom: 24px;
}
.p-message__signature {
  margin-top: 40px;
  text-align: right;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.1em;
}
.p-message__signature strong {
  font-size: 1.2rem;
  margin-left: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}


/* ============================================================
   ABOUT (TOP用)
============================================================ */
.p-about__logo-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: center;
  margin-bottom: 120px;
  padding: 80px;
  background: var(--cream);
}
.p-about__logo-mark {
  display: flex; justify-content: center;
}
.p-about__logo-mark img {
  width: 100%;
  max-width: 280px;
  height: auto;
}
.p-about__logo-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.15rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.p-about__logo-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.p-about__logo-text {
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--text);
  margin-bottom: 16px;
}
.p-about__logo-text strong {
  color: var(--orange); font-weight: 600;
}
.p-about__logo-formula {
  margin-top: 24px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.p-about__logo-formula-chip {
  display: inline-flex; align-items: center;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
}
.p-about__logo-formula-op {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--orange);
  font-weight: 600;
}
.p-about__factories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.p-about__factory {
  padding: 56px 40px;
  border-right: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.3s;
}
.p-about__factory:last-child { border-right: none; }
.p-about__factory:hover { background: var(--cream); }
.p-about__factory-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.3rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.p-about__factory-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-mute);
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.p-about__factory-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.p-about__factory-addr {
  font-size: 0.88rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 18px;
}
.p-about__factory-addr strong {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.p-about__factory-tel {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.06em;
}


/* ============================================================
   RECRUIT TEASER (TOP用)
============================================================ */
.p-recruit-teaser {
  position: relative;
  background: var(--orange);
  color: #fff;
  overflow: hidden;
}
.p-recruit-teaser::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, #c84413 100%);
  z-index: 0;
}
.p-recruit-teaser__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 120px 80px;
}
.p-recruit-teaser__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
.p-recruit-teaser__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.85;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  color: #fff;
  word-break: keep-all;
}
.p-recruit-teaser__title > span { display: block; }
.p-recruit-teaser__text {
  font-size: 0.96rem;
  line-height: 2.3;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  font-weight: 300;
}
.p-recruit-teaser__link {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 18px 36px;
  background: #fff;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  transition: background 0.35s, color 0.35s;
}
.p-recruit-teaser__link:hover {
  background: var(--ink);
  color: #fff;
}
.p-recruit-teaser__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.p-recruit-teaser__visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.p-recruit-teaser__visual-frame {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 70%; height: 70%;
  border: 4px solid rgba(255,255,255,0.5);
  z-index: -1;
}


/* ============================================================
   NEWS (TOP用)
============================================================ */
.p-news__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.p-news__viewall {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.08em;
}
.p-news__viewall:hover { color: var(--orange); }


/* ============================================================
   CONTACT (TOP用)
============================================================ */
.p-contact {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.p-contact__bg-kanji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 30rem;
  color: rgba(255,255,255,0.03);
  font-weight: 500;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.p-contact__inner { position: relative; z-index: 1; }
.p-contact__en {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
}
.p-contact__line {
  width: 1px; height: 32px;
  background: var(--orange);
  margin: 12px auto 24px;
}
.p-contact__label {
  font-size: 0.84rem;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}
.p-contact__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 36px;
  line-height: 1.85;
  word-break: keep-all;
}
.p-contact__text {
  font-size: 0.96rem;
  line-height: 2.3;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 64px;
  font-weight: 300;
}
.p-contact__tels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.p-contact__tel {
  display: block;
  padding: 36px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  transition: all 0.4s;
}
.p-contact__tel:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.p-contact__tel-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  transition: color 0.4s;
}
.p-contact__tel:hover .p-contact__tel-label { color: rgba(255,255,255,0.85); }
.p-contact__tel-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.p-contact__tel-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-contact__tel-hour {
  margin-top: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}


/* HERO 内部要素のアニメ */
.p-hero__eyebrow, .p-hero__title > span, .p-hero__lead, .p-hero__play {
  opacity: 0;
  animation: heroFadeUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.p-hero__eyebrow                   { animation-delay: 0.2s; }
.p-hero__title > span:nth-child(1) { animation-delay: 0.4s; }
.p-hero__title > span:nth-child(2) { animation-delay: 0.55s; }
.p-hero__lead                      { animation-delay: 0.85s; }
.p-hero__play                      { animation-delay: 1.1s; transform: translate(-50%, -50%); }


/* TOP用レスポンシブ */
@media (max-width: 1080px) {
  .p-indexnav { display: none; }
  .p-people__grid, .p-message__grid { grid-template-columns: 1fr; gap: 56px; }
  .p-recruit-teaser__inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 48px; }
  .p-service__item, .p-service__item:nth-child(2n) { grid-template-columns: 1fr; }
  .p-service__item:nth-child(2n) .p-service__item-visual { order: 1; }
  .p-service__item:nth-child(2n) .p-service__item-body { order: 2; }
  .p-service__item-body { padding: 64px 48px; }
  .p-philosophy__list { grid-template-columns: 1fr; }
  .p-about__factories { grid-template-columns: 1fr; }
  .p-about__factory { border-right: none; border-bottom: 1px solid var(--line); }
  .p-about__factory:last-child { border-bottom: none; }
  .p-about__logo-section { grid-template-columns: 1fr; padding: 48px; gap: 48px; }
  .p-contact__tels { grid-template-columns: 1fr; }
  .p-news__link { grid-template-columns: 1fr; gap: 8px; }
  .p-hero__trio { grid-template-columns: 1fr; }
  .p-hero__trio-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 768px) {
  .p-hero__inner { padding: 100px 24px 200px; }
  .p-hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .p-hero__play { width: 72px; height: 72px; }
  .p-intro__bg-text { font-size: 14rem; right: -50px; }
  .p-philosophy__bg-kanji { font-size: 18rem; }
}


/* ============================================================
   TEASER STYLES (TOP用 / 詳細ページへの誘導用)
   ※ 各 teaser セクションは「TOPでは概要のみ」「詳細は下層」の構造
============================================================ */

/* セクション末尾のCTAボタンエリア */
.p-section-cta {
  margin-top: 80px;
  text-align: center;
}
.c-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.c-btn--outline-light:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}


/* ─── SERVICE TEASER ─── */
.p-service-teaser__lead {
  text-align: center;
  font-size: 1rem;
  line-height: 2.3;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto 80px;
}
.p-service-teaser__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.p-service-teaser__item {
  position: relative;
}
.p-service-teaser__link {
  display: block;
  background: var(--cream);
  transition: transform 0.4s, box-shadow 0.4s;
}
.p-service-teaser__link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(20, 25, 41, 0.1);
}
.p-service-teaser__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.p-service-teaser__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.p-service-teaser__link:hover .p-service-teaser__visual img {
  transform: scale(1.08);
}
.p-service-teaser__num {
  position: absolute;
  top: 28px; left: 28px;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.p-service-teaser__num small {
  display: block;
  font-size: 0.3em;
  letter-spacing: 0.3em;
  color: var(--orange-soft);
  margin-top: 8px;
}
.p-service-teaser__body {
  padding: 40px 40px 44px;
}
.p-service-teaser__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.p-service-teaser__text {
  font-size: 0.9rem;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: 24px;
}
.p-service-teaser__more {
  display: inline-flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  transition: gap 0.3s;
  gap: 0;
}
.p-service-teaser__link:hover .p-service-teaser__more {
  gap: 10px;
  color: var(--ink);
}


/* ─── PHILOSOPHY TEASER ─── */
.p-philosophy-teaser .l-container { position: relative; z-index: 1; }

.p-philosophy-teaser__main {
  text-align: center;
  margin-bottom: 72px;
}
.p-philosophy-teaser__catch {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 36px;
  line-height: 2;
  word-break: keep-all;
}
.p-philosophy-teaser__catch > span { display: block; }
.p-philosophy-teaser__catch em {
  font-style: normal;
  color: var(--orange);
}
.p-philosophy-teaser__main-text {
  font-size: 1rem;
  line-height: 2.3;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
}

.p-philosophy-teaser__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.p-philosophy-teaser__pillars li {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.p-philosophy-teaser__pillars li:last-child { border-right: none; }
.p-philosophy-teaser__pillar-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}
.p-philosophy-teaser__pillar-title {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}


/* ─── MESSAGE TEASER ─── */
.p-message-teaser__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
.p-message-teaser__visual {
  position: relative;
  aspect-ratio: 3 / 4;
}
.p-message-teaser__visual-placeholder {
  position: relative;
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, rgba(232,80,26,0.05) 0%, rgba(4,30,77,0.1) 100%),
    var(--cream-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 48px;
  border: 1px dashed var(--line);
  z-index: 1;
}
.p-message-teaser__visual-placeholder-icon {
  width: 80px; height: 80px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
}
.p-message-teaser__visual-placeholder-icon svg { width: 40px; height: 40px; }
.p-message-teaser__visual-placeholder-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.p-message-teaser__visual-placeholder-text {
  font-size: 0.78rem;
  color: var(--text-mute);
  line-height: 1.8;
}
.p-message-teaser__visual-frame {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 70%; height: 70%;
  border: 6px solid var(--orange);
  z-index: 0;
}
.p-message-teaser__visual-name {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  padding: 16px 24px;
}
.p-message-teaser__visual-name-position {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}
.p-message-teaser__visual-name-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.p-message-teaser__visual-name-jp strong {
  font-size: 1.15rem;
  margin-left: 8px;
  letter-spacing: 0.2em;
}
.p-message-teaser__label {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.25rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.p-message-teaser__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  word-break: keep-all;
}
.p-message-teaser__title > span { display: block; }
.p-message-teaser__text {
  font-size: 0.96rem;
  line-height: 2.3;
  color: var(--text);
  margin-bottom: 32px;
}
.p-message-teaser__text strong {
  color: var(--orange);
  font-weight: 600;
}
.p-message-teaser__more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  background: var(--ink);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.12em;
  transition: background 0.35s, gap 0.3s;
}
.p-message-teaser__more:hover {
  background: var(--orange);
  gap: 22px;
}


/* ─── EXPLORE HUB (4カード) ─── */
.p-explore__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.p-explore__item {}
.p-explore__link {
  display: block;
  background: var(--paper);
  height: 100%;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}
.p-explore__link:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(20, 25, 41, 0.12);
}
.p-explore__visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.p-explore__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.p-explore__link:hover .p-explore__visual img {
  transform: scale(1.08);
}
.p-explore__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,30,77,0) 50%, rgba(4,30,77,0.4) 100%);
}
.p-explore__body {
  padding: 32px 28px 36px;
  position: relative;
}
.p-explore__num {
  position: absolute;
  top: -22px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: var(--orange);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.p-explore__en {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.p-explore__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.p-explore__text {
  font-size: 0.84rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 24px;
  min-height: 3.5em;
}
.p-explore__more {
  display: inline-flex; align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.08em;
  transition: color 0.3s, gap 0.3s;
  gap: 0;
}
.p-explore__link:hover .p-explore__more {
  color: var(--orange);
  gap: 10px;
}


/* TEASER 共通レスポンシブ */
@media (max-width: 1080px) {
  .p-service-teaser__list { grid-template-columns: 1fr; gap: 40px; }
  .p-philosophy-teaser__pillars { grid-template-columns: 1fr; }
  .p-philosophy-teaser__pillars li { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .p-philosophy-teaser__pillars li:last-child { border-bottom: none; }
  .p-message-teaser__grid { grid-template-columns: 1fr; gap: 56px; }
  .p-explore__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .p-explore__list { grid-template-columns: 1fr; }
}


/* ============================================================
   風林火山 背景 (TOP PHILOSOPHY)
============================================================ */
.p-philosophy__furin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 820px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.06;
}
.p-philosophy__furin img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .p-philosophy__furin { width: 110%; max-width: none; opacity: 0.05; }
}
