:root {
  --blue: #073a86;
  --navy: #082f6d;
  --teal: #28aabc;
  --gold: #d6a447;
  --ink: #151923;
  --muted: #566273;
  --line: #e7edf5;
  --panel: rgb(255 255 255 / 82%);
  --orange: #ff4d2a;
  --font-jp: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: Inter, Avenir Next, Helvetica, Arial, var(--font-jp);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  width: 100%;
  max-width: 100vw;
  grid-template-columns: 240px 1fr 164px;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 18px clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(18px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: 216px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 38px);
  min-width: 0;
  color: #3d4656;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a,
.site-footer nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--blue);
}

.header-contact,
.primary-link,
.secondary-link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}

.header-contact,
.primary-link {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

.secondary-link {
  border: 1px solid #cad4e2;
  background: rgb(255 255 255 / 64%);
  color: #273142;
}

.menu-button {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 92px;
}

.motion-backdrop {
  position: absolute;
  inset: 92px 0 0;
  overflow: hidden;
  pointer-events: none;
}

.motion-backdrop::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 16%, rgb(40 170 188 / 16%), transparent 28%),
    linear-gradient(90deg, #fff 0%, #fff 43%, rgb(247 252 255 / 88%) 100%);
}

.motion-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #fff 0%, rgb(255 255 255 / 92%) 44%, rgb(255 255 255 / 18%) 70%, transparent 100%);
}

.brand-morph {
  position: absolute;
  top: 8px;
  right: -150px;
  width: min(820px, 60vw);
  height: 760px;
  opacity: .62;
  contain: layout paint;
}

.brand-morph::before {
  position: absolute;
  top: 84px;
  right: 78px;
  width: 520px;
  height: 420px;
  content: "";
  background: url("/brand/furangry-mark.png") center / contain no-repeat;
  opacity: .055;
  transform-origin: 45% 52%;
  animation: exact-mark-breathe 15s ease-in-out infinite;
  will-change: transform, opacity;
}

.brand-morph::after {
  position: absolute;
  inset: 0 0 0 160px;
  content: "";
  background:
    radial-gradient(circle at 64% 16%, rgb(40 170 188 / 12%), transparent 24%),
    radial-gradient(circle at 56% 74%, rgb(7 58 134 / 8%), transparent 30%);
  filter: blur(14px);
  animation: glow-drift 18s ease-in-out infinite;
  will-change: transform, opacity;
}

.flow-belt {
  position: absolute;
  top: -620px;
  right: -40px;
  width: 820px;
  height: 1420px;
  transform-origin: 50% 50%;
  transform: rotate(26deg);
}

.flow-belt-secondary {
  right: 160px;
  opacity: .48;
}

.flow-shape {
  position: absolute;
  display: block;
  background: linear-gradient(135deg, #19d1e8 0%, #0366f3 52%, #0700c8 100%);
  box-shadow: 0 30px 70px rgb(5 32 96 / 9%);
  opacity: 0;
  transform: translate3d(0, -760px, 0) rotate(var(--shape-rotate, 0deg));
  animation: random-shape-fall var(--fall-duration, 12s) linear var(--fall-delay, 0s) infinite;
  will-change: transform, opacity;
}

.flow-disc {
  border-radius: 50%;
  background: radial-gradient(circle at 30% 26%, #35d9e6 0%, #076cf3 52%, #0600d8 100%);
}

.flow-disc {
  width: 178px;
  height: 178px;
}

.flow-triangle {
  width: 122px;
  height: 122px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(135deg, #20d5ea 0%, #0467ef 54%, #0500cf 100%);
}

.flow-triangle-one { top: 286px; left: 528px; --shape-rotate: -28deg; --fall-duration: 14.3s; --fall-delay: -9.1s; --fall-mid-x: -24px; --fall-x: 46px; }
.flow-disc-one { top: 306px; left: 660px; --fall-duration: 10.7s; --fall-delay: -3.2s; --fall-mid-x: 28px; --fall-x: -58px; }
.flow-triangle-two { top: 882px; left: 368px; --shape-rotate: 28deg; --fall-duration: 8.9s; --fall-delay: -2.8s; --fall-mid-x: -18px; --fall-x: 62px; }
.flow-disc-three { top: 42px; left: 438px; width: 118px; height: 118px; --fall-duration: 7.6s; --fall-delay: -5.5s; --fall-mid-x: 20px; --fall-x: -30px; }
.flow-triangle-four { top: 688px; left: 628px; width: 92px; height: 92px; --shape-rotate: 16deg; --fall-duration: 16.2s; --fall-delay: -12.6s; --fall-mid-x: -52px; --fall-x: 18px; }
.flow-disc-six { top: 1036px; left: 708px; width: 92px; height: 92px; --fall-duration: 11.4s; --fall-delay: -7.8s; --fall-mid-x: 34px; --fall-x: -52px; }
.flow-triangle-six { top: 1248px; left: 468px; width: 78px; height: 78px; --shape-rotate: -42deg; --fall-duration: 18.6s; --fall-delay: -11.4s; --fall-mid-x: -46px; --fall-x: 24px; }

.flow-disc-two { top: 394px; left: 398px; width: 124px; height: 124px; --fall-duration: 15.1s; --fall-delay: -8.6s; --fall-mid-x: 26px; --fall-x: -64px; }
.flow-triangle-three { top: 588px; left: 584px; width: 104px; height: 104px; --shape-rotate: -18deg; --fall-duration: 9.2s; --fall-delay: -4.3s; --fall-mid-x: -32px; --fall-x: 54px; }
.flow-disc-four { top: 760px; left: 448px; width: 156px; height: 156px; --fall-duration: 17.4s; --fall-delay: -14.2s; --fall-mid-x: 54px; --fall-x: -18px; }
.flow-triangle-five { top: 970px; left: 620px; width: 142px; height: 142px; --shape-rotate: 34deg; --fall-duration: 12.1s; --fall-delay: -6.8s; --fall-mid-x: -28px; --fall-x: 38px; }
.flow-disc-five { top: 1138px; left: 528px; width: 68px; height: 68px; --fall-duration: 6.8s; --fall-delay: -3.9s; --fall-mid-x: 18px; --fall-x: -24px; }
.flow-triangle-seven { top: 122px; left: 650px; width: 86px; height: 86px; --shape-rotate: 22deg; --fall-duration: 13.6s; --fall-delay: -10.2s; --fall-mid-x: -22px; --fall-x: 60px; }
.flow-disc-seven { top: 1320px; left: 350px; width: 108px; height: 108px; --fall-duration: 19.2s; --fall-delay: -15.6s; --fall-mid-x: 58px; --fall-x: -38px; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 92px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px clamp(24px, 5vw, 80px) 90px;
}

.hero-copy {
  max-width: 700px;
}

.hero-label,
.section-title p,
.contact-section > p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.hero-copy h1 {
  margin: 28px 0 0;
  color: #3b3938;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  font-size: clamp(58px, 5.8vw, 84px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-copy h1 > span {
  display: block;
  white-space: nowrap;
}

.hero-heading-highlight {
  display: inline-block;
  background: linear-gradient(90deg, #00c9ff 0%, #0477f6 48%, #0500df 100%);
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 660px;
  margin: 42px 0 0;
  color: #4a5566;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.hero-card {
  margin-bottom: 34px;
  padding: 30px;
  border: 1px solid rgb(231 236 243 / 82%);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgb(20 46 92 / 10%);
  backdrop-filter: blur(18px);
}

.hero-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.hero-card p {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.85;
}

.about-section,
.philosophy-section,
.service-section,
.company-section,
.media-section,
.trust-section,
.recruit-teaser-section,
.news-section,
.contact-section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 116px clamp(24px, 5vw, 80px);
}

.section-title {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.section-title h2,
.contact-section h2 {
  margin: 0;
  color: #151923;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 1.18;
}

.about-section > p {
  max-width: 760px;
  margin: 42px 0 0 auto;
  color: #4b5564;
  font-size: 17px;
  line-height: 2.1;
}

.philosophy-section {
  padding-top: 108px;
  padding-bottom: 96px;
}

.philosophy-section::before {
  position: absolute;
  right: clamp(24px, 8vw, 120px);
  top: 74px;
  z-index: -1;
  width: clamp(180px, 22vw, 320px);
  height: clamp(160px, 20vw, 290px);
  content: "";
  background: rgb(40 170 188 / 8%);
  clip-path: polygon(0 14%, 100% 0, 70% 100%);
}

.philosophy-section > p {
  max-width: 820px;
  margin: 46px 0 0 auto;
  color: #303746;
  font-size: clamp(17px, 1.65vw, 24px);
  font-weight: 800;
  line-height: 2.05;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.focus-grid article {
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 76%);
}

.focus-grid span,
.media-copy > p,
.trust-list h3 {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.focus-grid p {
  margin: 20px 0 0;
  color: #202838;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 86px) clamp(42px, 5vw, 76px);
  margin-top: 64px;
}

.featured-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 3.2vw, 56px);
}

.service-brand-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #465365;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 800;
  line-height: 1.85;
}

.service-card {
  position: relative;
  min-height: 620px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  overflow: visible;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  display: block;
  width: 100%;
  height: clamp(220px, 24vw, 330px);
  margin-bottom: 48px;
  border-radius: 3px;
  content: "";
  background:
    linear-gradient(180deg, rgb(255 255 255 / 18%) 0 16%, transparent 16%),
    linear-gradient(135deg, #0612e8 0%, #073aee 48%, #18c5d6 100%);
  box-shadow: 0 28px 70px rgb(7 28 92 / 12%);
}

.service-visual {
  position: absolute;
  top: clamp(24px, 3vw, 42px);
  left: 50%;
  width: min(76%, 420px);
  height: clamp(170px, 18vw, 250px);
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 30px rgb(7 25 80 / 12%));
}

.service-card::after {
  position: absolute;
  top: clamp(248px, 27vw, 366px);
  left: -44px;
  z-index: -1;
  width: 210px;
  height: 190px;
  content: "";
  background: rgb(40 170 188 / 9%);
  clip-path: polygon(0 18%, 100% 0, 70% 100%);
}

.service-card:nth-child(2n)::after {
  left: -36px;
  transform: rotate(6deg);
}

.service-card:nth-child(1)::before {
  background:
    radial-gradient(circle at 72% 34%, #29c9db 0 7%, transparent 7.4%),
    linear-gradient(90deg, transparent 8%, #fff 8% 12%, transparent 12% 100%),
    repeating-linear-gradient(0deg, rgb(255 255 255 / 22%) 0 8px, transparent 8px 32px),
    linear-gradient(135deg, #0714d8, #073aee 58%, #16c5d8);
}

.service-card:nth-child(2)::before {
  background:
    radial-gradient(circle at 68% 42%, #fff 0 8%, transparent 8.5%),
    radial-gradient(circle at 76% 56%, #f8d56b 0 5%, transparent 5.5%),
    linear-gradient(90deg, transparent 9%, rgb(255 255 255 / 32%) 9% 13%, transparent 13%),
    linear-gradient(135deg, #0714d8, #073aee 46%, #28aabc);
}

.service-card:nth-child(3)::before {
  background:
    repeating-linear-gradient(90deg, rgb(255 255 255 / 14%) 0 46px, transparent 46px 92px),
    linear-gradient(135deg, #0714d8, #073aee 50%, #28aabc);
}

.service-card:nth-child(4)::before {
  background:
    radial-gradient(circle at 70% 34%, #fff 0 7%, transparent 7.5%),
    linear-gradient(90deg, transparent 13%, rgb(255 255 255 / 24%) 13% 18%, transparent 18%),
    repeating-linear-gradient(135deg, rgb(255 255 255 / 17%) 0 18px, transparent 18px 46px),
    linear-gradient(135deg, #0714d8, #073aee 56%, #18c5d6);
}

.service-card:nth-child(5)::before,
.service-card:nth-child(6)::before,
.service-card:nth-child(7)::before,
.service-card:nth-child(8)::before,
.service-card:nth-child(9)::before {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 88%) 0 18%, transparent 18%),
    radial-gradient(circle at 74% 50%, #28aabc 0 8%, transparent 8.5%),
    repeating-linear-gradient(90deg, rgb(255 255 255 / 16%) 0 34px, transparent 34px 68px),
    linear-gradient(135deg, #0714d8, #073aee 52%, #18c5d6);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-logo {
  display: flex;
  align-items: center;
  min-height: 38px;
  margin: -8px 0 22px;
}

.service-logo img {
  display: block;
  width: min(190px, 100%);
  height: auto;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #0719e8;
  font-size: clamp(36px, 4.2vw, 66px);
  font-weight: 900;
  line-height: 1.02;
}

.service-name-ja {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 24px;
  color: #111827;
  font-size: clamp(18px, 1.5vw, 24px);
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
}

.service-card h3 + .service-logo {
  margin-top: -8px;
}

.service-card span {
  position: relative;
  z-index: 1;
  display: block;
  color: #3d3f45;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 800;
  line-height: 1.95;
}

.service-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
  color: #4f5563;
  font-size: 15px;
  line-height: 1.8;
}

.service-card strong::after {
  display: block;
  margin-top: 22px;
  color: var(--orange);
  content: "View more";
  font-size: 18px;
  font-weight: 900;
}

.featured-services .service-card {
  min-height: 560px;
}

.featured-services .service-card::before {
  height: clamp(210px, 18vw, 292px);
  margin-bottom: 40px;
}

.featured-services .service-card::after {
  top: clamp(232px, 20vw, 320px);
  width: 170px;
  height: 152px;
}

.featured-services .service-visual {
  width: min(78%, 330px);
  height: clamp(158px, 14vw, 220px);
}

.featured-services .service-card h3 {
  font-size: clamp(34px, 3.2vw, 50px);
}

.service-position-section {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgb(255 255 255 / 84%), rgb(246 252 255 / 72%));
}

.service-position-section > p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-position-section h3 {
  margin: 10px 0 0;
  color: #172235;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
}

.service-position-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.service-position-grid article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgb(7 25 232 / 10%);
  border-radius: 16px;
  background: #fff;
}

.service-position-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.service-position-grid strong {
  display: block;
  margin-top: 10px;
  color: #172235;
  font-size: 16px;
  line-height: 1.55;
}

.service-addon-section {
  margin-top: 36px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgb(255 255 255 / 72%);
}

.service-addon-section > p {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-addon-section h3 {
  margin: 10px 0 0;
  color: #172235;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.35;
}

.addon-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.addon-service-card {
  display: grid;
  gap: 10px;
  min-height: 116px;
  padding: 20px;
  border: 1px solid rgb(7 25 232 / 11%);
  border-radius: 16px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.addon-service-card:hover {
  border-color: rgb(7 25 232 / 26%);
  box-shadow: 0 18px 44px rgb(20 46 92 / 8%);
  transform: translateY(-3px);
}

.addon-service-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.addon-service-card strong {
  color: #172235;
  font-size: 16px;
  line-height: 1.55;
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.detail-page {
  padding-top: 92px;
  background:
    radial-gradient(circle at 92% 8%, rgb(40 170 188 / 14%), transparent 28%),
    linear-gradient(90deg, #fff 0%, #fff 48%, rgb(247 252 255 / 72%) 100%);
}

.detail-hero,
.detail-section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px clamp(24px, 5vw, 80px);
}

.detail-hero {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("/brand/furangry-mark.png") right -40px center / 420px auto no-repeat;
}

.service-detail-page .detail-hero {
  max-width: 1480px;
  min-height: 780px;
  padding-top: 118px;
  background: none;
}

.detail-hero-head {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.service-detail-page .detail-hero-head h1 {
  margin: 0;
  color: #0719e8;
  font-size: clamp(78px, 9vw, 150px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: 0;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  align-items: end;
  gap: clamp(48px, 6vw, 92px);
  width: 100%;
  max-width: 1180px;
  margin: 76px auto 0;
}

.detail-device-wrap {
  position: relative;
  min-height: 430px;
}

.detail-device-wrap::before {
  position: absolute;
  left: -80px;
  bottom: -30px;
  z-index: -1;
  width: 240px;
  height: 220px;
  content: "";
  background: rgb(40 170 188 / 10%);
  clip-path: polygon(0 18%, 100% 0, 72% 100%);
}

.detail-orb {
  position: absolute;
  right: 40px;
  top: -70px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 22%, #25d7e5 0%, #076cf3 54%, #0500d5 100%);
  filter: drop-shadow(0 28px 44px rgb(7 42 146 / 20%));
}

.detail-triangle {
  position: absolute;
  right: -20px;
  top: 86px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #18c5d6 0%, #073aee 60%, #0500d5 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(2deg);
}

.detail-device {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  min-height: 270px;
}

.device-top {
  height: 20px;
  border-radius: 18px 18px 0 0;
  background: #070711;
}

.device-screen {
  min-height: 244px;
  padding: 22px;
  border: 16px solid #070711;
  border-top-width: 8px;
  background: #fff;
  color: #fff;
}

.device-screen img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.device-screen > span {
  display: block;
  width: 58px;
  height: 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 80%);
}

.device-screen strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.1;
}

.device-screen p {
  margin: 14px 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: 13px;
  font-weight: 900;
}

.device-bars {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 10px;
  margin-top: 34px;
}

.device-bars i {
  height: 54px;
  border-radius: 10px;
  background: rgb(255 255 255 / 20%);
}

.device-base {
  width: 112%;
  height: 18px;
  margin-left: -6%;
  border-radius: 0 0 100% 100%;
  background: linear-gradient(90deg, #c6cad2, #fff, #9da3ad);
}

.detail-hero-copy {
  position: relative;
}

.detail-hero-copy::before {
  position: absolute;
  left: -72px;
  top: 114px;
  z-index: -1;
  width: 210px;
  height: 200px;
  content: "";
  background: rgb(40 170 188 / 9%);
  clip-path: polygon(0 18%, 100% 0, 72% 100%);
}

.detail-hero-copy h2 {
  margin: 0;
  color: #0719e8;
  font-size: clamp(48px, 5.4vw, 86px);
  font-weight: 900;
  line-height: 1;
}

.detail-hero-copy > strong {
  display: block;
  margin-top: 22px;
  color: #22252d;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.45;
}

.detail-hero-copy > span {
  display: block;
  margin-top: 28px;
  color: #3d3f45;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 800;
  line-height: 1.95;
}

.detail-hero p,
.case-card-head span,
.reason-list span {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.detail-hero h1 {
  max-width: 900px;
  margin: 26px 0 0;
  color: #151923;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.12;
}

.detail-hero > span,
.detail-lead {
  display: block;
  max-width: 760px;
  margin-top: 34px;
  color: #4a5566;
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.detail-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.tag-grid,
.support-grid,
.metric-grid,
.mini-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.tag-grid span,
.support-grid article,
.metric-grid article,
.mini-service-list a {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 76%);
}

.tag-grid span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  color: #172235;
  font-size: 16px;
  font-weight: 800;
}

.support-grid article {
  min-height: 150px;
  padding: 26px;
}

.support-grid b {
  color: var(--teal);
  font-size: 13px;
}

.support-grid p,
.flow-list p {
  margin: 18px 0 0;
  color: #263143;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
}

.reason-list {
  display: grid;
  gap: 20px;
  margin-top: 52px;
}

.reason-list article {
  display: grid;
  grid-template-columns: 180px minmax(220px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.reason-list h3 {
  margin: 0;
  color: #172235;
  font-size: 26px;
  line-height: 1.35;
}

.reason-list p,
.case-card dd {
  margin: 0;
  color: #596474;
  font-size: 15px;
  line-height: 1.9;
}

.metric-grid article {
  min-height: 120px;
  padding: 24px;
}

.metric-grid span,
.mini-service-list span,
.case-card-head p {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.metric-grid strong,
.mini-service-list strong {
  display: block;
  margin-top: 16px;
  color: #172235;
  font-size: 20px;
  line-height: 1.4;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(140deg, rgb(255 255 255 / 86%), rgb(246 252 255 / 76%));
}

.flow-list span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.mini-service-list a {
  min-height: 122px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mini-service-list a:hover {
  box-shadow: 0 20px 50px rgb(20 46 92 / 10%);
  transform: translateY(-3px);
}

.meo-page {
  background:
    radial-gradient(circle at 84% 10%, rgb(40 170 188 / 13%), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbff 46%, #fff 100%);
}

.meo-hero .detail-hero-head h1 {
  color: #0719e8;
  font-size: clamp(56px, 8.8vw, 128px);
}

.meo-about-grid,
.meo-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 46px;
  align-items: center;
  margin-top: 48px;
}

.meo-map-panel,
.meo-media-grid > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(140deg, #fff, rgb(246 252 255 / 88%));
  box-shadow: 0 24px 70px rgb(20 46 92 / 8%);
}

.meo-map-panel img,
.meo-media-grid img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.meo-map-panel dl {
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.meo-map-panel dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.meo-map-panel dt,
.meo-compare-grid span,
.meo-case-list span,
.meo-media-grid li span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.meo-map-panel dd {
  margin: 0;
  color: #303746;
  font-size: 15px;
  font-weight: 800;
}

.meo-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.meo-compare-grid article {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 18px 60px rgb(20 46 92 / 6%);
}

.meo-compare-grid p,
.meo-media-grid p {
  margin: 18px 0 0;
  color: #4a5566;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.9;
}

.meo-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 52px;
}

.meo-industry-grid span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid rgb(7 25 232 / 11%);
  border-radius: 18px;
  background: #fff;
  color: #172235;
  font-size: 16px;
  font-weight: 900;
}

.meo-case-list {
  display: grid;
  gap: 24px;
  margin-top: 52px;
}

.meo-case-list article {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 32px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgb(20 46 92 / 8%);
}

.meo-case-list h3 {
  margin: 16px 0 0;
  color: #172235;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
}

.meo-case-list strong {
  display: block;
  margin-top: 22px;
  color: #596474;
  font-size: 15px;
  line-height: 1.8;
}

.meo-case-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meo-case-list li {
  min-height: 116px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgb(7 25 232 / 8%), rgb(40 170 188 / 10%));
}

.meo-case-list b,
.meo-case-list em {
  display: block;
  font-style: normal;
}

.meo-case-list b {
  color: #0719e8;
  font-size: 18px;
  line-height: 1.35;
}

.meo-case-list em {
  margin-top: 12px;
  color: #596474;
  font-size: 13px;
  font-weight: 900;
}

.meo-media-grid > div img {
  width: min(270px, 100%);
  max-height: none;
}

.meo-media-grid ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meo-media-grid li {
  min-height: 118px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 82%);
}

.meo-media-grid li p {
  margin: 10px 0 0;
  color: #172235;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
}

.web-creation-page {
  background:
    radial-gradient(circle at 85% 12%, rgb(40 170 188 / 13%), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbff 45%, #fff 100%);
}

.web-creation-hero .detail-hero-head h1 {
  color: #0719e8;
  font-size: clamp(58px, 8vw, 126px);
}

.web-anchor-nav {
  position: sticky;
  top: 92px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 32px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 86%);
  box-shadow: 0 18px 60px rgb(20 46 92 / 8%);
  backdrop-filter: blur(16px);
}

.web-anchor-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #243044;
  font-size: 13px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.web-anchor-nav a:hover {
  background: #0719e8;
  color: #fff;
}

.web-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 48px;
  align-items: center;
  margin-top: 44px;
}

.web-about-section .section-title {
  display: block;
}

.web-about-section .section-title h2 {
  max-width: none;
  margin-top: 14px;
}

.web-about-grid .detail-lead {
  margin-top: 0;
}

.web-about-grid img {
  width: 100%;
  min-height: 260px;
  object-fit: contain;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgb(20 46 92 / 8%);
}

.web-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 56px;
}

.web-plan-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(26px, 3.2vw, 42px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgb(255 255 255 / 86%);
  box-shadow: 0 28px 80px rgb(20 46 92 / 9%);
}

.web-plan-card::before {
  position: absolute;
  right: -64px;
  top: -52px;
  width: 210px;
  height: 210px;
  content: "";
  background: linear-gradient(135deg, rgb(40 170 188 / 18%), rgb(7 25 232 / 12%));
  clip-path: polygon(52% 0, 100% 100%, 0 74%);
}

.web-plan-card > p,
.web-case-copy > span,
.web-strong-list span {
  margin: 0;
  color: #0719e8;
  font-size: 13px;
  font-weight: 900;
}

.web-plan-card img {
  display: block;
  width: 100%;
  height: 220px;
  margin-top: 24px;
  object-fit: contain;
}

.web-plan-card h3 {
  margin: 30px 0 0;
  color: #0719e8;
  font-size: clamp(30px, 3.2vw, 54px);
  font-weight: 900;
  line-height: 1.08;
}

.web-plan-card > span {
  display: block;
  margin-top: 22px;
  color: #303746;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.9;
}

.web-plan-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.web-plan-detail h4 {
  margin: 0;
  color: #172235;
  font-size: 15px;
}

.web-plan-detail ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.web-plan-detail li {
  position: relative;
  padding-left: 18px;
  color: #596474;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.web-plan-detail li + li {
  margin-top: 8px;
}

.web-plan-detail li::before {
  position: absolute;
  left: 0;
  top: .8em;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--teal);
}

.web-strong-section {
  max-width: none;
  margin: 20px 0 0;
  padding-right: clamp(24px, 7vw, 130px);
  padding-left: clamp(24px, 7vw, 130px);
  background: #eeeeef;
}

.web-strong-section .section-title,
.web-strong-list {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.web-strong-list {
  display: grid;
  gap: 20px;
  margin-top: 56px;
}

.web-strong-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: center;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
}

.web-strong-list h3 {
  margin: 14px 0 0;
  color: #080a12;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.35;
}

.web-strong-list p {
  max-width: 660px;
  margin: 20px 0 0;
  color: #303746;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.9;
}

.web-strong-list img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.web-case-list {
  display: grid;
  gap: 28px;
  margin-top: 56px;
}

.web-case-card {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgb(255 255 255 / 86%);
  box-shadow: 0 28px 80px rgb(20 46 92 / 8%);
}

.web-case-visual {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgb(7 25 232 / 96%), rgb(40 170 188 / 84%)),
    #0719e8;
}

.web-case-visual img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
}

.web-case-copy > p {
  margin: 12px 0 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.web-case-copy h3 {
  margin: 18px 0 0;
  color: #172235;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.25;
}

.web-case-copy dl {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.web-case-copy dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.web-case-copy dt {
  color: #0719e8;
  font-size: 13px;
  font-weight: 900;
}

.web-case-copy dd {
  margin: 0;
  color: #596474;
  font-size: 15px;
  line-height: 1.8;
}

.case-list {
  display: grid;
  gap: 22px;
  margin-top: 52px;
}

.case-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 24px 70px rgb(20 46 92 / 8%);
}

.case-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.case-card h3 {
  max-width: 840px;
  margin: 22px 0 0;
  color: #172235;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.25;
}

.case-card dl {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.case-card dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.case-card dt {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.media-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: 56px;
  padding-top: 72px;
}

.media-copy h2 {
  max-width: 720px;
  margin: 16px 0 0;
  color: #151923;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.16;
}

.media-copy span,
.contact-section > span {
  display: block;
  max-width: 680px;
  margin-top: 32px;
  color: #4a5566;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.media-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgb(255 255 255 / 92%), rgb(246 252 255 / 82%)),
    radial-gradient(circle at 100% 0%, rgb(40 170 188 / 18%), transparent 34%);
  box-shadow: 0 26px 80px rgb(20 46 92 / 10%);
}

.media-panel img {
  display: block;
  width: min(280px, 100%);
  height: auto;
}

.media-panel dl {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.media-panel dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.media-panel dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.media-panel dd {
  margin: 0;
  color: #303746;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.trust-section {
  padding-top: 72px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.trust-list article {
  padding: 30px;
  border-left: 3px solid var(--teal);
  background: linear-gradient(90deg, rgb(247 252 255 / 92%), rgb(255 255 255 / 0%));
}

.trust-list h3 {
  margin: 0;
  color: #172235;
  font-size: 22px;
  line-height: 1.35;
}

.trust-list p {
  margin: 18px 0 0;
  color: #596474;
  font-size: 15px;
  line-height: 1.9;
}

.expertise-section {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  padding: 116px clamp(24px, 7vw, 130px);
  background: #eeeeef;
}

.expertise-section .section-title {
  max-width: 1180px;
  margin: 0 auto;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 78px);
  max-width: 1380px;
  margin: 74px auto 0;
}

.expertise-list article {
  min-width: 0;
}

.expertise-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-visual svg {
  width: min(100%, 320px);
  height: auto;
  overflow: visible;
}

.expertise-visual .slash {
  fill: #fff;
}

.expertise-visual .line {
  fill: none;
  stroke: #050617;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expertise-visual .fill-dark {
  fill: #050617;
}

.expertise-visual .fill-teal {
  fill: var(--teal);
}

.expertise-visual .fill-white {
  fill: #fff;
}

.expertise-visual .white-line {
  fill: none;
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expertise-list h3 {
  min-height: 74px;
  margin: 48px 0 0;
  color: #080a12;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.expertise-list p {
  margin: 28px 0 0;
  color: #111827;
  font-size: clamp(16px, 1.45vw, 24px);
  font-weight: 800;
  line-height: 2;
}

.recruit-teaser-section {
  overflow: hidden;
}

.recruit-teaser-section::before {
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  bottom: 46px;
  z-index: -1;
  width: clamp(180px, 24vw, 340px);
  height: clamp(170px, 22vw, 300px);
  content: "";
  background: rgb(7 25 232 / 6%);
  clip-path: polygon(0 18%, 100% 0, 72% 100%);
}

.recruit-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  margin-top: 52px;
}

.recruit-teaser-grid > div,
.recruit-teaser-grid dl {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgb(255 255 255 / 78%);
  box-shadow: 0 24px 70px rgb(20 46 92 / 8%);
}

.recruit-teaser-grid span,
.recruit-summary-grid span,
.recruit-two-column span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.recruit-teaser-grid h3 {
  margin: 16px 0 0;
  color: #0719e8;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.22;
}

.recruit-teaser-grid p {
  margin: 24px 0 0;
  color: #4a5566;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}

.recruit-teaser-grid dl div,
.recruit-condition-section dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.recruit-teaser-grid dl div:last-child,
.recruit-condition-section dl div:last-child {
  border-bottom: 0;
}

.recruit-teaser-grid dt,
.recruit-condition-section dt {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.recruit-teaser-grid dd,
.recruit-condition-section dd {
  margin: 0;
  color: #202838;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.65;
}

.company-section dl {
  margin: 54px 0 0;
  border-top: 1px solid var(--line);
}

.company-section dl div,
.news-section li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.company-section dt,
.news-section time,
.news-section li span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.company-section dd {
  margin: 0;
  color: #303746;
  font-size: 18px;
  line-height: 1.8;
}

.company-page {
  min-height: calc(100vh - 172px);
  padding-top: 112px;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 94%), rgb(247 252 255 / 86%)),
    url("/brand/furangry-mark.png") right -160px top 128px / 520px auto no-repeat;
}

.company-page .company-section {
  padding-top: 96px;
}

.company-back-link {
  display: inline-flex;
  margin-top: 42px;
}

.recruit-page .recruit-hero {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 92%), rgb(247 252 255 / 78%)),
    url("/brand/furangry-mark.png") right -36px center / 430px auto no-repeat;
}

.recruit-page .recruit-hero h1 {
  max-width: 980px;
  overflow-wrap: anywhere;
}

.recruit-page h2,
.recruit-page h3,
.recruit-page strong,
.recruit-page p,
.recruit-page li,
.recruit-page dd {
  overflow-wrap: anywhere;
}

.recruit-summary-grid,
.recruit-two-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.recruit-summary-grid article,
.recruit-two-column article {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgb(255 255 255 / 78%);
}

.recruit-summary-grid strong {
  display: block;
  margin-top: 18px;
  color: #0719e8;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.25;
}

.recruit-summary-grid p,
.recruit-note {
  margin: 18px 0 0;
  color: #4a5566;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

.recruit-list-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recruit-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.recruit-two-column h3 {
  margin: 14px 0 0;
  color: #172235;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.35;
}

.recruit-two-column ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.recruit-two-column li {
  position: relative;
  padding-left: 20px;
  color: #4a5566;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
}

.recruit-two-column li::before {
  position: absolute;
  top: .74em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--teal);
}

.recruit-mindset-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recruit-condition-section dl {
  margin: 52px 0 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgb(255 255 255 / 78%);
}

.news-section ul {
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.news-section li {
  grid-template-columns: 132px 132px 1fr;
}

.news-section a {
  color: #303746;
  line-height: 1.7;
}

.contact-section {
  margin-bottom: 80px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgb(255 255 255 / 91%), rgb(255 255 255 / 72%)),
    url("/brand/furangry-mark.png") right -150px center / 400px auto no-repeat;
  box-shadow: 0 30px 90px rgb(20 46 92 / 10%);
}

.contact-section h2 {
  max-width: 780px;
}

.company-profile-link {
  margin-left: 10px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label > span {
  color: #273142;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e0eb;
  border-radius: 14px;
  background: rgb(255 255 255 / 88%);
  color: #172235;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 126px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgb(7 25 232 / 56%);
  box-shadow: 0 0 0 4px rgb(7 25 232 / 9%);
}

.contact-form-wide,
.contact-form-actions {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.contact-form button:disabled {
  opacity: .62;
  cursor: wait;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.6em;
  margin: 0;
  color: #596474;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}

.form-status[data-state="success"] {
  color: #0f8b69;
}

.form-status[data-state="error"] {
  color: #cc3d1f;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer img {
  width: 216px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: #566273;
  font-size: 13px;
  font-weight: 800;
}

.site-footer small {
  color: #7d8795;
  font-size: 12px;
  font-weight: 700;
}

@keyframes exact-mark-breathe {
  0%, 100% { opacity: .045; transform: translate3d(0, 0, 0) scale(.94) rotate(-1deg); }
  44% { opacity: .08; transform: translate3d(-26px, 18px, 0) scale(1.04) rotate(1.4deg); }
  72% { opacity: .06; transform: translate3d(18px, 38px, 0) scale(.98) rotate(-2deg); }
}

@keyframes glow-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.94); opacity: .36; }
  42% { transform: translate3d(-46px, 36px, 0) scale(1.08); opacity: .58; }
  76% { transform: translate3d(-18px, 70px, 0) scale(.98); opacity: .44; }
}

@keyframes random-shape-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -760px, 0) rotate(var(--shape-rotate, 0deg));
  }
  10% {
    opacity: .68;
  }
  48% {
    transform: translate3d(var(--fall-mid-x, 0), 0, 0) rotate(calc(var(--shape-rotate, 0deg) + 6deg));
  }
  88% {
    opacity: .68;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--fall-x, 0), 780px, 0) rotate(calc(var(--shape-rotate, 0deg) - 4deg));
  }
}

@keyframes float-piece {
  0%, 100% { transform: rotate(20deg) translate3d(0, 0, 0) scale(1); }
  38% { transform: rotate(42deg) translate3d(-30px, 34px, 0) scale(.9); }
  72% { transform: rotate(8deg) translate3d(18px, -18px, 0) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-morph,
  .brand-morph::before,
  .brand-morph::after,
  .flow-shape {
    animation: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    min-height: 118px;
    padding: 14px 20px;
    gap: 12px;
  }

  .site-logo img {
    width: 184px;
  }

  .header-contact {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    max-width: calc(100vw - 40px);
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    font-size: 13px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .menu-button {
    display: none;
  }

  .menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .hero-section {
    min-height: 0;
    padding-top: 118px;
  }

  .motion-backdrop {
    inset: 118px 0 auto;
    height: 56vh;
  }

  .motion-backdrop::after {
    background: linear-gradient(90deg, #fff 0%, rgb(255 255 255 / 94%) 52%, rgb(255 255 255 / 28%) 78%, transparent 100%);
  }

  .brand-morph {
    top: 18px;
    right: -342px;
    width: 680px;
    height: 660px;
    opacity: .24;
  }

  .brand-morph::before {
    top: 86px;
    right: 122px;
    left: auto;
    width: 360px;
    height: 288px;
    opacity: .08;
  }

  .flow-belt {
    top: -500px;
    right: 220px;
    width: 620px;
    height: 1120px;
  }

  .flow-belt-secondary {
    right: 320px;
  }

  .hero-grid {
    display: block;
    min-height: 0;
    padding: 72px 20px 64px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11.6vw, 54px);
    line-height: 1.32;
  }

  .hero-lead {
    margin-top: 30px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .primary-link,
  .secondary-link {
    min-width: 148px;
    height: 48px;
    font-size: 13px;
  }

  .hero-card {
    margin: 56px 0 0;
    padding: 24px;
    border-radius: 18px;
  }

  .about-section,
  .philosophy-section,
  .service-section,
  .company-section,
  .media-section,
  .trust-section,
  .recruit-teaser-section,
  .news-section,
  .contact-section {
    padding: 72px 20px;
  }

  .section-title {
    display: block;
  }

  .section-title h2,
  .contact-section h2 {
    margin-top: 10px;
    font-size: 34px;
  }

  .about-section > p {
    margin-top: 30px;
    font-size: 15px;
  }

  .focus-grid,
  .service-list,
  .featured-services,
  .service-position-grid,
  .addon-service-grid,
  .meo-about-grid,
  .meo-media-grid,
  .meo-compare-grid,
  .meo-industry-grid,
  .meo-case-list article,
  .meo-case-list ul,
  .media-section,
  .trust-list,
  .expertise-list,
  .recruit-teaser-grid,
  .recruit-summary-grid,
  .recruit-list-grid,
  .recruit-two-column,
  .recruit-mindset-grid,
  .tag-grid,
  .support-grid,
  .metric-grid,
  .mini-service-list,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .focus-grid {
    margin-top: 34px;
  }

  .service-list {
    gap: 52px;
    margin-top: 36px;
  }

  .service-card {
    min-height: 0;
    padding: 0;
  }

  .service-card::before {
    height: 210px;
    margin-bottom: 32px;
  }

  .service-card::after {
    top: 236px;
    left: -24px;
    width: 150px;
    height: 138px;
  }

  .service-card h3 {
    font-size: 38px;
  }

  .service-name-ja {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .service-card span {
    font-size: 15px;
  }

  .service-addon-section {
    margin-top: 30px;
    padding: 22px;
    border-radius: 20px;
  }

  .addon-service-grid {
    gap: 10px;
  }

  .addon-service-card {
    min-height: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .company-profile-link {
    margin-left: 0;
  }

  .detail-page {
    padding-top: 118px;
  }

  .detail-hero,
  .detail-section {
    padding: 64px 20px;
  }

  .detail-hero {
    min-height: 0;
    background: url("/brand/furangry-mark.png") right -190px top 34px / 300px auto no-repeat;
  }

  .service-detail-page .detail-hero {
    min-height: 0;
    padding-top: 64px;
    background: none;
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 44px;
  }

  .service-detail-page .detail-hero-head h1 {
    font-size: 72px;
  }

  .detail-device-wrap {
    min-height: 280px;
    overflow: hidden;
  }

  .detail-device {
    bottom: 12px;
  }

  .device-base {
    width: 100%;
    margin-left: 0;
  }

  .device-screen {
    min-height: 166px;
    padding: 16px;
    border-width: 10px;
    border-top-width: 6px;
  }

  .device-screen img {
    height: 150px;
  }

  .device-screen strong {
    font-size: 28px;
  }

  .device-bars {
    margin-top: 22px;
  }

  .detail-orb {
    right: 18px;
    top: -40px;
    width: 70px;
    height: 70px;
  }

  .detail-triangle {
    right: -14px;
    top: 72px;
    width: 100px;
    height: 100px;
  }

  .detail-hero-copy h2 {
    font-size: 42px;
  }

  .meo-hero .detail-hero-head h1 {
    font-size: 56px;
  }

  .meo-about-grid,
  .meo-media-grid,
  .meo-compare-grid,
  .meo-industry-grid,
  .meo-case-list {
    margin-top: 34px;
  }

  .meo-map-panel,
  .meo-media-grid > div,
  .meo-case-list article {
    padding: 24px;
    border-radius: 20px;
  }

  .meo-case-list h3 {
    font-size: 28px;
  }

  .meo-media-grid li p {
    font-size: 17px;
  }

  .detail-hero-copy::before {
    left: -28px;
    top: 70px;
    width: 150px;
    height: 140px;
  }

  .detail-hero h1 {
    font-size: 40px;
  }

  .detail-hero > span,
  .detail-lead {
    font-size: 15px;
  }

  .tag-grid,
  .support-grid,
  .metric-grid,
  .mini-service-list,
  .flow-list,
  .reason-list,
  .case-list {
    margin-top: 34px;
  }

  .web-anchor-nav {
    top: 118px;
    margin: 18px 20px 0;
    border-radius: 20px;
  }

  .web-anchor-nav a {
    flex: 1 1 auto;
    min-width: 94px;
  }

  .web-about-grid,
  .web-plan-grid,
  .web-plan-detail,
  .web-strong-list article,
  .web-case-card,
  .web-case-copy dl div {
    grid-template-columns: 1fr;
  }

  .web-about-grid,
  .web-plan-grid,
  .web-strong-list,
  .web-case-list {
    margin-top: 34px;
  }

  .web-plan-card {
    min-height: 0;
    padding: 24px;
    border-radius: 20px;
  }

  .web-plan-card img,
  .web-strong-list img,
  .web-case-visual img {
    height: 170px;
  }

  .web-plan-card h3 {
    font-size: 34px;
  }

  .web-strong-section {
    padding: 64px 20px;
  }

  .web-strong-list article,
  .web-case-card {
    gap: 24px;
    padding: 24px;
    border-radius: 20px;
  }

  .web-case-visual {
    min-height: 220px;
    padding: 18px;
  }

  .reason-list article,
  .case-card dl div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reason-list h3 {
    font-size: 22px;
  }

  .case-card {
    padding: 26px;
  }

  .case-card-head {
    display: block;
  }

  .case-card-head p {
    margin-top: 10px;
  }

  .media-section {
    gap: 28px;
    padding-top: 48px;
  }

  .media-copy h2 {
    font-size: 36px;
  }

  .media-panel {
    padding: 26px;
  }

  .trust-section {
    padding-top: 48px;
  }

  .trust-list {
    margin-top: 34px;
  }

  .trust-list article {
    padding: 26px;
  }

  .expertise-section {
    padding: 72px 20px;
  }

  .expertise-list {
    gap: 52px;
    margin-top: 44px;
  }

  .expertise-visual {
    height: 190px;
  }

  .expertise-visual svg {
    width: min(100%, 300px);
  }

  .expertise-list h3 {
    min-height: 0;
    margin-top: 28px;
    font-size: 26px;
  }

  .expertise-list p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.9;
  }

  .recruit-teaser-section {
    padding: 72px 20px;
  }

  .recruit-teaser-grid {
    margin-top: 34px;
  }

  .recruit-teaser-grid > div,
  .recruit-teaser-grid dl,
  .recruit-summary-grid article,
  .recruit-two-column article,
  .recruit-condition-section dl {
    padding: 24px;
    border-radius: 20px;
  }

  .recruit-teaser-grid dl div,
  .recruit-condition-section dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .recruit-summary-grid,
  .recruit-two-column,
  .recruit-condition-section dl {
    margin-top: 34px;
  }

  .recruit-page .recruit-hero {
    background:
      linear-gradient(90deg, rgb(255 255 255 / 96%), rgb(247 252 255 / 88%)),
      url("/brand/furangry-mark.png") right -170px top 96px / 320px auto no-repeat;
  }

  .recruit-page .recruit-hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.6vw, 34px);
    line-height: 1.22;
  }

  .recruit-page .section-title h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .recruit-list-grid {
    gap: 14px;
  }

  .company-section dl div,
  .news-section li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .news-section li {
    gap: 8px;
  }

  .company-page {
    min-height: auto;
    padding-top: 124px;
    background:
      linear-gradient(90deg, rgb(255 255 255 / 95%), rgb(247 252 255 / 84%)),
      url("/brand/furangry-mark.png") right -240px top 96px / 360px auto no-repeat;
  }

  .company-page .company-section {
    padding-top: 64px;
  }

  .contact-section {
    margin: 0 20px 48px;
    min-height: 430px;
    background:
      linear-gradient(140deg, rgb(255 255 255 / 98%) 0%, rgb(255 255 255 / 96%) 58%, rgb(255 255 255 / 78%) 100%),
      url("/brand/furangry-mark.png") right -230px bottom -116px / 310px auto no-repeat;
  }

  .company-profile-link {
    margin: 12px 0 0;
  }

  .site-footer {
    display: block;
    padding: 28px 20px;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .site-footer small {
    display: block;
    margin-top: 18px;
  }
}

.mouse-stalker {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 180ms ease;
}

.mouse-stalker.is-visible {
  opacity: 1;
}

.mouse-stalker__halo,
.mouse-stalker__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 999px;
  will-change: transform, width, height, opacity;
}

.mouse-stalker__halo {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(7 58 134 / 36%);
  background:
    radial-gradient(circle at 32% 28%, rgb(40 170 188 / 20%), transparent 42%),
    rgb(255 255 255 / 34%);
  box-shadow:
    0 18px 40px rgb(7 58 134 / 12%),
    inset 0 0 0 1px rgb(255 255 255 / 58%);
  transition:
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.mouse-stalker__dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--teal), var(--blue) 72%);
  box-shadow: 0 0 22px rgb(40 170 188 / 42%);
  transition:
    width 160ms ease,
    height 160ms ease,
    background 160ms ease,
    opacity 160ms ease;
}

.mouse-stalker.is-active .mouse-stalker__halo {
  width: 74px;
  height: 74px;
  border-color: rgb(40 170 188 / 42%);
  background:
    radial-gradient(circle at 34% 30%, rgb(40 170 188 / 25%), transparent 44%),
    radial-gradient(circle at 66% 70%, rgb(214 164 71 / 16%), transparent 42%),
    rgb(255 255 255 / 28%);
}

.mouse-stalker.is-active .mouse-stalker__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
}

.mouse-stalker.is-pressing .mouse-stalker__halo {
  width: 34px;
  height: 34px;
  opacity: .74;
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .mouse-stalker {
    display: none;
  }
}
