@charset "UTF-8";

:root {
  --color-text: #181116;
  --color-muted: #78646b;
  --color-border: #e6d7dc;
  --color-bg: #fbf6f7;
  --color-white: #fff;
  --color-navy: #1f151a;
  --color-blue: #932E44;
  --color-green: #D6A24A;
  --color-light-blue: #f7eaee;
  --color-light-green: #fff5dc;
  --color-main: #932E44;
  --color-main-dark: #6F2233;
  --color-main-deep: #2A1119;
  --color-main-soft: #B76576;
  --color-main-pale: #F7EAEE;
  --color-sub: #F2D7DE;
  --color-accent: #D6A24A;
  --color-accent-pale: #FFF5DC;
  --font-en: "Heebo", system-ui, sans-serif;
  --font-ja: "Noto Sans JP", system-ui, sans-serif;
  --header-height: 88px;
  --container: min(1280px, calc(100% - 64px));
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow-soft: 0 24px 80px rgba(67, 24, 36, 0.13);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-ja);
  background:
    linear-gradient(rgba(16, 24, 40, .028) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(16, 24, 40, .028) 1px, transparent 1px) 0 0 / 16px 16px,
    #fbfdff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .04em;
}
body.is-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; height: auto; vertical-align: middle; }
main { overflow: clip; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 48px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease);
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 40px rgba(16, 24, 40, .08);
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}
.site-header__mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 24px;
  border: 1px solid var(--color-navy);
  transform: skewX(-12deg);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
}
.site-header__mark::before,
.footer__logo span::before {
  content: "";
  position: absolute;
}
.site-header__name {
  font-family: var(--font-en);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 36px);
  margin-left: auto;
  font-family: var(--font-en);
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 500;
  letter-spacing: .04em;
}
.site-header__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color .25s var(--ease);
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.site-header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header__menu {
  position: relative;
  z-index: 1002;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
}
.site-header__menu span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.site-header__menu span:nth-child(1) { transform: translateY(-6px); }
.site-header__menu span:nth-child(3) { transform: translateY(6px); }
.site-header__menu.is-open span:nth-child(1) { transform: rotate(35deg); }
.site-header__menu.is-open span:nth-child(2) { opacity: 0; }
.site-header__menu.is-open span:nth-child(3) { transform: rotate(-35deg); }
.site-drawer {
  position: fixed;
  z-index: 1001;
  inset: 0;
  min-height: 100dvh;
  padding: 100px 32px 40px;
  background: rgba(16, 24, 40, .96);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.site-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-drawer__inner {
  width: min(760px, 100%);
  margin-left: auto;
  display: grid;
  gap: 18px;
}
.site-drawer__label {
  margin: 0 0 8px;
  color: rgba(255,255,255,.54);
  font-family: var(--font-en);
  letter-spacing: .18em;
}
.site-drawer a:not(.site-drawer__cta a) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-family: var(--font-en);
  font-size: clamp(34px, 8vw, 72px);
  font-weight: 700;
  line-height: 1;
}
.site-drawer a:not(.site-drawer__cta a)::after { content: "→"; font-size: .45em; }
.site-drawer__cta { margin-top: 24px; }
.site-drawer__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(88px, 9vw, 150px) 0;
}
.section__head {
  position: relative;
  margin-bottom: clamp(38px, 5vw, 72px);
}
.section__head--right { margin-left: auto; max-width: 740px; text-align: left; }
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--color-blue);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section__label span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 16px 0 0 rgba(37, 99, 235, .28);
}
.section__title {
  margin: 0;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .02em;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 48px) 0 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(22, 163, 74, .16), transparent 34%),
    radial-gradient(circle at 16% 72%, rgba(37, 99, 235, .18), transparent 30%),
    #f8fbff;
}
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: .8;
  background:
    linear-gradient(rgba(16, 24, 40, .04) 1px, transparent 1px) 0 0 / 20px 20px,
    linear-gradient(90deg, rgba(16, 24, 40, .04) 1px, transparent 1px) 0 0 / 20px 20px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.6) 55%, transparent 100%);
}
.hero__bg-text {
  position: absolute;
  left: 50%;
  top: 41%;
  transform: translate(-50%, -50%);
  width: 100%;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  text-shadow: 0 20px 64px rgba(16, 24, 40, .18);
  font-family: var(--font-en);
  font-size: clamp(64px, 11vw, 188px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  opacity: .92;
  animation: heroBg 1.2s var(--ease) both;
}
.hero__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .56;
  animation: floatOrb 9s var(--ease) infinite alternate;
}
.hero__orb--blue {
  right: -120px;
  top: 120px;
  background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(37,99,235,.02));
}
.hero__orb--green {
  left: -120px;
  bottom: 100px;
  background: linear-gradient(135deg, rgba(22,163,74,.2), rgba(22,163,74,.02));
  animation-delay: -2s;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding-top: 12vh;
}
.hero__eyebrow {
  margin: 0 0 24px;
  color: var(--color-blue);
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero__title {
  margin: 0;
  font-size: clamp(48px, 6.5vw, 112px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .01em;
}
.hero__title span {
  display: block;
  max-width: fit-content;
  white-space: nowrap;
}
.hero__lead {
  max-width: 880px;
  margin: 30px 0 0;
  color: #344054;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 2;
}
.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .06em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.button:hover { transform: translateY(-3px); }
.button--primary {
  color: #fff;
  background: var(--color-navy);
  box-shadow: 0 18px 48px rgba(16, 24, 40, .22);
}
.button--line {
  border: 1px solid rgba(16, 24, 40, .18);
  background: rgba(255,255,255,.65);
}
.button--line-light {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}
.hero__marquee {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 100%;
  overflow: hidden;
  color: rgba(16, 24, 40, .18);
  font-family: var(--font-en);
  font-size: clamp(46px, 8vw, 120px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.hero__marquee-track {
  display: flex;
  gap: .28em;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.hero__marquee span::after { content: " /"; }

.business__layout {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
.business__visual {
  position: sticky;
  top: 112px;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-navy);
  box-shadow: var(--shadow-soft);
}
.business__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 18px 18px;
}
.business__visual-item {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .5s var(--ease), transform .7s var(--ease);
}
.business__visual-item.is-active { opacity: 1; transform: scale(1); }
.business__visual-item:nth-child(1) { background: linear-gradient(135deg, #0f172a, #2563eb); }
.business__visual-item:nth-child(2) { background: linear-gradient(135deg, #172554, #16a34a); }
.business__visual-item:nth-child(3) { background: linear-gradient(135deg, #1f2937, #0891b2); }
.business__visual-item:nth-child(4) { background: linear-gradient(135deg, #111827, #7c3aed); }
.business__visual-item span {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 800;
  letter-spacing: -.04em;
}
.business__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.business__item {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 44px;
  gap: 20px;
  align-items: center;
  min-height: 140px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.business__item::after {
  content: "→";
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--color-blue);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.business__item:hover::after,
.business__item.is-active::after { transform: translateX(4px); background: var(--color-blue); color: #fff; }
.business__item span {
  color: var(--color-blue);
  font-family: var(--font-en);
  font-size: 20px;
}
.business__item small {
  grid-column: 2 / 3;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}
.business__item strong {
  grid-column: 2 / 3;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.1;
}
.business__item small + strong { margin-top: -10px; }

.works { position: relative; }
.works__controller {
  position: absolute;
  right: 0;
  top: clamp(112px, 11vw, 180px);
  display: flex;
  gap: 12px;
}
.works__arrow {
  width: 54px;
  height: 54px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.works__arrow:hover { transform: translateY(-3px); background: var(--color-navy); color: #fff; }
.works__slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 420px);
  gap: 28px;
  overflow-x: auto;
  padding: 8px calc((100vw - var(--container)) / 2) 26px 0;
  margin-right: calc((100vw - var(--container)) / -2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.works__slider::-webkit-scrollbar { display: none; }
.works-card { scroll-snap-align: start; }
.works-card__link {
  display: block;
  height: 100%;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 40px rgba(16, 24, 40, .06);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.works-card__link:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.works-card__thumb {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 260px;
  padding: 28px;
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
}
.works-card__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 18px 18px;
}
.works-card__thumb span {
  position: relative;
  z-index: 1;
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.works-card__thumb--blue { background: linear-gradient(135deg, #111827, #2563eb); }
.works-card__thumb--green { background: linear-gradient(135deg, #052e16, #16a34a); }
.works-card__thumb--dark { background: linear-gradient(135deg, #020617, #334155); }
.works-card__thumb--orange { background: linear-gradient(135deg, #431407, #f97316); }
.works-card__cat {
  margin: 22px 0 8px;
  color: var(--color-blue);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.works-card h3 { margin: 0; font-size: 24px; line-height: 1.35; }
.works-card p:last-child { margin: 12px 0 0; color: var(--color-muted); font-size: 14px; line-height: 1.8; }


/* ========================================================
   About us - sanko_2 inspired visual / current function kept
======================================================== */
.about {
  width: 100%;
  margin: 0;
  padding: clamp(96px, 10vw, 168px) 0 clamp(100px, 11vw, 180px);
  background: #fff;
}
.about__heading {
  width: var(--container);
  margin: 0 auto clamp(56px, 6vw, 96px);
}
.about__scroll {
  position: relative;
  width: 100%;
  height: 300vh;
  min-height: 1900px;
}
.about__sticky {
  position: sticky;
  top: calc(var(--header-height) + 16px);
  display: grid;
  grid-template-columns: minmax(360px, 39vw) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 5.6vw, 104px);
  width: min(1680px, calc(100% - 96px));
  min-height: calc(100svh - var(--header-height) - 32px);
  margin: 0 auto;
}
.about__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: auto;
  display: block;
  padding-left: clamp(16px, 2.2vw, 40px);
}
.about__count {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(42px, 5vw, 82px);
  color: #101010;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
}
.about__count span {
  color: #f10000;
  font-size: 16px;
  line-height: 1;
}
.about__count i {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(16, 24, 40, .42);
}
.about__count em {
  color: #101010;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}
.about__text-wrap {
  position: relative;
  padding-left: clamp(34px, 4.2vw, 72px);
}
.about__dot {
  position: absolute;
  top: .86em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #f10000;
}
.about__text {
  display: none;
  animation: aboutText .48s var(--ease) both;
}
.about__text.is-active { display: block; }
.about__text h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(52px, 5.15vw, 94px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .02em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.about__text p {
  max-width: 420px;
  margin: clamp(70px, 8vw, 136px) 0 0;
  color: #111;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 800;
  line-height: 2.05;
  letter-spacing: .05em;
  text-align: justify;
}
.about__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 252px;
  min-height: 64px;
  margin-top: clamp(42px, 5vw, 76px);
  padding: 0 32px;
  border-radius: 6px;
  background: #f10000;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.about__button:hover {
  transform: translateY(-3px);
  background: #d90000;
}
.about__button b {
  font-family: var(--font-en);
  font-size: 17px;
  line-height: 1;
}
.about__visual {
  position: relative;
  min-height: min(75vh, 760px);
  border-radius: 8px;
  overflow: visible;
  background: #d9e4eb;
  box-shadow: none;
}
.about__image {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .6s var(--ease), transform 1s var(--ease);
}
.about__image::after { display: none; }
.about__image.is-active {
  opacity: 1;
  transform: scale(1);
}
.about__image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.about__pagination {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: clamp(-84px, -4.7vw, -54px);
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}
.about__pagination::before { display: none; }
.about__thumb {
  position: relative;
  width: 44px;
  height: 54px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 3px;
  background: rgba(255,255,255,.55);
  color: inherit;
  overflow: hidden;
  cursor: pointer;
  opacity: .48;
  transform: none;
  transition: opacity .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.about__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__thumb.is-active {
  border-color: #f10000;
  background: #fff;
  color: inherit;
  opacity: 1;
  transform: none;
}
.about__thumb:hover {
  opacity: .86;
  transform: translateX(-2px);
}
.about__thumb span { display: none; }

.tech__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.tech-card {
  min-height: 340px;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.tech-card:hover { transform: translateY(-8px); background: var(--color-navy); color: #fff; }
.tech-card span { color: var(--color-blue); font-family: var(--font-en); font-size: 18px; }
.tech-card h3 { margin: 56px 0 18px; font-family: var(--font-en); font-size: 32px; line-height: 1; }
.tech-card p { margin: 0; color: var(--color-muted); font-size: 14px; line-height: 1.9; }
.tech-card:hover p { color: rgba(255,255,255,.76); }

.contact {
  width: min(1280px, calc(100% - 64px));
  margin-bottom: clamp(64px, 8vw, 120px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 0%, rgba(37,99,235,.45), transparent 34%),
    linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  overflow: hidden;
}
.contact__inner {
  position: relative;
  padding: clamp(52px, 7vw, 96px);
}
.contact__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 18px 18px;
  pointer-events: none;
}
.contact .section__label,
.contact h2,
.contact p,
.contact__actions { position: relative; z-index: 1; }
.contact h2 { max-width: 900px; margin: 0; font-size: clamp(34px, 5vw, 78px); line-height: 1.14; }
.contact p:not(.section__label) { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.76); }
.contact .section__label { color: #8ab4ff; }
.contact .button--primary { background: #fff; color: var(--color-navy); box-shadow: none; }

.footer {
  padding: 72px 0 34px;
  background:
    linear-gradient(rgba(16, 24, 40, .05) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(16, 24, 40, .05) 1px, transparent 1px) 0 0 / 16px 16px,
    #f7faff;
  color: var(--color-navy);
}
.footer__inner { width: min(1440px, calc(100% - 64px)); margin: 0 auto; }
.footer__brand {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) repeat(3, minmax(170px, .5fr));
  gap: 52px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
}
.footer__logo span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 24px;
  border: 1px solid currentColor;
  transform: skewX(-12deg);
  font-size: 9px;
  letter-spacing: .12em;
}
.footer__copy-main { margin: 50px 0 10px; font-size: 16px; letter-spacing: .12em; }
.footer__brand p:not(.footer__copy-main), .footer__brand dd {
  color: #344054;
  font-size: 13px;
  line-height: 2;
}
.footer__brand dl { margin: 42px 0 0; }
.footer__brand dt { margin-top: 16px; font-family: var(--font-en); letter-spacing: .12em; }
.footer__brand dd { margin: 2px 0 0; }
.footer__nav {
  grid-column: 2 / 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}
.footer__nav p {
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  letter-spacing: .14em;
}
.footer__nav a { display: block; padding: 8px 0; color: #344054; font-size: 13px; }
.footer__cta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 76px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.footer__cta a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  padding: 28px 34px;
  min-height: 112px;
}
.footer__cta a + a { border-left: 1px solid var(--color-border); }
.footer__cta small { grid-column: 1 / 3; color: #8a95a6; }
.footer__cta strong { font-size: 18px; letter-spacing: .12em; }
.footer__cta span { font-size: 28px; line-height: 1; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  color: #667085;
  font-size: 12px;
}
.footer__bottom div { display: flex; flex-wrap: wrap; gap: 32px; }
.footer__bottom p { margin: 0; }

.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .js-reveal:nth-of-type(1) { transition-delay: .1s; }
.hero .js-reveal:nth-of-type(2) { transition-delay: .22s; }
.hero .js-reveal:nth-of-type(3) { transition-delay: .34s; }
.hero .js-reveal:nth-of-type(4) { transition-delay: .46s; }

@keyframes heroBg {
  from { opacity: 0; transform: translate(-50%, -46%) scale(.96); filter: blur(14px); }
  to { opacity: .92; transform: translate(-50%, -50%) scale(1); filter: blur(0); }
}
@keyframes floatOrb {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(34px,-26px,0) scale(1.08); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes aboutText {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  :root { --container: min(100% - 40px, 1100px); }
  .site-header { padding: 0 24px; }
  .site-header__nav { display: none; }
  .business__layout { grid-template-columns: 1fr; }
  .business__visual { position: relative; top: auto; min-height: 420px; }
  .tech__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__sticky { grid-template-columns: 86px minmax(320px, 1fr) minmax(320px, 1fr); }
  .footer__brand { grid-template-columns: 1fr; }
  .footer__nav { grid-column: auto; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  body { font-size: 14px; }
  .site-header { height: var(--header-height); padding: 0 18px; }
  .site-header.is-scrolled { height: 64px; }
  .site-header__mark { width: 48px; height: 22px; }
  .site-header__name { font-size: 20px; letter-spacing: .1em; }
  .site-header__menu { width: 50px; height: 50px; }
  .section { width: min(100% - 32px, 720px); padding: 78px 0; }
  .section__title { font-size: clamp(32px, 9vw, 56px); }
  .hero { min-height: 92svh; padding-bottom: 96px; }
  .hero__inner { width: min(100% - 32px, 720px); padding-top: 8vh; }
  .hero__bg-text { top: 33%; font-size: clamp(56px, 18vw, 96px); white-space: normal; line-height: .9; }
  .hero__title { font-size: clamp(39px, 12vw, 64px); }
  .hero__title span { white-space: normal; }
  .hero__lead br { display: none; }
  .hero__actions { gap: 10px; }
  .button { width: 100%; min-height: 54px; }
  .business__visual { min-height: 300px; border-radius: 24px; }
  .business__item { grid-template-columns: 52px 1fr 38px; gap: 14px; min-height: 118px; }
  .business__item strong { font-size: 26px; }
  .works__controller { position: static; justify-content: flex-end; margin: -18px 0 20px; }
  .works__slider { grid-auto-columns: minmax(286px, 82vw); margin-right: -16px; padding-right: 16px; }
  .works-card__thumb { min-height: 214px; }
  .about__scroll { height: auto; min-height: 0; }
  .about__sticky {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 24px;
  }
  .about__pagination {
    grid-row: 2;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .about__pagination::before { display: none; }
  .about__thumb { width: 58px; height: 58px; }
  .about__visual { min-height: 320px; border-radius: 24px; }
  .about__content { min-height: auto; }
  .about__count span { font-size: 58px; }
  .about__text { display: none; }
  .about__text.is-active { display: block; }
  .tech__grid { grid-template-columns: 1fr; }
  .tech-card { min-height: 260px; }
  .tech-card h3 { margin-top: 42px; }
  .contact { width: min(100% - 32px, 720px); border-radius: 24px; }
  .contact__inner { padding: 42px 24px; }
  .footer__inner { width: min(100% - 32px, 720px); }
  .footer__nav { grid-template-columns: 1fr; gap: 28px; }
  .footer__cta { grid-template-columns: 1fr; }
  .footer__cta a + a { border-left: 0; border-top: 1px solid var(--color-border); }
  .footer__bottom { display: grid; }
}

@media (max-width: 520px) {
  .site-header__name { font-size: 17px; }
  .site-header__mark { width: 42px; height: 20px; font-size: 8px; }
  .site-drawer { padding-inline: 22px; }
  .hero__eyebrow { font-size: 12px; letter-spacing: .1em; }
  .hero__lead { font-size: 14px; line-height: 1.9; }
  .section__label { font-size: 12px; }
  .business__item { grid-template-columns: 1fr 38px; }
  .business__item span { grid-column: 1 / 2; }
  .business__item small, .business__item strong { grid-column: 1 / 2; }
  .business__item::after { grid-column: 2 / 3; grid-row: 1 / 4; }
  .footer__logo { font-size: 22px; letter-spacing: .1em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* v13 footer / slider final fixes */
.works__slider {
  margin-right: 0;
  padding-right: 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(620px, 1.8fr);
  gap: 52px 72px;
}
.footer__brand {
  display: block;
}
.footer__nav {
  grid-column: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}
.footer__cta,
.footer__bottom {
  grid-column: 1 / -1;
}
@media (max-width: 1180px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .footer__nav { grid-template-columns: 1fr; }
}



/* ========================================================
   Works section - sanko_1 inspired layout / adjusted
======================================================== */
.home-works {
  --works-bg: #202837;
  --works-side: clamp(24px, 6.7vw, 120px);
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 8vw, 142px) 0 clamp(104px, 9vw, 164px);
  background: var(--works-bg);
  color: #fff;
}
.home-works::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, .06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, .026), transparent 32%);
}
.home-works__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}
.home-works-header,
.home-works__controls,
.home-works__btn {
  width: min(1120px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}
.home-works-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(420px, 1.08fr);
  align-items: end;
  column-gap: clamp(42px, 6vw, 96px);
  margin-bottom: clamp(48px, 5.2vw, 84px);
}
.home-works-header__tit {
  min-width: 0;
  margin: 0;
}
.c-head01.is-white { color: #fff; }
.home-works .c-head01__head {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .58);
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: .08em;
}
.home-works .c-head01__en {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #fff;
  font-family: var(--font-en);
  font-size: clamp(72px, 6vw, 110px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.045em;
}
.home-works .c-head01__en::before {
  content: "";
  position: absolute;
  left: .03em;
  right: .03em;
  bottom: .02em;
  height: .043em;
  background: currentColor;
}
.home-works-header__lead {
  align-self: center;
  margin: 0;
}
.home-works-header__lead-txt {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(14px, .98vw, 17px);
  font-weight: 800;
  line-height: 2.05;
  letter-spacing: .08em;
}
.c-archive-works01.home-works-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 0 0 var(--works-side);
  padding: 0 var(--works-side) 0 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.c-archive-works01.home-works-slider::-webkit-scrollbar { display: none; }
.c-archive-works01__item {
  position: relative;
  flex: 0 0 clamp(300px, 25vw, 450px);
  min-width: clamp(300px, 25vw, 450px);
  scroll-snap-align: start;
  background: #111927;
}
.c-archive-works01__item-link {
  position: relative;
  display: block;
  height: clamp(510px, 41vw, 740px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.c-archive-works01__item-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 18, 28, 0) 40%, rgba(20, 27, 38, .68) 78%, rgba(20, 27, 38, .92) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 24%);
}
.c-archive-works01__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-archive-works01__img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform .9s cubic-bezier(0.41, 0.12, 0.26, 0.97), filter .9s cubic-bezier(0.41, 0.12, 0.26, 0.97);
}
.c-archive-works01__img--fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(135deg, #0f172a, #2563eb 52%, #16a34a);
}
.c-archive-works01__img--fallback span {
  color: rgba(255,255,255,.9);
  font-family: var(--font-en);
  font-size: clamp(42px, 4vw, 74px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
}
.c-archive-works01__area-txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(24px, 2vw, 34px) clamp(22px, 2vw, 32px) clamp(28px, 2.7vw, 42px);
}
.c-archive-works01__company {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: .06em;
}
.c-archive-works01__head {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(17px, 1.28vw, 24px);
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .075em;
}
.c-archive-works01__item-link:hover .c-archive-works01__img img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.03);
}
.home-works__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 46px);
}
.home-works__arrow {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: #fff;
  cursor: pointer;
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease), color .35s var(--ease);
}
.home-works__arrow span {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translateX(3px) rotate(-45deg);
}
.home-works__arrow.is-next span {
  transform: translateX(-3px) rotate(135deg);
}
.home-works__arrow:hover {
  transform: translateY(-3px);
  border-color: #fff;
  background: #fff;
  color: var(--works-bg);
}
.home-works__btn {
  margin-top: clamp(34px, 4.2vw, 70px);
}
.c-btn01__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
}
.c-btn01__link-arrow {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 52px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.c-btn01__link-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}
.c-btn01__link:hover .c-btn01__link-arrow {
  background: #fff;
  color: var(--works-bg);
}
@media (max-width: 1024px) {
  .home-works {
    --works-side: 24px;
    padding: 96px 0 120px;
  }
  .home-works-header,
  .home-works__controls,
  .home-works__btn {
    width: min(100% - 48px, 720px);
  }
  .home-works-header {
    display: block;
    margin-bottom: 42px;
  }
  .home-works-header__lead { margin-top: 28px; }
  .c-archive-works01.home-works-slider {
    margin-left: var(--works-side);
    padding-right: var(--works-side);
  }
  .c-archive-works01__item {
    flex-basis: min(76vw, 420px);
    min-width: min(76vw, 420px);
  }
  .c-archive-works01__item-link {
    height: min(124vw, 640px);
    min-height: 460px;
  }
  .home-works__controls {
    justify-content: flex-start;
  }
}
@media (max-width: 520px) {
  .home-works {
    --works-side: 16px;
    padding: 82px 0 96px;
  }
  .home-works-header,
  .home-works__controls,
  .home-works__btn {
    width: calc(100% - 32px);
  }
  .home-works-header {
    margin-bottom: 32px;
  }
  .home-works .c-head01__head {
    margin-bottom: 12px;
  }
  .home-works .c-head01__en {
    font-size: clamp(56px, 18vw, 76px);
  }
  .home-works-header__lead-txt {
    font-size: 13px;
    line-height: 1.9;
  }
  .c-archive-works01__item {
    flex-basis: 82vw;
    min-width: 82vw;
  }
  .c-archive-works01__item-link {
    min-height: 430px;
    height: 126vw;
  }
  .c-archive-works01__area-txt {
    padding: 22px 20px 28px;
  }
  .c-archive-works01__head {
    font-size: 17px;
    line-height: 1.62;
  }
  .home-works__controls {
    margin-top: 24px;
  }
  .home-works__arrow {
    width: 50px;
    height: 50px;
  }
  .home-works__btn {
    margin-top: 30px;
  }
}

/* ========================================================
   v16 adjustments: Works navigation row / Contact us
======================================================== */
.home-works__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 64px));
  margin: clamp(34px, 4.2vw, 66px) auto 0;
}
.home-works__bottom .home-works__btn,
.home-works__bottom .home-works__controls {
  width: auto;
  margin: 0;
}
.home-works__bottom .home-works__btn {
  flex: 0 0 auto;
}
.home-works__bottom .home-works__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 auto;
}
.home-works__bottom .c-btn01__link {
  min-height: 58px;
}
.home-works__bottom .c-btn01__link-arrow {
  width: 58px;
  height: 58px;
}
.home-works__bottom .home-works__arrow {
  width: 58px;
  height: 58px;
  background: transparent;
}
.home-works__bottom .home-works__arrow span {
  width: 13px;
  height: 13px;
}

.contact-us.c-cv01 {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(86px, 8vw, 130px);
  background: #fff;
  color: #fff;
}
.contact-us .c-cv01-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(390px, 42vw, 615px);
  padding: clamp(92px, 10vw, 132px) 0 clamp(158px, 16vw, 230px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16,24,40,.82) 0%, rgba(16,24,40,.58) 42%, rgba(16,24,40,.30) 100%),
    radial-gradient(circle at 72% 32%, rgba(255,255,255,.26), transparent 0 6%, transparent 28%),
    linear-gradient(135deg, #182231 0%, #283447 48%, #dfe7ef 100%);
}
.contact-us .c-cv01-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 18px 18px;
  opacity: .18;
  pointer-events: none;
}
.contact-us .c-cv01-header::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 0;
  width: min(45vw, 680px);
  height: 78%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  opacity: .34;
  filter: blur(.2px);
  pointer-events: none;
}
.contact-us .c-cv01-header__area-txt {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  transform: translateY(-2%);
}
.contact-us .c-cv01-header__lead {
  margin: 0 0 clamp(14px, 1.6vw, 24px);
  color: #fff;
  font-size: clamp(17px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .1em;
}
.contact-us .c-cv01-header__head {
  margin: 0;
  color: #fff;
  font-family: var(--font-en);
  font-size: clamp(76px, 8.3vw, 156px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.055em;
}
.contact-us .c-cv01-header__txt {
  max-width: 720px;
  margin: clamp(24px, 3vw, 42px) 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: .06em;
}
.contact-us .c-cv01-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1680px, calc(100% - 80px));
  margin: clamp(-178px, -10vw, -126px) auto 0;
  padding: 0;
  list-style: none;
  text-align: center;
  box-shadow: 0 28px 80px rgba(16,24,40,.18);
}
.contact-us .c-cv01-list__item {
  min-width: 0;
}
.contact-us .c-cv01-list__item-in {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(330px, 25vw, 432px);
  height: 100%;
  padding: clamp(52px, 5vw, 74px) clamp(24px, 2.8vw, 44px) clamp(56px, 5.2vw, 82px);
  color: #fff;
  overflow: hidden;
  transition: background .5s var(--ease), transform .5s var(--ease);
}
.contact-us .c-cv01-list__item-in::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0));
  pointer-events: none;
}
.contact-us .c-cv01-list__item.is-download .c-cv01-list__item-in { background: #343d4c; }
.contact-us .c-cv01-list__item.is-contact .c-cv01-list__item-in { background: #202938; }
.contact-us .c-cv01-list__item.is-works .c-cv01-list__item-in { background: #2b3444; }
.contact-us .c-cv01-list__item-in:hover {
  transform: translateY(-8px);
}
.contact-us .c-cv01-list__area-txt {
  position: relative;
  z-index: 1;
  width: 100%;
}
.contact-us .c-cv01-list__head {
  position: relative;
  margin: 0 0 clamp(54px, 4.7vw, 72px);
  color: #fff;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .09em;
}
.contact-us .c-cv01-list__head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(-44px, -3.2vw, -30px);
  width: 30px;
  height: 24px;
  transform: translateX(-50%);
  opacity: .32;
  background: currentColor;
  mask: var(--contact-icon) center / contain no-repeat;
  -webkit-mask: var(--contact-icon) center / contain no-repeat;
}
.contact-us .c-cv01-list__item.is-download { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 44'%3E%3Cpath fill='%23000' d='M5 0h18l8 8v36H5V0Zm17 3v8h8L22 3ZM9 4v36h18V14h-9V4H9Z'/%3E%3C/svg%3E"); }
.contact-us .c-cv01-list__item.is-contact { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 30'%3E%3Cpath fill='%23000' d='M0 0h44v30H0V0Zm4 4v22h36V4H4Zm3 2.5 15 10.7L37 6.5v4L22 21 7 10.5v-4Z'/%3E%3C/svg%3E"); }
.contact-us .c-cv01-list__item.is-works { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 34'%3E%3Cpath fill='%23000' d='M0 0h44v28H25v3h8v3H11v-3h8v-3H0V0Zm4 4v20h36V4H4Z'/%3E%3C/svg%3E"); }
.contact-us .c-cv01-list__txt {
  max-width: 420px;
  min-height: 7.9em;
  margin: 0 auto;
  color: rgba(255,255,255,.88);
  font-size: clamp(13px, 1.02vw, 16px);
  font-weight: 800;
  line-height: 2.05;
  letter-spacing: .08em;
}
.contact-us .c-cv01-list__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(290px, 100%);
  min-height: 66px;
  margin: clamp(26px, 2.7vw, 38px) auto 0;
  padding: 12px 54px 12px 34px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.contact-us .c-cv01-list__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.contact-us .c-cv01-list__btn-txt {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}
.contact-us .c-cv01-list__item-in:hover .c-cv01-list__btn {
  background: #fff;
  border-color: #fff;
  color: #202938;
}

@media (max-width: 1024px) {
  .home-works__bottom {
    width: min(100% - 48px, 720px);
  }
  .contact-us .c-cv01-list {
    width: min(100% - 48px, 760px);
    grid-template-columns: 1fr;
    margin-top: -92px;
  }
  .contact-us .c-cv01-list__item-in {
    min-height: auto;
    padding: 48px 28px 54px;
  }
  .contact-us .c-cv01-list__txt {
    min-height: 0;
  }
}
@media (max-width: 520px) {
  .home-works__bottom {
    width: calc(100% - 32px);
    gap: 16px;
  }
  .home-works__bottom .c-btn01__link {
    gap: 10px;
    font-size: 13px;
  }
  .home-works__bottom .c-btn01__link-arrow,
  .home-works__bottom .home-works__arrow {
    width: 48px;
    height: 48px;
  }
  .home-works__bottom .home-works__controls {
    gap: 10px;
  }
  .contact-us.c-cv01 {
    padding-bottom: 84px;
  }
  .contact-us .c-cv01-header {
    min-height: 420px;
    padding: 110px 0 132px;
  }
  .contact-us .c-cv01-header__area-txt {
    width: calc(100% - 32px);
  }
  .contact-us .c-cv01-header__head {
    font-size: clamp(58px, 18vw, 86px);
  }
  .contact-us .c-cv01-list {
    width: calc(100% - 32px);
    margin-top: -72px;
  }
  .contact-us .c-cv01-list__item-in {
    padding: 42px 22px 46px;
  }
  .contact-us .c-cv01-list__head {
    font-size: 21px;
  }
  .contact-us .c-cv01-list__txt {
    font-size: 13px;
    line-height: 1.95;
  }
  .contact-us .c-cv01-list__btn {
    min-height: 58px;
  }
}


/* ========================================================
   v19 adjustments: About us responsive overrides
======================================================== */
@media (max-width: 1180px) {
  .about__sticky {
    grid-template-columns: minmax(300px, .86fr) minmax(0, 1.14fr);
    width: min(100% - 64px, 1120px);
    gap: clamp(32px, 4vw, 64px);
  }
  .about__text h3 {
    font-size: clamp(44px, 5.7vw, 72px);
  }
  .about__text p {
    margin-top: clamp(48px, 6vw, 92px);
  }
  .about__visual {
    min-height: min(67vh, 640px);
  }
  .about__pagination {
    right: -42px;
  }
}
@media (max-width: 900px) {
  .about {
    padding: 82px 0 96px;
  }
  .about__heading {
    width: min(100% - 32px, 720px);
    margin-bottom: 42px;
  }
  .about__scroll {
    height: auto;
    min-height: 0;
    width: min(100% - 32px, 720px);
    margin: 0 auto;
  }
  .about__sticky {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    min-height: 0;
    gap: 28px;
  }
  .about__content {
    width: 100%;
    padding-left: 0;
  }
  .about__count {
    margin-bottom: 28px;
  }
  .about__text-wrap {
    padding-left: 28px;
  }
  .about__dot {
    top: .7em;
    width: 9px;
    height: 9px;
  }
  .about__text h3 {
    font-size: clamp(38px, 11vw, 58px);
    overflow-wrap: normal;
  }
  .about__text p {
    max-width: none;
    margin-top: 30px;
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }
  .about__button {
    min-width: 220px;
    min-height: 58px;
    margin-top: 30px;
    padding-inline: 24px;
  }
  .about__visual {
    width: 100%;
    min-height: 360px;
    border-radius: 8px;
  }
  .about__image {
    border-radius: 8px;
  }
  .about__pagination {
    position: static;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 14px;
    transform: none;
  }
  .about__thumb {
    width: 58px;
    height: 48px;
  }
}
@media (max-width: 520px) {
  .about__visual {
    min-height: 285px;
  }
  .about__text-wrap {
    padding-left: 22px;
  }
  .about__text h3 {
    font-size: clamp(34px, 12vw, 48px);
  }
  .about__button {
    width: 100%;
    min-width: 0;
  }
}

/* ========================================================
   v20 polish: section rhythm + Technologies & Innovation
   - Works / Aboutのデザインは維持しつつ、全体の余白・背景を整理
   - Technologies & Innovationはsanko_2の2カラム画像カードに寄せる
======================================================== */
body,
main {
  background: #fff;
}

.business.section {
  padding-bottom: clamp(96px, 10vw, 170px);
}

.home-works {
  margin-top: 0;
  padding-top: clamp(108px, 8.2vw, 150px);
  padding-bottom: clamp(104px, 8.6vw, 152px);
}
.home-works-header,
.home-works__bottom {
  width: min(1280px, calc(100% - 96px));
}
.home-works-header {
  margin-bottom: clamp(48px, 5vw, 78px);
}
.c-archive-works01.home-works-slider {
  margin-left: max(48px, calc((100vw - 1280px) / 2));
  padding-right: max(48px, calc((100vw - 1280px) / 2));
}
.home-works__bottom {
  margin-top: clamp(34px, 3.4vw, 54px);
}
.home-works__arrow:hover,
.home-works__arrow:focus-visible {
  border-color: #fff;
  background: rgba(255,255,255,.13);
  color: #fff;
  outline: none;
}
.home-works__arrow:hover span,
.home-works__arrow:focus-visible span {
  border-color: #fff;
}
.c-btn01__link:hover .c-btn01__link-arrow,
.c-btn01__link:focus-visible .c-btn01__link-arrow {
  background: rgba(255,255,255,.13);
  color: #fff;
}

.about {
  margin-top: 0;
  padding-top: clamp(104px, 9vw, 156px);
  padding-bottom: clamp(104px, 9vw, 156px);
  background: #fff;
}
.about__heading {
  margin-bottom: clamp(44px, 5vw, 78px);
}
.about__sticky {
  width: min(1560px, calc(100% - 96px));
  gap: clamp(44px, 5vw, 92px);
}
.about__visual {
  box-shadow: none;
}
.about__image img {
  filter: saturate(.96) contrast(.98);
}
.about__button,
.tech__button {
  box-shadow: none;
}

.tech {
  position: relative;
  overflow: hidden;
  padding: clamp(104px, 9vw, 160px) 0 clamp(120px, 10vw, 180px);
  background: #fff;
  color: #050505;
}
.tech::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(16,24,40,.08);
}
.tech__inner {
  position: relative;
  z-index: 1;
  width: min(1680px, calc(100% - 96px));
  margin: 0 auto;
}
.tech__heading {
  width: min(1180px, 100%);
  margin: 0 0 clamp(54px, 6.8vw, 104px);
}
.tech__heading.section__head--right,
.tech .section__head--right {
  margin-left: 0;
  max-width: 1180px;
}
.tech .section__label {
  color: #f10000;
  margin-bottom: clamp(18px, 2vw, 26px);
  font-size: clamp(13px, .9vw, 16px);
  letter-spacing: .06em;
  text-transform: none;
}
.tech .section__label span {
  width: 10px;
  height: 10px;
  box-shadow: none;
}
.tech .section__title {
  color: #050505;
  font-size: clamp(46px, 5.3vw, 96px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: .01em;
}
.tech__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4.2vw, 72px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.tech__item {
  min-width: 0;
}
.tech__image-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #eef2f5;
}
.tech__image {
  position: relative;
  margin: 0;
  aspect-ratio: 1.62 / .53;
  min-height: clamp(260px, 28vw, 500px);
  border-radius: 10px;
  overflow: hidden;
}
.tech__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform .9s cubic-bezier(0.41, 0.12, 0.26, 0.97), filter .9s cubic-bezier(0.41, 0.12, 0.26, 0.97);
}
.tech__image-link:hover img,
.tech__image-link:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.02);
}
.tech__body {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 3.2vw, 58px);
  align-items: start;
  padding-top: clamp(38px, 4.2vw, 72px);
}
.tech__title {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 2vw, 32px);
  margin: 0;
  color: #050505;
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: .02em;
  word-break: keep-all;
}
.tech__title span {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-top: .55em;
  border-radius: 50%;
  background: #f10000;
}
.tech__description {
  max-width: 560px;
  margin: 0;
  color: #111;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 2.05;
  letter-spacing: .04em;
}
.tech__button {
  grid-column: 2 / 3;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 230px;
  min-height: 66px;
  margin-top: clamp(22px, 2.6vw, 38px);
  padding: 0 30px;
  border-radius: 6px;
  background: #f10000;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  transition: transform .32s var(--ease), background .32s var(--ease);
}
.tech__button b {
  font-family: var(--font-en);
  font-size: 18px;
  line-height: 1;
}
.tech__button:hover,
.tech__button:focus-visible {
  transform: translateY(-3px);
  background: #c90000;
  outline: none;
}

@media (max-width: 1180px) {
  .home-works-header,
  .home-works__bottom,
  .about__sticky,
  .tech__inner {
    width: min(100% - 64px, 1080px);
  }
  .c-archive-works01.home-works-slider {
    margin-left: 32px;
    padding-right: 32px;
  }
  .tech__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tech__button {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .business.section {
    padding-bottom: 82px;
  }
  .home-works {
    padding-top: 86px;
    padding-bottom: 104px;
  }
  .home-works-header,
  .home-works__bottom,
  .tech__inner {
    width: min(100% - 32px, 720px);
  }
  .c-archive-works01.home-works-slider {
    margin-left: 16px;
    padding-right: 16px;
  }
  .home-works__bottom {
    align-items: center;
  }
  .about {
    padding-top: 86px;
    padding-bottom: 104px;
  }
  .tech {
    padding: 86px 0 104px;
  }
  .tech__heading {
    margin-bottom: 42px;
  }
  .tech__list {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .tech__image {
    min-height: 280px;
    aspect-ratio: 1.55 / .82;
  }
  .tech__body {
    padding-top: 28px;
  }
  .tech__title {
    font-size: clamp(31px, 9vw, 48px);
  }
  .tech__description {
    max-width: none;
    font-size: 14px;
    line-height: 2;
  }
  .tech__button {
    min-height: 58px;
    min-width: 220px;
    margin-top: 10px;
    padding-inline: 24px;
  }
}

@media (max-width: 520px) {
  .home-works__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 22px;
  }
  .home-works__bottom .home-works__controls {
    align-self: flex-end;
  }
  .tech__image {
    min-height: 220px;
  }
  .tech__title {
    gap: 16px;
  }
  .tech__title span {
    width: 9px;
    height: 9px;
  }
  .tech__button {
    width: 100%;
  }
}


/* ========================================================
   v21 adjustments: remove footer CTA row / improve hero readability
======================================================== */
.hero {
  min-height: min(920px, 100svh);
  padding-top: calc(var(--header-height) + clamp(42px, 6vw, 82px));
  padding-bottom: clamp(96px, 10vw, 150px);
  background:
    radial-gradient(circle at 82% 16%, rgba(22, 163, 74, .12), transparent 32%),
    radial-gradient(circle at 13% 76%, rgba(37, 99, 235, .14), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8ff 100%);
}
.hero__grid {
  opacity: .52;
}
.hero__bg-text {
  z-index: 0;
  top: 38%;
  color: #eef5ff;
  text-shadow: 0 18px 56px rgba(16, 24, 40, .08);
  opacity: .58;
  font-size: clamp(68px, 10vw, 164px);
  letter-spacing: -.055em;
}
.hero__inner {
  z-index: 2;
  padding-top: clamp(24px, 6vh, 72px);
}
.hero__eyebrow {
  margin-bottom: clamp(18px, 2vw, 26px);
  color: #2563eb;
  font-size: clamp(12px, .9vw, 14px);
  line-height: 1.4;
}
.hero__title {
  max-width: 1120px;
  color: #111827;
  font-size: clamp(52px, 5.8vw, 96px);
  line-height: 1.08;
  letter-spacing: -.015em;
  text-shadow: 0 6px 26px rgba(255, 255, 255, .72);
}
.hero__lead {
  max-width: 860px;
  margin-top: clamp(24px, 2.5vw, 34px);
  color: #344054;
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .04em;
  text-shadow: 0 2px 14px rgba(255, 255, 255, .92);
}
.hero__actions {
  margin-top: clamp(30px, 3.2vw, 44px);
}
.hero__marquee {
  bottom: 18px;
  color: rgba(16, 24, 40, .105);
}
.footer__cta {
  display: none !important;
}
.footer__bottom {
  margin-top: clamp(52px, 6vw, 82px);
  padding-top: 34px;
  border-top: 1px solid var(--color-border);
}
@keyframes heroBg {
  from { opacity: 0; transform: translate(-50%, -46%) scale(.96); filter: blur(14px); }
  to { opacity: .58; transform: translate(-50%, -50%) scale(1); filter: blur(0); }
}
@media (max-width: 900px) {
  .hero {
    min-height: 92svh;
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 104px;
  }
  .hero__inner {
    width: min(100% - 32px, 720px);
    padding-top: 4vh;
  }
  .hero__bg-text {
    top: 31%;
    font-size: clamp(58px, 17vw, 108px);
    line-height: .9;
    opacity: .46;
  }
  .hero__title {
    font-size: clamp(40px, 11.4vw, 64px);
    line-height: 1.12;
  }
  .hero__title span {
    display: block;
    max-width: 100%;
    white-space: normal;
  }
  .hero__lead {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.9;
  }
  .hero__lead br { display: none; }
}
@media (max-width: 520px) {
  .hero__eyebrow {
    max-width: 320px;
    font-size: 11px;
    letter-spacing: .08em;
  }
  .hero__title {
    font-size: clamp(37px, 11vw, 52px);
    letter-spacing: -.025em;
  }
  .hero__actions .button {
    width: 100%;
  }
}


/* ========================================================
   Brand color adjustment - Ka-Chan Design main #932E44
   Main: #932E44 / Sub: #F7EAEE / Accent: #D6A24A
======================================================== */
body {
  background:
    linear-gradient(rgba(147, 46, 68, .032) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(147, 46, 68, .032) 1px, transparent 1px) 0 0 / 16px 16px,
    #fffbfc;
}

.site-header__mark {
  border-color: var(--color-main);
  color: var(--color-main-deep);
}
.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--color-main);
}
.site-header__nav a::after {
  background: var(--color-main);
}
.site-header__menu {
  background: var(--color-main);
  box-shadow: 0 18px 42px rgba(147, 46, 68, .22);
}
.site-drawer {
  background:
    radial-gradient(circle at 82% 18%, rgba(147,46,68,.28), transparent 32%),
    rgba(42, 17, 25, .97);
}
.site-drawer__cta a:hover {
  background: #fff;
  color: var(--color-main);
}

.section__label,
.hero__eyebrow,
.business__item span,
.business__item::after,
.works-card span,
.tech-card span {
  color: var(--color-main);
}
.section__label span {
  background: var(--color-main);
  box-shadow: 16px 0 0 rgba(147, 46, 68, .22);
}

.hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(214, 162, 74, .22), transparent 34%),
    radial-gradient(circle at 16% 72%, rgba(147, 46, 68, .20), transparent 30%),
    linear-gradient(180deg, #fffafb 0%, #f9eef2 100%);
}
.hero__grid {
  background:
    linear-gradient(rgba(147, 46, 68, .045) 1px, transparent 1px) 0 0 / 20px 20px,
    linear-gradient(90deg, rgba(147, 46, 68, .045) 1px, transparent 1px) 0 0 / 20px 20px;
}
.hero__bg-text {
  color: #fff3f5;
  text-shadow: 0 20px 66px rgba(147, 46, 68, .15);
}
.hero__orb--blue {
  background: linear-gradient(135deg, rgba(147,46,68,.24), rgba(147,46,68,.02));
}
.hero__orb--green {
  background: linear-gradient(135deg, rgba(214,162,74,.24), rgba(214,162,74,.03));
}
.hero__title {
  color: var(--color-main-deep);
}
.hero__lead {
  color: #47333a;
}
.hero__marquee {
  color: rgba(147, 46, 68, .13);
}
.button--primary {
  background: var(--color-main);
  box-shadow: 0 18px 48px rgba(147, 46, 68, .24);
}
.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-main-dark);
}
.button--line {
  border-color: rgba(147, 46, 68, .22);
  color: var(--color-main-deep);
  background: rgba(255,255,255,.72);
}
.button--line:hover,
.button--line:focus-visible {
  border-color: var(--color-main);
  color: var(--color-main);
}

.business__visual {
  background: var(--color-main-deep);
}
.business__visual-item:nth-child(1) { background: linear-gradient(135deg, #2A1119, #932E44); }
.business__visual-item:nth-child(2) { background: linear-gradient(135deg, #3B1521, #B76576); }
.business__visual-item:nth-child(3) { background: linear-gradient(135deg, #211016, #D6A24A); }
.business__visual-item:nth-child(4) { background: linear-gradient(135deg, #2A1119, #6F2233); }
.business__item.is-active::after {
  background: var(--color-main);
  color: #fff;
}
.business__item:hover strong,
.business__item:focus-visible strong {
  color: var(--color-main);
}

.home-works {
  --works-bg: #24171d;
  background:
    radial-gradient(circle at 18% 10%, rgba(147, 46, 68, .36), transparent 26%),
    linear-gradient(135deg, #201419 0%, #2a1720 48%, #1a1418 100%);
}
.home-works::before {
  background:
    radial-gradient(circle at 76% 18%, rgba(214, 162, 74, .10), transparent 28%),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 18px 18px;
}
.c-archive-works01__item-link::after {
  background:
    linear-gradient(180deg, rgba(42,17,25,0) 38%, rgba(42,17,25,.70) 76%, rgba(42,17,25,.96) 100%);
}
.c-archive-works01__img--fallback {
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(135deg, #2A1119, #932E44 55%, #D6A24A);
}
.home-works__arrow:hover,
.home-works__arrow:focus-visible,
.c-btn01__link:hover .c-btn01__link-arrow {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}
.home-works__arrow:hover span,
.home-works__arrow:focus-visible span,
.c-btn01__link:hover .c-btn01__link-arrow::before {
  border-color: #fff;
}

.about {
  background: #fff;
}
.about__count span,
.about__button,
.about__nav.is-active,
.about__title::before,
.about__thumbs::before {
  color: var(--color-main);
  border-color: var(--color-main);
}
.about__button,
.about__title::before {
  background: var(--color-main);
}
.about__button:hover,
.about__button:focus-visible {
  background: var(--color-main-dark);
}
.about__visual-wrap {
  box-shadow: 0 28px 88px rgba(67, 24, 36, .14);
}
.about__nav.is-active {
  box-shadow: 0 0 0 1px var(--color-main);
}

.tech {
  background:
    linear-gradient(rgba(147, 46, 68, .025) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(147, 46, 68, .025) 1px, transparent 1px) 0 0 / 16px 16px,
    #fffafb;
}
.tech .section__label,
.tech__title span {
  color: var(--color-main);
  background: var(--color-main);
}
.tech .section__title,
.tech__title {
  color: var(--color-main-deep);
}
.tech__description {
  color: #4d3940;
}
.tech__image-link {
  background: var(--color-main-pale);
  box-shadow: 0 22px 70px rgba(67, 24, 36, .10);
}
.tech__button {
  background: var(--color-main);
  color: #fff;
}
.tech__button:hover,
.tech__button:focus-visible {
  background: var(--color-main-dark);
}

.contact,
.contact-us {
  background:
    radial-gradient(circle at 82% 0%, rgba(147,46,68,.42), transparent 34%),
    linear-gradient(135deg, #1f151a, #2a1720 54%, #161114 100%);
}
.contact-us .c-cv01-header::after {
  background:
    linear-gradient(90deg, rgba(31,21,26,.84) 0%, rgba(31,21,26,.58) 42%, rgba(31,21,26,.30) 100%),
    radial-gradient(circle at 72% 32%, rgba(214,162,74,.18), transparent 0 6%, transparent 28%),
    linear-gradient(135deg, #24171d 0%, #3a202a 48%, #f3e7eb 100%);
}
.contact-us .c-cv01-list__item.is-download .c-cv01-list__item-in { background: #3a202a; }
.contact-us .c-cv01-list__item.is-contact .c-cv01-list__item-in { background: #2a171f; }
.contact-us .c-cv01-list__item.is-works .c-cv01-list__item-in { background: #4b2631; }
.contact-us .c-cv01-list__item-in:hover .c-cv01-list__btn {
  color: var(--color-main);
}

.site-footer {
  background:
    linear-gradient(rgba(147, 46, 68, .035) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(147, 46, 68, .035) 1px, transparent 1px) 0 0 / 16px 16px,
    #fffbfc;
}
.footer__logo span,
.footer__nav a:hover,
.footer__legal a:hover {
  color: var(--color-main);
}
.footer__bottom {
  border-top-color: rgba(147, 46, 68, .16);
}

@media (max-width: 900px) {
  .hero {
    background:
      radial-gradient(circle at 82% 16%, rgba(214, 162, 74, .17), transparent 32%),
      radial-gradient(circle at 13% 76%, rgba(147, 46, 68, .18), transparent 30%),
      linear-gradient(180deg, #fffafb 0%, #f9eef2 100%);
  }
  .hero__eyebrow { color: var(--color-main); }
}


/* ========================================================
   v23 fixes: main color visibility / tech layout / logo color
   - #932E44適用後に消えていた文言を復旧
   - Technologies & Innovation のはみ出しを抑制
   - ロゴをメインカラーに統一
======================================================== */
.site-header__logo,
.site-header__name {
  color: var(--color-main) !important;
}
.site-header__mark {
  color: var(--color-main) !important;
  border-color: var(--color-main) !important;
  background: rgba(147, 46, 68, .04);
}
.footer__logo {
  color: var(--color-main) !important;
}
.footer__logo span {
  color: var(--color-main) !important;
  border-color: var(--color-main) !important;
  background: rgba(147, 46, 68, .04);
}

/* セクションラベルは背景を付けず、文字として読める状態に戻す */
.tech .section__label,
.about .section__label,
.business .section__label {
  background: transparent !important;
  color: var(--color-main) !important;
}
.tech .section__label span,
.about .section__label span,
.business .section__label span,
.tech__title > span,
.about__dot {
  background: var(--color-main) !important;
  color: transparent !important;
}

/* 背景色と同化していたボタン文言を白で固定 */
.about__button,
.about__button span,
.about__button b,
.tech__button,
.tech__button span,
.tech__button b,
.button--primary,
.button--primary span,
.contact-us .c-cv01-list__btn,
.contact-us .c-cv01-list__btn-txt {
  color: #fff !important;
}
.button--line,
.button--line span {
  color: var(--color-main-deep) !important;
}
.button--line:hover,
.button--line:focus-visible {
  color: var(--color-main) !important;
}
.about__button,
.tech__button {
  background: var(--color-main) !important;
}
.about__button:hover,
.about__button:focus-visible,
.tech__button:hover,
.tech__button:focus-visible {
  background: var(--color-main-dark) !important;
}

/* Technologies & Innovation：sanko_2風を残しつつ、テキストが重ならない・はみ出さない設計に調整 */
.tech {
  background:
    linear-gradient(rgba(147, 46, 68, .022) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(147, 46, 68, .022) 1px, transparent 1px) 0 0 / 16px 16px,
    #fffafa !important;
}
.tech__inner {
  width: min(1560px, calc(100% - 96px));
}
.tech__heading {
  margin-bottom: clamp(48px, 5.8vw, 88px);
}
.tech .section__title {
  max-width: 1050px;
  color: var(--color-main-deep) !important;
  font-size: clamp(42px, 4.6vw, 82px);
  line-height: 1.16;
  letter-spacing: .01em;
}
.tech__list {
  gap: clamp(38px, 4.6vw, 78px);
  align-items: start;
}
.tech__item {
  min-width: 0;
  overflow: visible;
}
.tech__image-link {
  display: block;
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(67, 24, 36, .10);
}
.tech__image {
  min-height: clamp(300px, 26vw, 460px);
  aspect-ratio: 1.58 / .62;
}
.tech__body {
  grid-template-columns: minmax(220px, .78fr) minmax(0, 1fr);
  column-gap: clamp(28px, 3vw, 52px);
  row-gap: clamp(22px, 2.4vw, 34px);
  padding-top: clamp(34px, 3.8vw, 62px);
}
.tech__title {
  min-width: 0;
  max-width: 100%;
  align-items: flex-start;
  color: var(--color-main-deep) !important;
  font-size: clamp(31px, 2.55vw, 52px);
  line-height: 1.22;
  letter-spacing: .015em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.tech__title > span {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: .58em;
  border-radius: 999px;
}
.tech__description {
  min-width: 0;
  max-width: 560px;
  color: #3f2b32 !important;
  font-size: clamp(14px, .94vw, 17px);
  font-weight: 800;
  line-height: 2;
  letter-spacing: .045em;
  overflow-wrap: break-word;
  word-break: normal;
}
.tech__button {
  grid-column: 2 / 3;
  min-width: 216px;
  min-height: 62px;
  border-radius: 6px;
  box-shadow: none;
}

@media (max-width: 1480px) {
  .tech__body {
    grid-template-columns: 1fr;
  }
  .tech__description {
    max-width: 620px;
  }
  .tech__button {
    grid-column: auto;
    margin-top: 6px;
  }
}
@media (max-width: 900px) {
  .tech__inner {
    width: min(100% - 32px, 720px);
  }
  .tech .section__title {
    font-size: clamp(36px, 10vw, 58px);
  }
  .tech__image {
    min-height: 260px;
  }
  .tech__title {
    font-size: clamp(30px, 8.5vw, 46px);
  }
}
@media (max-width: 520px) {
  .tech__button,
  .about__button {
    width: 100%;
  }
}

/* ========================================================
   v24 adjustments: tech overflow / contact color / business heading container
   - Technologies & Innovationのテキストはみ出しを防止
   - Contact usの色を#932E44ベースで落ち着いた濃色に再調整
   - Business Segment見出しを1280pxコンテナでセンタリング
======================================================== */

/* Business Segment heading: 1280pxの中央コンテナに揃える */
.business.section {
  width: 100%;
}
.business > .section__head,
.business > .section__head--right {
  width: min(1280px, calc(100% - 96px));
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: clamp(54px, 6vw, 92px);
  text-align: left;
}
.business > .section__head .section__label,
.business > .section__head .section__title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.business > .section__head .section__label {
  display: flex;
  width: fit-content;
  margin-bottom: clamp(16px, 1.5vw, 24px);
  transform: translateX(-1.5em);
}
.business > .section__head .section__title {
  color: var(--color-main-deep);
  font-size: clamp(50px, 5vw, 92px);
  line-height: 1.12;
}
.business__layout {
  width: min(1280px, calc(100% - 96px));
  margin-left: auto;
  margin-right: auto;
}

/* Technologies & Innovation: はみ出し・重なり対策 */
.tech {
  padding-top: clamp(110px, 8vw, 156px);
  padding-bottom: clamp(110px, 8.5vw, 170px);
}
.tech__inner {
  width: min(1280px, calc(100% - 96px)) !important;
}
.tech__heading {
  width: 100%;
  margin-bottom: clamp(56px, 5.5vw, 88px) !important;
}
.tech .section__title {
  max-width: 920px;
  font-size: clamp(42px, 4.2vw, 76px) !important;
  line-height: 1.18 !important;
}
.tech__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 64px) !important;
}
.tech__item {
  min-width: 0;
}
.tech__image {
  min-height: clamp(260px, 23vw, 380px) !important;
  aspect-ratio: 1.62 / .62 !important;
}
.tech__body {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr) !important;
  gap: clamp(24px, 2.8vw, 42px) !important;
  align-items: start;
  padding-top: clamp(30px, 3.2vw, 50px) !important;
}
.tech__title {
  min-width: 0;
  max-width: 100%;
  gap: clamp(14px, 1.4vw, 22px) !important;
  font-size: clamp(30px, 2.35vw, 44px) !important;
  line-height: 1.2 !important;
  letter-spacing: .02em;
  word-break: normal !important;
  overflow-wrap: anywhere;
}
.tech__title > span {
  flex: 0 0 10px;
  margin-top: .52em;
}
.tech__description {
  max-width: none !important;
  min-width: 0;
  font-size: clamp(14px, .95vw, 16px) !important;
  line-height: 2 !important;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}
.tech__button {
  grid-column: 2 / 3;
  min-width: 206px !important;
  min-height: 58px !important;
  margin-top: clamp(18px, 1.9vw, 30px) !important;
  padding: 0 28px !important;
}

/* Contact us: メインカラーを活かしつつ濃色を整理 */
.contact-us.c-cv01 {
  background:
    radial-gradient(circle at 86% 12%, rgba(147,46,68,.22), transparent 30%),
    linear-gradient(135deg, #121820 0%, #1e151b 48%, #2a1119 100%) !important;
}
.contact-us .c-cv01-header::after {
  background:
    linear-gradient(90deg, rgba(18,24,32,.92) 0%, rgba(18,24,32,.68) 46%, rgba(147,46,68,.22) 100%),
    linear-gradient(135deg, #151c25 0%, #2a1119 58%, rgba(255,255,255,.18) 100%) !important;
  opacity: 1;
}
.contact-us .c-cv01-header::before {
  opacity: .07;
}
.contact-us .c-cv01-header__lead,
.contact-us .c-cv01-header__head,
.contact-us .c-cv01-header__txt {
  text-shadow: 0 10px 32px rgba(0,0,0,.26);
}
.contact-us .c-cv01-header__txt {
  color: rgba(255,255,255,.82);
}
.contact-us .c-cv01-list {
  box-shadow: 0 30px 90px rgba(42,17,25,.24);
}
.contact-us .c-cv01-list__item.is-download .c-cv01-list__item-in {
  background: linear-gradient(135deg, #342832 0%, #3a1d29 100%) !important;
}
.contact-us .c-cv01-list__item.is-contact .c-cv01-list__item-in {
  background: linear-gradient(135deg, #24141b 0%, #2e1520 100%) !important;
}
.contact-us .c-cv01-list__item.is-works .c-cv01-list__item-in {
  background: linear-gradient(135deg, #4d2432 0%, #6f2233 100%) !important;
}
.contact-us .c-cv01-list__item-in::before {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
}
.contact-us .c-cv01-list__item + .c-cv01-list__item .c-cv01-list__item-in {
  border-left: 1px solid rgba(255,255,255,.06);
}
.contact-us .c-cv01-list__txt {
  color: rgba(255,255,255,.86) !important;
}
.contact-us .c-cv01-list__btn {
  background: transparent;
  border-color: rgba(255,255,255,.36);
}
.contact-us .c-cv01-list__item-in:hover .c-cv01-list__btn {
  background: #fff;
  color: var(--color-main) !important;
}
.contact-us .c-cv01-list__item-in:hover .c-cv01-list__btn-txt {
  color: var(--color-main) !important;
}

@media (max-width: 1180px) {
  .business > .section__head,
  .business > .section__head--right,
  .business__layout,
  .tech__inner {
    width: min(100% - 64px, 1080px) !important;
  }
  .business > .section__head .section__label,
  .business > .section__head .section__title {
    max-width: 760px;
  }
  .tech__body {
    grid-template-columns: 1fr !important;
  }
  .tech__button {
    grid-column: auto;
  }
}
@media (max-width: 900px) {
  .business > .section__head,
  .business > .section__head--right,
  .business__layout,
  .tech__inner {
    width: min(100% - 32px, 720px) !important;
  }
  .business > .section__head .section__label,
  .business > .section__head .section__title {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .business > .section__head .section__label {
    transform: none;
  }
  .business > .section__head .section__title {
    font-size: clamp(36px, 10vw, 58px);
  }
  .tech__list {
    grid-template-columns: 1fr;
    gap: 68px !important;
  }
  .tech__image {
    min-height: 260px !important;
    aspect-ratio: 1.55 / .82 !important;
  }
  .tech__title {
    font-size: clamp(30px, 8.8vw, 46px) !important;
    overflow-wrap: normal;
  }
  .tech__button {
    width: fit-content;
  }
  .contact-us .c-cv01-list__item + .c-cv01-list__item .c-cv01-list__item-in {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.06);
  }
}
@media (max-width: 520px) {
  .tech__button {
    width: 100%;
  }
}

/* ========================================================
   v25 adjustments: Technologies vertical layout / Business center heading
   - Technologies & Innovationの各カード内テキストを縦並びに変更
   - Business Segment見出しはmax-widthを使わず、text-align:centerで中央配置
======================================================== */

/* Business Segment heading: max-width制限を外し、シンプルに中央寄せ */
.business > .section__head,
.business > .section__head--right {
  width: min(100% - 96px, 100%) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
.business > .section__head .section__label,
.business > .section__head .section__title {
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
.business > .section__head .section__label {
  display: inline-flex !important;
  width: auto !important;
  transform: none !important;
  justify-content: center;
}
.business > .section__head .section__title {
  width: 100% !important;
  font-size: clamp(48px, 5.1vw, 92px) !important;
  line-height: 1.12 !important;
  letter-spacing: .005em;
}

/* Technologies & Innovation: 画像下を縦積みにして、はみ出し・重なりを解消 */
.tech__list {
  align-items: start;
}
.tech__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.tech__body {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  padding-top: clamp(32px, 3.6vw, 56px) !important;
}
.tech__title {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  font-size: clamp(34px, 3vw, 56px) !important;
  line-height: 1.22 !important;
  letter-spacing: .02em;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}
.tech__title > span {
  flex: 0 0 10px;
  margin-top: .56em;
}
.tech__description {
  width: min(100%, 620px);
  max-width: 620px !important;
  margin: clamp(28px, 3vw, 46px) 0 0 !important;
  font-size: clamp(14px, 1vw, 17px) !important;
  line-height: 2.05 !important;
  letter-spacing: .045em;
  overflow-wrap: break-word !important;
}
.tech__button {
  grid-column: auto !important;
  align-self: flex-start;
  width: auto;
  min-width: 226px !important;
  margin-top: clamp(32px, 3.3vw, 52px) !important;
}

@media (max-width: 1180px) {
  .business > .section__head,
  .business > .section__head--right {
    width: min(100% - 64px, 100%) !important;
  }
  .business > .section__head .section__label,
  .business > .section__head .section__title {
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .tech__title {
    font-size: clamp(32px, 4.2vw, 50px) !important;
  }
  .tech__description {
    max-width: 680px !important;
  }
}

@media (max-width: 900px) {
  .business > .section__head,
  .business > .section__head--right {
    width: min(100% - 32px, 100%) !important;
  }
  .business > .section__head .section__label,
  .business > .section__head .section__title {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
  .business > .section__head .section__title {
    font-size: clamp(34px, 10vw, 58px) !important;
    line-height: 1.18 !important;
  }
  .tech__body {
    padding-top: 28px !important;
  }
  .tech__title {
    font-size: clamp(30px, 8.6vw, 46px) !important;
  }
  .tech__description {
    width: 100%;
    max-width: none !important;
    margin-top: 24px !important;
    font-size: 14px !important;
    line-height: 2 !important;
  }
  .tech__button {
    margin-top: 28px !important;
  }
}

@media (max-width: 520px) {
  .business > .section__head .section__title {
    font-size: clamp(32px, 11vw, 48px) !important;
  }
  .tech__button {
    width: 100% !important;
  }
}


/* =========================================================
  Phase 1 Lower Pages
========================================================= */
body.is-lower main { overflow: visible; }
.lower-hero {
  position: relative;
  padding: calc(var(--header-height) + clamp(72px, 9vw, 140px)) 0 clamp(72px, 8vw, 132px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(147, 46, 68, .12), transparent 28%),
    linear-gradient(135deg, rgba(247, 234, 238, .92), rgba(255, 255, 255, .78) 55%, rgba(255, 245, 220, .42));
}
.lower-hero::before {
  content: attr(data-bg);
  position: absolute;
  left: 50%;
  bottom: -0.25em;
  transform: translateX(-50%);
  width: max-content;
  color: rgba(147, 46, 68, .055);
  font-family: var(--font-en);
  font-size: clamp(84px, 16vw, 260px);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: .8;
  pointer-events: none;
  white-space: nowrap;
}
.lower-hero__inner,
.lower-section__inner,
.lower-cta__inner,
.breadcrumb__inner {
  width: var(--container);
  margin-inline: auto;
}
.breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(24px, 3vw, 40px);
  color: rgba(42, 17, 25, .64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 9px;
  color: rgba(147, 46, 68, .36);
}
.lower-hero__body { position: relative; z-index: 2; max-width: 980px; }
.lower-hero__label,
.lower-heading__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--color-main);
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lower-hero__label::before,
.lower-heading__label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
}
.lower-hero__title {
  margin: 0;
  color: var(--color-main-deep);
  font-size: clamp(44px, 7vw, 112px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.055em;
}
.lower-hero__lead {
  max-width: 760px;
  margin: clamp(24px, 3vw, 36px) 0 0;
  color: rgba(42, 17, 25, .82);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 2.05;
}
.lower-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.lower-section { padding: clamp(72px, 8vw, 130px) 0; }
.lower-section--tint {
  background:
    linear-gradient(rgba(147, 46, 68, .035) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(147, 46, 68, .035) 1px, transparent 1px) 0 0 / 16px 16px,
    var(--color-bg);
}
.lower-section--dark { background: var(--color-main-deep); color: #fff; }
.lower-section--dark .lower-heading__label { color: #fff; opacity: .8; }
.lower-section--dark .lower-heading__title { color: #fff; }
.lower-heading { margin-bottom: clamp(34px, 5vw, 72px); }
.lower-heading--center { text-align: center; }
.lower-heading--center .lower-heading__label { justify-content: center; }
.lower-heading__title {
  margin: 0;
  color: var(--color-main-deep);
  font-size: clamp(34px, 5.2vw, 74px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.045em;
}
.lower-heading__text {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 2;
}
.lower-heading--center .lower-heading__text { margin-inline: auto; }
.lower-grid { display: grid; gap: 24px; }
.lower-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lower-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lower-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lower-card {
  position: relative;
  min-height: 100%;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(147, 46, 68, .13);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 20px 70px rgba(42, 17, 25, .075);
  overflow: hidden;
}
.lower-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-main), var(--color-accent));
  opacity: .85;
}
.lower-card__num {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(147, 46, 68, .45);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
}
.lower-card h3 {
  margin: 0 0 14px;
  color: var(--color-main-deep);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  letter-spacing: -.02em;
}
.lower-card p { margin: 0; color: rgba(42, 17, 25, .78); line-height: 2; }
.lower-card__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--color-main);
  font-weight: 900;
}
.lower-card__link::after { content: "→"; }
.problem-list { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.problem-list li {
  position: relative;
  padding: 20px 22px 20px 54px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(42, 17, 25, .055);
}
.problem-list li::before {
  content: "";
  position: absolute;
  left: 22px; top: 29px;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--color-main);
}
.price-table { display: grid; gap: 18px; }
.price-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1.5fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(147, 46, 68, .14);
  border-radius: 20px;
  background: #fff;
}
.price-row strong { color: var(--color-main-deep); font-size: 20px; }
.price-row b { color: var(--color-main); font-family: var(--font-en); font-size: 22px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 20px 0 0; list-style: none; }
.tag-list li {
  padding: 7px 12px;
  border: 1px solid rgba(147, 46, 68, .16);
  border-radius: 999px;
  color: var(--color-main);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}
.flow-list { counter-reset: flow; display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.flow-list li {
  counter-increment: flow;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(147, 46, 68, .12);
}
.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}
.flow-list h3 { margin: 0 0 8px; font-size: 22px; color: var(--color-main-deep); }
.flow-list p { margin: 0; color: var(--color-muted); }
.works-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.works-card {
  border-radius: 28px;
  overflow: hidden;
  background: var(--color-main-deep);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.works-card__image {
  display: grid;
  place-items: center;
  min-height: 250px;
  background:
    linear-gradient(135deg, rgba(147,46,68,.9), rgba(42,17,25,.92)),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 16px 16px;
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: .06em;
}
.works-card__body { padding: 26px; }
.works-card__category { margin: 0 0 8px; color: rgba(255,255,255,.55); font-family: var(--font-en); }
.works-card h3 { margin: 0; font-size: 21px; line-height: 1.55; }
.works-card p { margin: 16px 0 0; color: rgba(255,255,255,.76); }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid rgba(147,46,68,.14); border-radius: 22px; background: #fff; overflow: hidden; }
.faq-item__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 26px; border: 0; background: transparent; color: var(--color-main-deep); cursor: pointer; text-align: left; font-weight: 900;
}
.faq-item__q::after { content: "+"; color: var(--color-main); font-family: var(--font-en); font-size: 24px; }
.faq-item.is-open .faq-item__q::after { content: "−"; }
.faq-item__a { display: none; padding: 0 26px 24px; color: var(--color-muted); }
.faq-item.is-open .faq-item__a { display: block; }
.contact-form {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.form-field { display: grid; gap: 8px; }
.form-field label { color: var(--color-main-deep); font-weight: 900; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; min-height: 54px; padding: 14px 16px;
  border: 1px solid rgba(147, 46, 68, .18); border-radius: 14px;
  color: var(--color-text); background: #fff; font: inherit;
}
.form-field textarea { min-height: 180px; resize: vertical; }
.lower-cta {
  padding: clamp(72px, 8vw, 120px) 0;
  background: linear-gradient(135deg, var(--color-main-deep), var(--color-main));
  color: #fff;
}
.lower-cta__inner { display: grid; grid-template-columns: 1.2fr auto; align-items: center; gap: 30px; }
.lower-cta h2 { margin: 0; font-size: clamp(32px, 5vw, 72px); line-height: 1.1; letter-spacing: -.05em; }
.lower-cta p { margin: 20px 0 0; color: rgba(255,255,255,.78); max-width: 720px; }
.button--light { background: #fff; color: var(--color-main); border-color: #fff; }
.policy-body { max-width: 920px; margin-inline: auto; }
.policy-body h2 { margin-top: 48px; color: var(--color-main-deep); }
.sitemap-list { columns: 2; gap: 60px; padding: 0; margin: 0; list-style: none; }
.sitemap-list li { break-inside: avoid; padding: 10px 0; }
.sitemap-list a { color: var(--color-main); font-weight: 900; }
@media (max-width: 1100px) {
  .lower-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lower-grid--3, .works-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .lower-hero__inner, .lower-section__inner, .lower-cta__inner, .breadcrumb__inner { width: min(100% - 32px, 1280px); }
  .lower-hero { padding-top: calc(var(--header-height) + 52px); }
  .lower-grid--2, .lower-grid--3, .lower-grid--4, .works-list { grid-template-columns: 1fr; }
  .lower-section { padding: 64px 0; }
  .flow-list li { grid-template-columns: 1fr; gap: 12px; }
  .lower-cta__inner { grid-template-columns: 1fr; }
  .sitemap-list { columns: 1; }
}


/* =========================================================
   Enterprise pricing update
========================================================= */
.price-note {
  margin: 28px 0 0;
  padding: 22px 26px;
  border: 1px solid rgba(147, 46, 68, .16);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(247, 234, 238, .9), rgba(255, 255, 255, .92));
  color: rgba(42, 17, 25, .78);
  font-size: 14px;
  line-height: 2;
}
.price-note strong { color: var(--color-main-deep); }
.price-row b small {
  display: block;
  margin-top: 4px;
  color: rgba(42, 17, 25, .56);
  font-family: var(--font-ja);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}
.price-row--featured {
  border-color: rgba(147, 46, 68, .38);
  background: linear-gradient(135deg, #fff, rgba(247, 234, 238, .62));
  box-shadow: 0 18px 50px rgba(147, 46, 68, .12);
}
.price-row--featured strong::after {
  content: "推奨";
  display: inline-flex;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-main);
  color: #fff;
  font-size: 11px;
  line-height: 1;
  vertical-align: middle;
}
.price-caption {
  margin: 14px 0 0;
  color: rgba(42, 17, 25, .58);
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 760px) {
  .price-note { padding: 18px; }
  .price-row--featured strong::after { margin-left: 8px; }
}

.inline-link {
  color: var(--color-main);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.inline-link:hover {
  color: var(--color-main-dark);
}


/* Phase1 v4 additions */
.lower-card__num {
  color: var(--color-main, #932E44);
}
.inline-link {
  color: var(--color-main, #932E44);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
@media (max-width: 767px) {
  .price-row span { word-break: normal; overflow-wrap: anywhere; }
}


/* v5: Flow / production planning additions */
.flow-list--large {
  gap: 24px;
}
.flow-list--large li {
  align-items: start;
  border-color: rgba(147, 46, 68, 0.16);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,234,238,.62));
}
.comparison-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.comparison-panel > div {
  border: 1px solid rgba(147, 46, 68, .16);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  box-shadow: 0 18px 40px rgba(42, 17, 25, .06);
}
.comparison-panel h3 {
  margin: 0 0 18px;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--color-main-deep);
}
.comparison-panel ul {
  margin: 0;
  padding-left: 1.1em;
  color: rgba(42, 17, 25, .78);
  line-height: 2;
}
.lower-section--dark .lower-card--light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.lower-section--dark .lower-card--light h3,
.lower-section--dark .lower-card--light p {
  color: #fff;
}
.lower-section--dark .lower-heading__text {
  color: rgba(255,255,255,.76);
}
@media (max-width: 768px) {
  .comparison-panel {
    grid-template-columns: 1fr;
  }
}


/* Phase 1 v6: Works / Case Study refinement */
.archive-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 34px;
}
.archive-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(147, 46, 68, .22);
  border-radius: 999px;
  background: #fff;
  color: var(--color-main, #932E44);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.archive-filter a:hover {
  transform: translateY(-2px);
  background: var(--color-main, #932E44);
  border-color: var(--color-main, #932E44);
  color: #fff;
}
.works-list--rich {
  align-items: stretch;
}
.works-list--rich .works-card {
  min-height: 100%;
}
.works-list--rich .works-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.works-list--rich .tag-list {
  margin-top: auto;
}
.case-overview {
  display: grid;
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}
.case-overview > .works-card,
.case-overview > .lower-card {
  height: 100%;
}
.scope-table {
  overflow: hidden;
  border: 1px solid rgba(147, 46, 68, .16);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(42, 17, 25, .06);
}
.scope-table dl {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  margin: 0;
}
.scope-table dt,
.scope-table dd {
  margin: 0;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(147, 46, 68, .12);
  font-size: 15px;
  line-height: 1.8;
}
.scope-table dt {
  background: #F7EAEE;
  color: var(--color-main, #932E44);
  font-weight: 900;
}
.scope-table dd a {
  color: var(--color-main, #932E44);
  font-weight: 900;
}
.scope-table dt:last-of-type,
.scope-table dd:last-of-type {
  border-bottom: none;
}
@media (max-width: 760px) {
  .archive-filter {
    gap: 8px;
    margin: 28px 0;
  }
  .archive-filter a {
    min-height: 38px;
    padding: 7px 13px;
    font-size: 12px;
  }
  .case-overview {
    grid-template-columns: 1fr;
  }
  .scope-table dl {
    grid-template-columns: 1fr;
  }
  .scope-table dt,
  .scope-table dd {
    padding: 16px 18px;
  }
  .scope-table dt {
    border-bottom: none;
  }
}


/* v7: Contact conversion form */
.contact-form--extended {
  max-width: 1080px;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-required {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 8px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--color-main-pale);
  color: var(--color-main);
  font-size: 11px;
  line-height: 1;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}
.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: .35em;
  accent-color: var(--color-main);
}
.form-consent a {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-offset: .18em;
}
.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
}
.contact-form__footer p {
  max-width: 520px;
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }
  .contact-form__footer .button {
    width: 100%;
  }
}


/* =========================================================
   Phase1 v8: Blog / SEO content foundation
========================================================= */
.site-header__nav a[aria-current="page"] {
  color: var(--color-main, #932E44);
}
.home-blog {
  background: linear-gradient(180deg, #fff 0%, rgba(247,234,238,.7) 100%);
}
.home-blog__inner,
.blog-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.home-blog__more {
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 0;
  display: flex;
  justify-content: center;
}
.blog-card a {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 30px;
  color: inherit;
  text-decoration: none;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(147,46,68,.14);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(42,17,25,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.blog-card a:hover {
  transform: translateY(-6px);
  border-color: rgba(147,46,68,.32);
  box-shadow: 0 24px 70px rgba(42,17,25,.12);
}
.blog-card__cat {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 13px;
  color: var(--color-main, #932E44);
  font-family: "Heebo", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(147,46,68,.08);
  border-radius: 999px;
}
.blog-card h3 {
  margin: 0;
  color: var(--color-text, #2A1119);
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.55;
  letter-spacing: .02em;
}
.blog-card p:not(.blog-card__cat) {
  margin: 18px 0 0;
  color: rgba(42,17,25,.72);
  line-height: 1.9;
}
.blog-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--color-main, #932E44);
  font-weight: 800;
}
.blog-card span::after {
  content: "→";
  transition: transform .2s ease;
}
.blog-card a:hover span::after { transform: translateX(4px); }
.article-section {
  padding: 96px 0;
  background: #fff;
}
.article-section__inner {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}
.article-body {
  color: var(--color-text, #2A1119);
  font-size: 17px;
  line-height: 2.05;
}
.article-body h2 {
  position: relative;
  margin: 64px 0 22px;
  padding-left: 20px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.55;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 6px;
  height: 1.25em;
  border-radius: 999px;
  background: var(--color-main, #932E44);
}
.article-body p { margin: 0 0 24px; }
.article-body ul {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 24px 28px;
  list-style: none;
  background: rgba(247,234,238,.78);
  border: 1px solid rgba(147,46,68,.14);
  border-radius: 22px;
}
.article-body li {
  position: relative;
  padding-left: 24px;
}
.article-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .9em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-main, #932E44);
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.sitemap-grid a { color: var(--color-main, #932E44); font-weight: 700; }
@media (max-width: 900px) {
  .home-blog__inner,
  .blog-grid,
  .sitemap-grid { grid-template-columns: 1fr; }
  .blog-card a { padding: 24px; border-radius: 22px; }
  .article-section { padding: 72px 0; }
}
@media (max-width: 640px) {
  .home-blog__inner,
  .home-blog__more,
  .blog-grid,
  .article-section__inner { width: min(100% - 32px, 1180px); }
  .article-body { font-size: 16px; }
  .article-body ul { padding: 20px; }
}


/* =========================================================
   Phase1 v9: Local SEO / service area additions
========================================================= */
.area-lead {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.area-lead__panel {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.28), transparent 28%),
    linear-gradient(135deg, var(--color-main), var(--color-main-deep));
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.area-lead__panel::before {
  content: "YOKOHAMA";
  position: absolute;
  left: 8%;
  bottom: 8%;
  color: rgba(255,255,255,.08);
  font-family: var(--font-en);
  font-size: clamp(48px, 8vw, 118px);
  font-weight: 800;
  line-height: .8;
}
.area-lead__panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 420px;
  padding: clamp(30px, 4vw, 58px);
}
.area-lead__panel span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .18em;
}
.area-lead__panel strong {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.18;
  letter-spacing: -.04em;
}
.area-link-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.area-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(147, 46, 68, .16);
  border-radius: 18px;
  background: #fff;
  color: var(--color-main-deep);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(42,17,25,.055);
}
.area-link-list a::after { content: "→"; color: var(--color-main); }
.local-note {
  margin-top: 26px;
  padding: 22px 24px;
  border-left: 4px solid var(--color-main);
  border-radius: 18px;
  background: rgba(247, 234, 238, .72);
  color: rgba(42, 17, 25, .76);
}
.home-area {
  background:
    linear-gradient(rgba(147, 46, 68, .028) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(147, 46, 68, .028) 1px, transparent 1px) 0 0 / 16px 16px,
    #fff;
}
.home-area .lower-card { background: rgba(255,255,255,.94); }
@media (max-width: 900px) {
  .area-lead { grid-template-columns: 1fr; }
  .area-lead__panel,
  .area-lead__panel-inner { min-height: 320px; }
}


/* =========================================================
  WordPress v12 additions
========================================================= */
.site-header__nav .menu,
.site-drawer .menu {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lower-card__price {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(147, 46, 68, 0.08);
  color: var(--color-main, #932e44);
  font-weight: 800;
  font-size: 14px;
}
.contact-form-wrap {
  padding: clamp(24px, 4vw, 48px);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(42, 17, 25, 0.08);
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--color-text, #2a1119);
}
.contact-form label span {
  justify-self: start;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--color-main, #932e44);
  color: #fff;
  font-size: 11px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(147, 46, 68, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.form-grid__full { grid-column: 1 / -1; }
.form-policy { margin: 20px 0 28px; }
.work-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.work-card a {
  display: grid;
  gap: 18px;
  height: 100%;
  padding: 18px;
  border-radius: 26px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 22px 70px rgba(42, 17, 25, 0.08);
}
.work-card img,
.work-card__placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(147, 46, 68, 0.14), rgba(214, 162, 74, 0.16));
}
.work-card__placeholder {
  display: grid;
  place-items: center;
  color: var(--color-main, #932e44);
  font-weight: 900;
  letter-spacing: .12em;
}
.work-card p {
  margin: 0 0 6px;
  color: var(--color-main, #932e44);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.work-card h2 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 26px);
}
.work-card span { color: #65545a; line-height: 1.8; }
.single-main-image {
  margin: 0 0 40px;
}
.single-main-image img {
  width: 100%;
  height: auto;
  border-radius: 28px;
}
.prose {
  line-height: 2;
}
.prose h2,
.prose h3 {
  margin-top: 2.2em;
  line-height: 1.45;
}
.prose p + p { margin-top: 1.2em; }
@media (max-width: 960px) {
  .work-list-grid { grid-template-columns: 1fr; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   v13 WordPress service detail templates
======================================================== */
.service-detail-intro {
  padding-top: clamp(58px, 6vw, 96px);
}
.service-detail-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}
.service-detail-intro__summary,
.service-detail-intro__price {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(147, 46, 68, .14);
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 26px 80px rgba(42, 17, 25, .08);
}
.service-detail-intro__summary {
  padding: clamp(34px, 4vw, 62px);
}
.service-detail-intro__summary::before,
.service-detail-intro__price::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(147, 46, 68, .075);
}
.service-detail-intro__summary h2 {
  position: relative;
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 1.34;
  letter-spacing: -.04em;
}
.service-detail-intro__summary p:last-child {
  position: relative;
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(42, 17, 25, .72);
  line-height: 2.05;
}
.service-detail-intro__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 3.8vw, 54px);
  background: linear-gradient(135deg, #2a1119 0%, #6f2233 48%, #932e44 100%);
  color: #fff;
}
.service-detail-intro__price span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.74);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.service-detail-intro__price span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6a24a;
}
.service-detail-intro__price strong {
  position: relative;
  display: block;
  margin-top: 22px;
  font-family: var(--font-en);
  font-size: clamp(40px, 4.6vw, 70px);
  line-height: 1;
  letter-spacing: -.04em;
}
.service-detail-intro__price p {
  position: relative;
  margin: 26px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.95;
}
.problem-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.problem-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 122px;
  padding: 24px 22px;
  border: 1px solid rgba(147, 46, 68, .12);
  border-radius: 22px;
  background: #fff;
  color: rgba(42, 17, 25, .82);
  font-weight: 800;
  line-height: 1.75;
  box-shadow: 0 18px 50px rgba(42, 17, 25, .06);
}
.problem-list__item span {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: .25em;
  border-radius: 50%;
  background: var(--color-main);
  box-shadow: inset 0 0 0 6px #f7eaee;
}
.service-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-plan-card {
  min-height: 100%;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.service-plan-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
}
.service-plan-card strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-family: var(--font-en);
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -.04em;
  line-height: 1;
}
.service-plan-card p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.95;
}
.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media (max-width: 1024px) {
  .service-detail-intro__grid,
  .service-plan-grid { grid-template-columns: 1fr; }
  .problem-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .service-detail-intro__summary,
  .service-detail-intro__price,
  .service-plan-card { border-radius: 22px; }
  .problem-list { grid-template-columns: 1fr; }
  .problem-list__item { min-height: auto; }
  .service-detail-actions .button { width: 100%; }
}

/* ========================================================
   v13 WordPress blog / article templates
======================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.blog-grid .blog-card h3 {
  margin: 14px 0 0;
  color: var(--color-text);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.5;
}
.pagination-wrap {
  margin-top: 52px;
  text-align: center;
}
.pagination-wrap .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(147, 46, 68, .18);
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-en);
  font-weight: 800;
}
.pagination-wrap .page-numbers.current,
.pagination-wrap a.page-numbers:hover {
  background: var(--color-main);
  color: #fff;
}
.article-section {
  background: #fff;
}
.article-section__inner {
  width: min(100% - 48px, 920px);
  margin-inline: auto;
}
.article-section__thumb {
  overflow: hidden;
  margin: 0 0 clamp(32px, 5vw, 58px);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(42, 17, 25, .09);
}
.article-section__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.prose {
  color: rgba(42, 17, 25, .84);
  font-size: 16px;
  line-height: 2.05;
}
.prose > *:first-child { margin-top: 0; }
.prose h2 {
  margin: clamp(44px, 5vw, 72px) 0 18px;
  color: var(--color-text);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.35;
  letter-spacing: -.04em;
}
.prose h3 {
  margin: 36px 0 14px;
  color: var(--color-text);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.45;
}
.prose a { color: var(--color-main); font-weight: 800; text-decoration: underline; text-underline-offset: .18em; }
.prose ul,
.prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: .55em; }
.prose blockquote {
  margin: 34px 0;
  padding: 26px 30px;
  border-left: 5px solid var(--color-main);
  border-radius: 18px;
  background: #f7eaee;
  color: var(--color-text);
  font-weight: 700;
}
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-section__inner { width: calc(100% - 32px); }
  .article-section__thumb { border-radius: 20px; }
}

/* =========================================================
   WordPress v14: archive / project / FAQ refinements
========================================================= */
.archive-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(28px, 4vw, 48px);
}
.archive-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(147, 46, 68, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--color-main, #932E44);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.archive-filter a:hover {
  transform: translateY(-2px);
  background: var(--color-main, #932E44);
  color: #fff;
}
.work-card--wp small {
  display: inline-flex;
  margin-top: 10px;
  color: rgba(42, 17, 25, 0.62);
  font-size: 12px;
  line-height: 1.5;
}
.project-detail__visual {
  overflow: hidden;
  margin: 0 0 clamp(28px, 4vw, 56px);
  border-radius: 28px;
  background: #f5edf0;
  box-shadow: 0 24px 80px rgba(42, 17, 25, 0.12);
}
.project-detail__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.project-detail__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(147, 46, 68, 0.14);
  border-radius: 24px;
  background: rgba(147, 46, 68, 0.12);
}
.project-detail__summary > div {
  min-width: 0;
  padding: clamp(18px, 2.5vw, 28px);
  background: #fff;
}
.project-detail__label,
.project-detail__eyebrow {
  margin: 0 0 8px;
  color: var(--color-main, #932E44);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-detail__summary strong,
.project-detail__summary span,
.project-detail__url {
  color: #2a1119;
  font-size: 15px;
  line-height: 1.8;
}
.project-tags,
.project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.project-tags span,
.project-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f7eaee;
  color: var(--color-main, #932E44);
  font-size: 12px;
  font-weight: 700;
}
.project-badges {
  margin-bottom: 16px;
}
.project-detail__body {
  max-width: 880px;
  margin: 0 auto clamp(32px, 5vw, 64px);
  color: rgba(42, 17, 25, 0.82);
  line-height: 2;
}
.project-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.project-detail__block {
  min-height: 180px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(147, 46, 68, 0.12);
  border-radius: 24px;
  background: linear-gradient(140deg, #fff 0%, #fff 58%, #f7eaee 100%);
  box-shadow: 0 14px 40px rgba(42, 17, 25, 0.06);
}
.project-detail__block p:last-child {
  margin: 0;
  color: rgba(42, 17, 25, 0.78);
  line-height: 2;
}
.faq-list--grouped {
  display: grid;
  gap: 28px;
}
.faq-group__title {
  margin: 0 0 14px;
  color: #2a1119;
  font-size: clamp(18px, 2vw, 24px);
}
.faq-group {
  display: grid;
  gap: 10px;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-main, #932E44);
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(147, 46, 68, 0.18);
}
.nav-links .current,
.nav-links a:hover {
  background: var(--color-main, #932E44);
  color: #fff;
}
@media (max-width: 900px) {
  .project-detail__summary,
  .project-detail__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .archive-filter {
    gap: 8px;
  }
  .archive-filter a {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 12px;
  }
  .project-detail__visual {
    border-radius: 18px;
  }
  .project-detail__summary,
  .project-detail__block {
    border-radius: 18px;
  }
}
.form-note {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: #f7eaee;
  color: rgba(42, 17, 25, 0.78);
  font-size: 14px;
  line-height: 1.8;
}

/* v15: contact fallback / final polish */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.project-meta-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: clamp(24px, 4vw, 48px);
  background: #fff;
  border: 1px solid rgba(147, 46, 68, .14);
  border-radius: 24px;
  overflow: hidden;
}
.project-meta-table th,
.project-meta-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(147, 46, 68, .12);
  text-align: left;
  vertical-align: top;
}
.project-meta-table th {
  width: 220px;
  color: var(--color-main, #932E44);
  background: rgba(147, 46, 68, .04);
}
.project-meta-table tr:last-child th,
.project-meta-table tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 640px) {
  .project-meta-table,
  .project-meta-table tbody,
  .project-meta-table tr,
  .project-meta-table th,
  .project-meta-table td {
    display: block;
    width: 100%;
  }
  .project-meta-table th {
    padding-bottom: 8px;
  }
  .project-meta-table td {
    padding-top: 8px;
  }
}
