:root {
  --bg: #fff7ef;
  --paper: #ffffff;
  --ink: #2b1b12;
  --muted: #73594a;
  --line: #f2d8c2;
  --accent: #F08437;
  --accent-2: #F08437;
  --accent-dark: #d96b23;
  --navy: #8f3f12;
  --navy-2: #b85a22;
  --navy-3: #5d2a10;
  --radius: 30px;
  --shadow: 0 24px 80px rgba(240, 132, 55, .18);
  --shadow-soft: 0 16px 50px rgba(240, 132, 55, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 132, 55, .16), transparent 28%),
    radial-gradient(circle at 92% 6%, rgba(240, 132, 55, .18), transparent 26%),
    var(--bg);
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 32px));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px 12px 22px;
  border: 1px solid rgba(255,255,255,.70);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 46px rgba(240, 132, 55, .18);
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 188px; height: auto; }
.global-nav { display: flex; align-items: center; gap: 6px; }
.global-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #5f3925;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.global-nav a:hover { background: #f3eee6; color: var(--accent-dark); transform: translateY(-1px); }
.global-nav .nav-contact { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 10px 26px rgba(240, 132, 55, .28); }
.global-nav .nav-contact:hover { color: #fff; background: var(--accent-dark); }
.nav-toggle { display: none; }
.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 54px;
  padding: 168px max(32px, calc((100vw - 1160px) / 2)) 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; z-index: -2; }
.hero-bg {
  background:
    linear-gradient(120deg, rgba(240,132,55,.98), rgba(240,132,55,.92) 58%, rgba(255,246,238,.86)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='950' viewBox='0 0 1600 950'%3E%3Crect width='1600' height='950' fill='%23F08437'/%3E%3Cg opacity='.20'%3E%3Cpath d='M-20 640 C260 520 470 665 760 565 S1190 405 1620 535' fill='none' stroke='%23fff' stroke-width='2'/%3E%3Cpath d='M-20 730 C280 610 545 765 840 650 S1220 535 1620 620' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/g%3E%3Cg opacity='.12' fill='%23ffffff'%3E%3Crect x='150' y='220' width='330' height='200' rx='34'/%3E%3Crect x='995' y='185' width='410' height='260' rx='42'/%3E%3Crect x='1040' y='505' width='330' height='220' rx='38'/%3E%3C/g%3E%3C/svg%3E") center/cover;
}
.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.42), transparent 28%),
    radial-gradient(circle at 14% 68%, rgba(197,86,26,.20), transparent 32%);
}
.hero-content, .hero-visual { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 14px;
  color: #fff;
  font: 900 13px/1 Inter, sans-serif;
  letter-spacing: .16em;
  text-shadow: 0 2px 12px rgba(126, 54, 14, .22);
}
.hero h1 {
  margin: 0;
  max-width: 830px;
  color: #fff;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.06;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: linear-gradient(135deg, #F08437, #e8752b); box-shadow: 0 18px 42px rgba(243,107,33,.30); }
.button.primary:hover { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); box-shadow: 0 20px 48px rgba(243,107,33,.38); }
.button.secondary { color: #fff; border: 1px solid rgba(255,255,255,.36); background: rgba(255,255,255,.08); }
.button.large { min-height: 62px; padding-inline: 32px; }
.hero-visual { min-height: 460px; }
.stage-card {
  position: absolute;
  inset: 56px 0 auto auto;
  width: 390px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 34px;
  color: #fff;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 80px rgba(133, 61, 20, .26);
}
.stage-card .tag { color: var(--accent-2); font: 900 12px/1 Inter, sans-serif; letter-spacing: .16em; }
.stage-card strong { display: block; margin: 16px 0 18px; font: 900 31px/1.22 Inter, sans-serif; letter-spacing: -.04em; }
.progress { overflow: hidden; height: 9px; border-radius: 999px; background: rgba(255,255,255,.16); margin-bottom: 22px; }
.progress i { display: block; width: 78%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.workflow-row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.12); }
.workflow-row span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.20); color: #fff; font: 900 12px/1 Inter, sans-serif; }
.workflow-row p { margin: 0; font-weight: 800; color: rgba(255,255,255,.88); }
.mini-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 150px;
  height: 86px;
  border-radius: 24px;
  color: #fff;
  font: 900 15px/1 Inter, sans-serif;
  letter-spacing: .14em;
  box-shadow: 0 24px 60px rgba(133, 61, 20, .22);
}
.mini-a { top: 0; right: 255px; background: linear-gradient(135deg, #F08437, #e8752b); transform: rotate(-8deg); }
.mini-b { right: 16px; bottom: 24px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(18px); transform: rotate(7deg); }
.section { padding: 112px max(32px, calc((100vw - 1160px) / 2)); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section:not(.dark) .eyebrow,
.company .eyebrow {
  color: var(--accent);
  text-shadow: none;
}
.contact .eyebrow {
  color: #fff;
}

.section-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.16; letter-spacing: -.045em; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.intro-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 30px; align-items: stretch; }
.intro-copy {
  padding: 46px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.8);
}
.intro-copy p:first-child { margin-top: 0; }
.intro-copy p:last-child { margin-bottom: 0; }
.promise-card {
  padding: 42px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff7ef, #eadfce);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}
.card-label { margin: 0 0 16px; font: 900 12px/1 Inter, sans-serif; color: var(--accent); letter-spacing: .16em; }
.promise-card h3 { margin: 0; font-size: 30px; line-height: 1.45; letter-spacing: -.03em; }
.promise-card p:last-child { color: var(--muted); }
.dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.22), transparent 24%),
    linear-gradient(135deg, #d96b23, #F08437 62%, #f59a5c);
  color: #fff;
}
.dark::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 70px solid rgba(255,255,255,.04);
}
.section-heading.light p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  box-shadow: 0 20px 55px rgba(0,0,0,.16);
}
.service-card .number { color: #fff; font: 900 14px/1 Inter, sans-serif; }
.service-card h3 { margin: 30px 0 14px; font-size: 22px; line-height: 1.45; }
.service-card p { color: rgba(255,255,255,.74); margin-bottom: 0; }
.works-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.works-list article {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(231,223,210,.85);
  border-radius: 26px;
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow-soft);
}
.works-list article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.works-list span { color: var(--accent); font: 900 12px/1 Inter, sans-serif; letter-spacing: .14em; }
.works-list h3 { margin: 18px 0 10px; font-size: 24px; line-height: 1.38; }
.works-list p { color: var(--muted); margin-bottom: 0; }
.company { background: #fff; }
.company-table {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.company-table div {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.company-table div:last-child { border-bottom: 0; }
.company-table dt { color: var(--muted); font-weight: 800; }
.company-table dd { margin: 0; font-weight: 800; }
.company-table a { color: var(--accent-dark); }
.contact {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 max(32px, calc((100vw - 1160px) / 2)) 94px;
  padding: 54px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(243,107,33,.40), transparent 30%),
    linear-gradient(135deg, #d96b23, #F08437 68%, #f59a5c);
  box-shadow: var(--shadow);
}
.contact::before {
  content: "";
  position: absolute;
  right: 28%;
  top: -64px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.contact > * { position: relative; z-index: 1; }
.contact h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.24; letter-spacing: -.045em; }
.contact p:last-child { color: rgba(255,255,255,.76); }
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px max(32px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.footer-brand img { width: 160px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .site-header { align-items: flex-start; border-radius: 26px; }
  .brand img { width: 150px; }
  .nav-toggle { display: inline-flex; border: 0; border-radius: 999px; padding: 10px 14px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; font-weight: 900; }
  .global-nav { display: none; position: absolute; left: 14px; right: 14px; top: 68px; flex-direction: column; align-items: stretch; padding: 12px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
  .global-nav.open { display: flex; }
  .global-nav a { padding: 13px 16px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 34px; padding-top: 150px; }
  .hero-visual { min-height: 330px; }
  .stage-card { left: 0; right: auto; top: 12px; width: min(390px, 100%); }
  .mini-a { right: auto; left: 260px; top: -6px; }
  .mini-b { right: 0; bottom: 0; }
  .intro-grid, .service-grid, .works-list { grid-template-columns: 1fr; }
  .contact, .site-footer { flex-direction: column; align-items: flex-start; }
  .company-table div { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 600px) {
  .site-header { top: 12px; width: calc(100% - 20px); padding: 10px 12px 10px 16px; }
  .brand img { width: 132px; }
  .section { padding: 82px 22px; }
  .hero { padding-inline: 22px; padding-bottom: 74px; }
  .hero h1 { font-size: 42px; }
  .lead { font-size: 16px; }
  .hero-visual { min-height: 360px; }
  .stage-card { padding: 24px; }
  .stage-card strong { font-size: 26px; }
  .mini-a { left: 24px; top: 245px; }
  .mini-b { right: 16px; bottom: 0; }
  .intro-copy, .promise-card, .contact { padding: 28px; }
  .contact { margin-inline: 22px; }
  .button { width: 100%; }
}


/* ================================
   ALFIX ORANGE OVERRIDE
   Root upload version
   Main color: #F08437
================================ */
:root {
  --bg: #fff7ef !important;
  --paper: #ffffff !important;
  --ink: #2b1b12 !important;
  --muted: #73594a !important;
  --line: #f2d8c2 !important;
  --accent: #F08437 !important;
  --accent-2: #ffb36b !important;
  --accent-dark: #c95f1d !important;
  --navy: #8f3f12 !important;
  --navy-2: #b85a22 !important;
  --navy-3: #5d2a10 !important;
}

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 132, 55, .16), transparent 30%),
    radial-gradient(circle at 92% 6%, rgba(255, 179, 107, .24), transparent 28%),
    #fff7ef !important;
  color: #2b1b12 !important;
}

.site-header {
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 14px 46px rgba(240, 132, 55, .18) !important;
}

.brand img {
  width: 188px !important;
  height: auto !important;
}

.global-nav a {
  color: #5f3925 !important;
}

.global-nav a:hover {
  background: #fff2e6 !important;
  color: #c95f1d !important;
}

.hero-bg {
  background:
    linear-gradient(120deg, rgba(240,132,55,.98), rgba(242,126,40,.92) 48%, rgba(255,238,220,.94)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='950' viewBox='0 0 1600 950'%3E%3Crect width='1600' height='950' fill='%23F08437'/%3E%3Cg opacity='.18'%3E%3Cpath d='M-20 640 C260 520 470 665 760 565 S1190 405 1620 535' fill='none' stroke='%23fff' stroke-width='2'/%3E%3Cpath d='M-20 730 C280 610 545 765 840 650 S1220 535 1620 620' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/g%3E%3Cg opacity='.15' fill='%23ffffff'%3E%3Crect x='150' y='220' width='330' height='200' rx='34'/%3E%3Crect x='995' y='185' width='410' height='260' rx='42'/%3E%3Crect x='1040' y='505' width='330' height='220' rx='38'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='18' stroke-linecap='round' opacity='.42'%3E%3Cpath d='M1215 96 1465 96'/%3E%3Cpath d='M1268 148 1518 148'/%3E%3C/g%3E%3C/svg%3E") center/cover !important;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.42), transparent 28%),
    radial-gradient(circle at 14% 68%, rgba(197,86,26,.20), transparent 32%) !important;
}

.eyebrow {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(126, 54, 14, .22) !important;
}

.section:not(.dark) .eyebrow,
.company .eyebrow,
.works .eyebrow,
.intro .eyebrow {
  color: #F08437 !important;
  text-shadow: none !important;
}

.hero h1,
.hero .lead {
  color: #fff !important;
}

.stage-card {
  background: rgba(255,255,255,.18) !important;
  border-color: rgba(255,255,255,.28) !important;
  box-shadow: 0 30px 80px rgba(133, 61, 20, .26) !important;
}

.stage-card .tag {
  color: #fff !important;
}

.progress i {
  background: #fff !important;
}

.workflow-row span {
  background: rgba(255,255,255,.22) !important;
  color: #fff !important;
}

.workflow-row p {
  color: #fff !important;
}

.mini-a {
  background: #F08437 !important;
}

.mini-b {
  background: rgba(255,255,255,.18) !important;
}

.button.primary {
  background: #F08437 !important;
  box-shadow: 0 18px 42px rgba(240, 132, 55, .35) !important;
}

.button.primary:hover {
  background: #c95f1d !important;
}

.dark {
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.22), transparent 24%),
    linear-gradient(135deg, #c95f1d, #F08437 58%, #ffad66) !important;
}

.service-card .number {
  color: #fff !important;
}

.works-list article::before {
  background: #F08437 !important;
}

.works-list span,
.company-table a {
  color: #F08437 !important;
}

.contact,
.nav-contact {
  display: none !important;
}

.footer-brand img {
  width: 160px !important;
}
