/* moluta corporate site — navy + lime, BtoB tone */

:root {
  --primary: #0A1E4F;
  --primary-deep: #050F2C;
  --accent: #CBFF5B;
  --accent-d: #B5E748;
  --ink: #1F1F1F;
  --ink-2: #4B4D57;
  --muted: #8A8D99;
  --bg: #ffffff;
  --bg-soft: #E9ECF2;
  --line: #D0D9E9;
  --line-d: rgba(255,255,255,0.10);

  --font-en: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-jp: "Noto Sans JP", "YuGothic", "Yu Gothic", "Hiragino Sans", sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .35s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  font-size: clamp(14px, 1vw, 20px);
  overflow-y: scroll;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-jp);
  font-weight: 400;
  line-height: 2;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.en { font-family: var(--font-en); }
.wrap { max-width: 130rem; margin: 0 auto; padding: 0 5rem; }
@media (max-width: 768px) { .wrap { padding: 0 2.4rem; } }

/* ===== HEADER ===== */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 2.2rem 0;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.hdr.scrolled {
  background: rgba(10,30,79,0.96);
  backdrop-filter: blur(20px);
  padding: 1.4rem 0;
}
.hdr-inner {
  max-width: 130rem; margin: 0 auto; padding: 0 5rem;
  display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 768px) { .hdr-inner { padding: 0 2.4rem; } }
.logo {
  font-family: var(--font-en);
  font-weight: 800; font-size: 2.4rem;
  color: #fff; letter-spacing: -0.03em;
}
.logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 1.4rem; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-en);
  font-size: 1.3rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 0.8rem 1.6rem;
  transition: color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--primary) !important;
  padding: 1.2rem 2.4rem !important;
  font-weight: 800 !important;
  border-radius: 999px;
  transition: background var(--dur) var(--ease), transform .15s ease;
}
.nav-cta:hover { background: var(--accent-d); transform: translateY(-1px); }

.ham { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.ham span { display: block; width: 22px; height: 1.5px; background: #fff; }
@media (max-width: 900px) { .nav-links, .nav-cta { display: none; } .ham { display: flex; } }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 60rem;
  overflow: hidden;
  background: var(--primary-deep);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.8s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
  animation: kenburns 14s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.0) translate(0,0); }
  to { transform: scale(1.12) translate(-2%, -1%); }
}
.hero-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,30,79,0.35) 0%, rgba(5,15,44,0.85) 100%),
    radial-gradient(circle at 80% 30%, rgba(203,255,91,0.08), transparent 50%);
}
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 8rem;
  padding: 0 5rem;
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 4rem;
  color: #fff;
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding: 0 2.4rem; bottom: 6rem; }
}
.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.4rem;
  display: inline-flex; align-items: center; gap: 1.2rem;
}
.hero-eyebrow::before {
  content: ""; width: 4rem; height: 1px; background: var(--accent);
}
.hero h1 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(4rem, 6vw, 8rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 3.2rem;
}
.hero h1 .acc { color: var(--accent); }
.hero-meta {
  font-family: var(--font-en);
  font-size: 1.3rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 2;
  letter-spacing: 0.08em;
  max-width: 32rem;
  text-align: right;
}
@media (max-width: 900px) { .hero-meta { text-align: left; } }
.hero-scroll {
  position: absolute; left: 50%; bottom: 3rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  color: rgba(255,255,255,0.5);
}
.hero-scroll-txt {
  font-family: var(--font-en); font-size: 1rem;
  letter-spacing: 0.25em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 6rem;
  background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
  position: relative; overflow: hidden;
}
.hero-scroll-line::before {
  content: ""; position: absolute; left: 0; right: 0;
  height: 1.5rem; background: var(--accent);
  animation: scrollDown 2.2s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { top: -1.5rem; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 6rem; opacity: 0; }
}

/* ===== SECTION COMMON ===== */
.sec { padding-top: 12rem; padding-bottom: 12rem; position: relative; }
@media (max-width: 768px) { .sec { padding-top: 7rem; padding-bottom: 7rem; } }
.sec-soft { background: var(--bg-soft); }
.sec-dark { background: var(--primary); color: #fff; }
.sec-head { text-align: center; max-width: 80rem; margin: 0 auto 6rem; }
.sec-head .sec-label { justify-content: center; }
.sec-head .sec-lead { margin: 0 auto; }
.sec-center { text-align: center; }
.sec-label {
  font-family: var(--font-en);
  font-size: 1.2rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 1.2rem;
  margin-bottom: 2rem;
}
.sec-label::before {
  content: ""; width: 3rem; height: 1px; background: var(--primary);
}
.sec-ttl {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(3.2rem, 4vw, 5.4rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 3rem;
}
.sec-ttl .acc { color: var(--primary); }
.sec-lead {
  font-size: 1.5rem;
  color: var(--ink-2);
  max-width: 60rem;
  line-height: 2.1;
}

/* ===== MISSION SECTION ===== */
.mission {
  background: var(--bg);
  display: grid; grid-template-columns: 1fr 2fr; gap: 6rem;
  align-items: center;
}
@media (max-width: 900px) { .mission { grid-template-columns: 1fr; } }
.mission-left {
  border-right: 1px solid var(--line);
  padding-right: 4rem;
  text-align: right;
}
.mission-left .en-vertical {
  font-family: var(--font-en);
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--primary);
  writing-mode: vertical-rl;
  display: inline-block;
  margin-left: auto;
}
@media (max-width: 900px) {
  .mission-left { border-right: none; padding-right: 0; text-align: left; }
  .mission-left .en-vertical { writing-mode: horizontal-tb; }
}
.mission-right p {
  font-size: 1.6rem; line-height: 2.2; margin-bottom: 2.4rem;
  color: var(--ink-2);
}
.mission-quote {
  font-family: var(--font-jp); font-weight: 900;
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  line-height: 1.5; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 3rem;
}
.mission-quote .acc { color: var(--primary); }

/* ===== SERVICES ===== */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  margin-top: 6rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.svc {
  background: #fff; padding: 4rem 3rem;
  border-radius: 8px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
  border-top: 4px solid var(--primary);
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(10,30,79,0.12); }
.svc-icn {
  width: 6.4rem; height: 6.4rem; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2.4rem;
}
.svc-icn svg {
  width: 2.8rem; height: 2.8rem;
  stroke: var(--accent); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.svc-n {
  font-family: var(--font-en);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--primary);
  margin-bottom: 1rem;
}
.svc-ttl {
  font-family: var(--font-jp); font-weight: 800;
  font-size: 2.2rem; line-height: 1.45;
  color: var(--ink); margin-bottom: 1.5rem;
}
.svc-desc {
  font-size: 1.4rem; line-height: 2; color: var(--ink-2);
}

/* ===== STATS ===== */
.stats {
  background: var(--primary);
  color: #fff;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--accent);
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 5rem 3rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-en);
  font-size: clamp(5rem, 6vw, 8rem); font-weight: 800;
  color: var(--accent); line-height: 1; letter-spacing: -0.03em;
}
.stat-n .u { font-size: 0.42em; color: rgba(255,255,255,0.7); margin-left: 0.3em; }
.stat-l {
  font-size: 1.3rem; color: rgba(255,255,255,0.7);
  margin-top: 1.5rem; letter-spacing: 0.05em;
}

/* ===== RECRUIT ===== */
.recruit { background: var(--bg); }
.recruit-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 8rem;
  align-items: center;
}
@media (max-width: 900px) { .recruit-inner { grid-template-columns: 1fr; gap: 4rem; } }
.recruit-img {
  position: relative; aspect-ratio: 5/4; overflow: hidden; border-radius: 4px;
}
.recruit-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.recruit-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,79,0.18), transparent 60%);
}
.recruit-perks {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  margin: 3rem 0;
}
.recruit-perks span {
  background: var(--primary); color: #fff;
  font-size: 1.2rem; font-weight: 700; padding: 0.8rem 1.6rem;
  border-radius: 999px; letter-spacing: 0.05em;
}

/* ===== CONTACT CTA ===== */
.cta {
  background: var(--primary-deep); color: #fff;
  text-align: center; padding: 12rem 0;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(203,255,91,0.10), transparent 60%);
}
.cta-inner { position: relative; }
.cta h2 {
  font-family: var(--font-jp); font-weight: 900;
  font-size: clamp(3.2rem, 4.5vw, 6rem);
  line-height: 1.4;
  margin-bottom: 2rem;
}
.cta h2 .acc { color: var(--accent); }
.cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1.5rem; margin-bottom: 4rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1.6rem 3rem;
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 1.4rem; font-weight: 700;
  transition: transform .15s ease, background var(--dur) var(--ease);
}
.btn-lime {
  background: var(--accent); color: var(--primary);
}
.btn-lime:hover { background: var(--accent-d); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.3); color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-arr::after { content: "→"; transition: transform var(--dur) var(--ease); }
.btn-arr:hover::after { transform: translateX(0.5rem); }

/* ===== FOOTER ===== */
.ftr {
  background: var(--primary-deep); color: rgba(255,255,255,0.6);
  padding: 8rem 0 3rem;
  border-top: 1px solid var(--accent);
}
.ftr-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 5rem; margin-bottom: 6rem;
}
@media (max-width: 900px) { .ftr-grid { grid-template-columns: 1fr 1fr; } }
.ftr-brand .logo { margin-bottom: 2rem; }
.ftr-brand p { font-size: 1.3rem; line-height: 2; }
.ftr-col h4 {
  font-family: var(--font-en);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}
.ftr-col a {
  display: block; padding: 0.6rem 0; font-size: 1.3rem;
  transition: color var(--dur) var(--ease);
}
.ftr-col a:hover { color: var(--accent); }
.ftr-btm {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 3rem;
  display: flex; justify-content: space-between;
  font-family: var(--font-en); font-size: 1.1rem; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.3);
}
@media (max-width: 768px) { .ftr-btm { flex-direction: column; gap: 1.5rem; } }

/* ===== PAGE HERO (inner pages) ===== */
.pg-hero {
  background: var(--primary);
  color: #fff;
  padding: 18rem 0 8rem;
  position: relative; overflow: hidden;
}
.pg-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(203,255,91,0.08), transparent 50%);
}
.pg-hero-inner { position: relative; max-width: 130rem; margin: 0 auto; padding: 0 5rem; }
@media (max-width: 768px) { .pg-hero-inner { padding: 0 2.4rem; } .pg-hero { padding: 14rem 0 6rem; } }
.bc {
  font-family: var(--font-en);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  display: flex; gap: 0.8rem;
}
.bc a { color: rgba(255,255,255,0.7); }
.bc a:hover { color: var(--accent); }
.bc .sep { color: rgba(255,255,255,0.3); }
.pg-hero-en {
  font-family: var(--font-en);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
  display: inline-flex; align-items: center; gap: 1.2rem;
}
.pg-hero-en::before { content: ""; width: 3rem; height: 1px; background: var(--accent); }
.pg-hero h1 {
  font-family: var(--font-jp); font-weight: 900;
  font-size: clamp(3.6rem, 5.2vw, 7rem);
  line-height: 1.25; letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.pg-hero h1 .acc { color: var(--accent); }
.pg-lead {
  font-size: 1.5rem; line-height: 2;
  color: rgba(255,255,255,0.7);
  max-width: 64rem;
}

/* ===== CO TABLE (登記情報) ===== */
.co-table {
  width: 100%; border-collapse: collapse;
  border-top: 1px solid var(--line);
}
.co-table tr { border-bottom: 1px solid var(--line); }
.co-table th {
  width: 24rem;
  font-family: var(--font-en); font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary);
  padding: 2.4rem 2rem;
  text-align: left; vertical-align: top;
}
.co-table td { padding: 2.4rem 2rem; font-size: 1.5rem; color: var(--ink-2); line-height: 2; }
@media (max-width: 768px) {
  .co-table th, .co-table td { display: block; width: 100%; }
  .co-table th { padding: 1.6rem 0 0.4rem; font-size: 1.1rem; }
  .co-table td { padding: 0 0 2rem; }
}

/* ===== BIZ-LIST ===== */
.biz-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.biz-item {
  display: grid; grid-template-columns: 12rem 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  transition: background var(--dur) var(--ease);
}
.biz-item:hover { background: var(--bg-soft); padding-left: 2rem; padding-right: 2rem; }
.biz-num {
  font-family: var(--font-en);
  font-size: 4.8rem; font-weight: 800;
  color: var(--accent);
  line-height: 1;
  -webkit-text-stroke: 1px var(--primary);
  -webkit-text-fill-color: transparent;
}
.biz-item:hover .biz-num { -webkit-text-fill-color: var(--accent); -webkit-text-stroke: 0; }
.biz-body h3 {
  font-size: 2.4rem; font-weight: 800;
  margin-bottom: 1.2rem; color: var(--ink);
}
.biz-body p { font-size: 1.4rem; line-height: 2; color: var(--ink-2); }
@media (max-width: 768px) {
  .biz-item { grid-template-columns: 1fr; gap: 1.6rem; padding: 3rem 0; }
  .biz-item:hover { padding-left: 0; padding-right: 0; }
  .biz-num { font-size: 3.6rem; }
}

/* ===== MVV CARDS ===== */
.mvv-cards { display: flex; flex-direction: column; gap: 2rem; }
.mvv-card {
  position: relative; overflow: hidden;
  border-radius: 4px;
  padding: 8rem 6rem;
}
.mvv-card-m { background: var(--accent); color: var(--primary); }
.mvv-card-v { background: var(--primary); color: #fff; }
.mvv-card-va { background: var(--primary-deep); color: #fff; border: 1px solid var(--accent); }
.mvv-card-en {
  font-family: var(--font-en);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 3rem;
}
.mvv-card-txt {
  font-family: var(--font-jp); font-weight: 900;
  font-size: clamp(3rem, 5vw, 6.4rem);
  line-height: 1.4; letter-spacing: -0.01em;
}
.mvv-card-v .acc, .mvv-card-va .acc { color: var(--accent); }
.mvv-card-ghost {
  position: absolute; right: -2rem; bottom: -3rem;
  font-family: var(--font-en); font-size: 16rem; font-weight: 900;
  opacity: 0.08; letter-spacing: -0.04em; line-height: 1;
  pointer-events: none; user-select: none;
}
@media (max-width: 768px) {
  .mvv-card { padding: 5rem 3rem; }
  .mvv-card-ghost { font-size: 8rem; }
}

/* ===== POSITIONS (recruit) ===== */
.positions {
  display: grid; gap: 1.6rem;
  max-width: 96rem; margin: 0 auto;
}
.pos {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 8rem 1fr auto; gap: 3rem;
  align-items: center;
  padding: 3.4rem 4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pos::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--dur) var(--ease);
}
.pos:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10,30,79,0.10);
}
.pos:hover::before { transform: scaleY(1); }
.pos-num {
  font-family: var(--font-en);
  font-size: 4.4rem; font-weight: 800;
  color: var(--primary); line-height: 1;
  -webkit-text-stroke: 1px var(--primary);
  -webkit-text-fill-color: transparent;
  transition: -webkit-text-fill-color var(--dur) var(--ease);
}
.pos:hover .pos-num { -webkit-text-fill-color: var(--primary); -webkit-text-stroke: 0; }
.pos-l { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.pos-tag {
  font-family: var(--font-en);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.22em; color: var(--primary);
  background: none; padding: 0;
  display: inline-block; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.pos-ttl { font-size: 2.2rem; font-weight: 800; color: var(--ink); line-height: 1.4; }
.pos-meta { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.pos-meta span {
  font-size: 1.15rem; font-weight: 700;
  color: var(--ink-2);
  background: var(--bg-soft);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  letter-spacing: 0.02em;
}
.pos-arr {
  width: 5.6rem; height: 5.6rem; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2); font-family: var(--font-en); font-size: 1.8rem;
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}
.pos:hover .pos-arr { background: var(--accent); border-color: var(--accent); color: var(--primary); }
@media (max-width: 768px) {
  .pos { grid-template-columns: 5.6rem 1fr; padding: 2.4rem; gap: 1.8rem; }
  .pos-num { font-size: 3.4rem; }
  .pos-ttl { font-size: 1.8rem; }
  .pos-arr { grid-column: 1 / -1; margin-left: auto; width: 4.4rem; height: 4.4rem; font-size: 1.5rem; }
}

/* ===== CONTACT FORM ===== */
.ct-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 8rem; }
@media (max-width: 900px) { .ct-layout { grid-template-columns: 1fr; gap: 4rem; } }
.ct-info .item { margin-bottom: 3rem; }
.ct-info .lbl {
  font-family: var(--font-en);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.8rem;
}
.ct-info .val { font-size: 1.5rem; color: var(--ink-2); line-height: 2; }
.ct-info .val a:hover { color: var(--primary); }
.ct-form { display: flex; flex-direction: column; gap: 2.4rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 768px) { .f-row { grid-template-columns: 1fr; } }
.f-group { display: flex; flex-direction: column; gap: 0.8rem; }
.f-lbl { font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.f-lbl .req { color: var(--accent); margin-left: 0.3rem; }
.f-input, .f-select, .f-ta {
  width: 100%; padding: 1.4rem 1.6rem;
  font: inherit; font-size: 1.4rem;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: #fff; color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.f-input:focus, .f-select:focus, .f-ta:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10,30,79,0.1);
}
.f-ta { min-height: 16rem; resize: vertical; }
.f-submit { display: flex; justify-content: flex-end; margin-top: 1rem; }

/* ===== PHOTO HERO (内ページ用、画像背景) ===== */
.pg-hero.with-photo {
  padding: 0;
  min-height: 92vh;
  display: flex; flex-direction: column;
  text-align: center;
  position: relative;
}
.pg-hero.with-photo .pg-hero-inner {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 16rem; padding-bottom: 4rem;
  width: 100%; max-width: 130rem; margin: 0 auto;
}
.pg-hero.with-photo .bc { justify-content: center; }
.pg-hero.with-photo .pg-hero-en { justify-content: center; }
.pg-hero.with-photo .pg-lead { margin-left: auto; margin-right: auto; }
.pg-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.pg-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.45;
  animation: kenburns 18s var(--ease) infinite alternate;
}
.pg-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,79,0.55) 0%, rgba(5,15,44,0.92) 100%);
}
.pg-scroll {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  margin: 0 auto 3rem;
  padding-top: 2rem;
  z-index: 2;
}
.pg-scroll-txt {
  font-family: var(--font-en); font-size: 1rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.pg-scroll-line {
  width: 1px; height: 5rem;
  background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
  position: relative; overflow: hidden;
}
.pg-scroll-line::before {
  content: ""; position: absolute; left: 0; right: 0;
  height: 1.5rem; background: var(--accent);
  animation: scrollDown 2.2s var(--ease) infinite;
}

/* ===== EDITORIAL SPLIT (画像+テキスト) ===== */
.ed-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: center;
}
.ed-split.reverse > .ed-img { order: 2; }
@media (max-width: 900px) {
  .ed-split { grid-template-columns: 1fr; gap: 4rem; }
  .ed-split.reverse > .ed-img { order: 0; }
}
.ed-img {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px;
}
.ed-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.ed-img:hover img { transform: scale(1.04); }
.ed-img-tag {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--accent); color: var(--primary);
  padding: 0.8rem 1.6rem;
  font-family: var(--font-en);
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.ed-content h3 {
  font-family: var(--font-jp); font-weight: 900;
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  line-height: 1.4; letter-spacing: -0.01em;
  margin-bottom: 2.4rem;
}
.ed-content h3 .acc { color: var(--primary); }
.ed-content p {
  font-size: 1.5rem; line-height: 2.1; color: var(--ink-2);
  margin-bottom: 2rem;
}

/* ===== IMAGE GRID (モザイク) ===== */
.img-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 14rem;
  gap: 1.6rem;
}
.img-grid > * { overflow: hidden; border-radius: 4px; position: relative; background: var(--primary); }
.img-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.img-grid > *:hover img { transform: scale(1.08); }
.ig-w2 { grid-column: span 2; }
.ig-w3 { grid-column: span 3; }
.ig-w4 { grid-column: span 4; }
.ig-h2 { grid-row: span 2; }
.ig-cap {
  position: absolute; bottom: 1.6rem; left: 1.6rem;
  background: rgba(10,30,79,0.85); color: #fff;
  padding: 0.4rem 1rem; border-radius: 2px;
  font-family: var(--font-en);
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
@media (max-width: 768px) {
  .img-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 18rem; }
  .img-grid > * { grid-column: span 1 !important; grid-row: span 1 !important; }
  .ig-w4 { grid-column: span 2 !important; }
}

/* ===== LARGE QUOTE ===== */
.quote-big {
  background: var(--bg-soft);
  padding: 14rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.quote-big::before {
  content: """;
  position: absolute; top: 2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-en); font-size: 26rem; font-weight: 900;
  color: var(--accent); opacity: 0.4; line-height: 1;
  pointer-events: none; user-select: none;
}
.quote-big-inner { position: relative; max-width: 96rem; margin: 0 auto; padding: 0 5rem; }
.quote-big p {
  font-family: var(--font-jp); font-weight: 900;
  font-size: clamp(2.8rem, 4.5vw, 5.6rem);
  line-height: 1.55; letter-spacing: -0.01em;
  color: var(--ink);
}
.quote-big p .acc { color: var(--primary); }
.quote-big .cite {
  font-family: var(--font-en); font-size: 1.2rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-2); margin-top: 3.6rem;
}

/* ===== STEPS / PROCESS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; padding: 4rem 3rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  counter-increment: step;
  position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step:hover { border-color: var(--primary); transform: translateY(-4px); }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 1.6rem; right: 2rem;
  font-family: var(--font-en); font-size: 7rem; font-weight: 800;
  color: var(--accent); opacity: 0.45; line-height: 1;
}
.step h3 {
  font-size: 2.2rem; font-weight: 800;
  margin-bottom: 1.4rem; color: var(--primary);
}
.step p { font-size: 1.4rem; line-height: 2; color: var(--ink-2); }

/* ===== VOICE / TESTIMONIAL CARDS ===== */
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
@media (max-width: 900px) { .voice-grid { grid-template-columns: 1fr; } }
.voice {
  background: #fff; padding: 3.6rem 3rem;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  position: relative;
}
.voice-q {
  font-family: var(--font-jp); font-weight: 700;
  font-size: 1.6rem; line-height: 1.85;
  color: var(--ink); margin-bottom: 2.4rem;
}
.voice-by {
  font-size: 1.2rem; color: var(--muted);
  font-family: var(--font-en); letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 4rem;
}
.timeline::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--line);
}
.tl-item {
  position: relative; padding: 0 0 4rem 0;
}
.tl-item::before {
  content: ""; position: absolute;
  left: -4.7rem; top: 0.6rem;
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--primary);
}
.tl-year {
  font-family: var(--font-en); font-size: 1.8rem; font-weight: 700;
  color: var(--primary); margin-bottom: 0.8rem;
}
.tl-ttl { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.6rem; }
.tl-desc { font-size: 1.4rem; color: var(--ink-2); line-height: 2; }

/* ===== FAQ accordion ===== */
.faq { display: flex; flex-direction: column; gap: 1.2rem; }
.faq details {
  background: var(--bg-soft);
  border-radius: 4px;
  border: 1px solid var(--line);
}
.faq details[open] { border-color: var(--primary); }
.faq summary {
  padding: 2.4rem 2.8rem;
  font-size: 1.6rem; font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 5rem;
}
.faq summary::after {
  content: "+"; position: absolute;
  right: 2.4rem; top: 2rem;
  font-family: var(--font-en); font-size: 2.6rem;
  color: var(--accent); font-weight: 600;
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body {
  padding: 0 2.8rem 2.4rem;
  font-size: 1.4rem; color: var(--ink-2); line-height: 2;
}

/* ===== REVEAL ===== */
[data-r] {
  opacity: 0; transform: translateY(2.4rem);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-r].on { opacity: 1; transform: translateY(0); }
[data-r][data-d="1"] { transition-delay: .12s; }
[data-r][data-d="2"] { transition-delay: .24s; }
[data-r][data-d="3"] { transition-delay: .36s; }

/* ===== CURSOR ===== */
.cur-dot, .cur-ring {
  position: fixed; pointer-events: none; z-index: 999;
  transform: translate(-50%, -50%);
}
.cur-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}
.cur-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(203,255,91,0.5); border-radius: 50%;
  transition: width .25s ease, height .25s ease;
}
.cur-ring.hov { width: 56px; height: 56px; border-color: var(--accent); }
@media (hover: none) { .cur-dot, .cur-ring { display: none; } }
