:root {
  --navy: #00162f;
  --navy2: #001f48;
  --blue: #0857ff;
  --ink: #061224;
  --muted: #5c6674;
  --line: #dfe5eb;
  --bg: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.8;
}

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

.container {
  width: min(var(--max), calc(100% - 80px));
  margin: auto;
}

/* HEADER */

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(36px, calc((100vw - var(--max)) / 2));
  position: absolute;
  z-index: 20;
  width: 100%;
  top: 0;
  left: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.04em;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 45px;
  display: inline-block;
}

.brand-mark:before,
.brand-mark i,
.brand-mark b {
  content: "";
  position: absolute;
  top: 3px;
  width: 10px;
  height: 36px;
  transform: skew(-27deg);
  border-radius: 2px;
}

.brand-mark:before {
  left: 7px;
  background: linear-gradient(180deg, #5ea6ff, #072b5b);
}

.brand-mark i {
  left: 15px;
  background: linear-gradient(180deg, #dcecff, #2c72c9);
  height: 26px;
  top: 14px;
}

.brand-mark b {
  left: 21px;
  background: linear-gradient(180deg, #073b87, #001a3c);
}

.nav {
  display: flex;
  gap: 42px;
  align-items: center;
}

.nav a {
  font: 600 12px/1 Inter, sans-serif;
  padding: 38px 0 12px;
  position: relative;
}

.nav a.active:after,
.nav a:hover:after {
  content: "";
  height: 2px;
  background: var(--blue);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
}

.menu-button {
  display: none;
}

/* HERO */

.hero {
  height: 610px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #ffffff 0%, #ffffff 52%, #f8fbff 100%);
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-top: 176px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  margin: 0 0 15px;
  font-weight: 700;
}

.hero-en {
  font: 600 16px/1.5 Inter, sans-serif;
  color: #0753dd;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
}

.accent-line {
  display: block;
  width: 31px;
  height: 2px;
  background: #0c5bff;
  margin-bottom: 18px;
}

.hero-lead {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-width: 205px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: #061527;
  color: #ffffff;
}

.hero-art {
  position: absolute;
  inset: 0 0 0 47%;
  overflow: hidden;
}

.mesh {
  position: absolute;
  filter: blur(0.2px);
  opacity: 0.52;
  background: linear-gradient(
    130deg,
    transparent 0 48%,
    #dfeafd 49% 51%,
    transparent 52%
  );
}

.mesh-a {
  width: 540px;
  height: 540px;
  right: 0;
  top: 0;
  transform: rotate(14deg);
}

.mesh-b {
  width: 420px;
  height: 400px;
  left: 30px;
  top: 155px;
  transform: rotate(-20deg);
}

.mesh-c {
  width: 600px;
  height: 300px;
  right: -120px;
  bottom: -20px;
  transform: rotate(22deg);
}

.tower {
  position: absolute;
  bottom: 45px;
  transform-origin: bottom;
  clip-path: polygon(
    50% 0,
    100% 100%,
    63% 100%,
    50% 39%,
    32% 100%,
    0 100%
  );
}

.tower-left {
  width: 245px;
  height: 390px;
  left: 150px;
  background: linear-gradient(
    112deg,
    #061e4d,
    #0c49c6 48%,
    #cbdcf5 51%,
    #f8fbff
  );
}

.tower-right {
  width: 208px;
  height: 310px;
  left: 292px;
  background: linear-gradient(
    98deg,
    #e9f1fb,
    #f9fbfe 48%,
    #9cbbe8 51%,
    #eef5ff
  );
  opacity: 0.94;
}

.tower-base {
  position: absolute;
  width: 500px;
  height: 92px;
  left: 65px;
  bottom: 4px;
  background: linear-gradient(180deg, #f8fbff, #d4e0f1);
  clip-path: polygon(16% 0, 85% 0, 100% 100%, 0 100%);
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #17468a;
  box-shadow: 0 0 0 4px #eef4fc;
}

.n1 {
  right: 52px;
  top: 50px;
}

.n2 {
  left: 72px;
  top: 390px;
}

.n3 {
  right: 110px;
  bottom: 90px;
}

.wire {
  position: absolute;
  height: 1px;
  background: #8ab0e4;
  transform-origin: left;
}

.w1 {
  width: 210px;
  right: -16px;
  top: 54px;
  transform: rotate(-18deg);
}

.w2 {
  width: 270px;
  left: 75px;
  top: 395px;
  transform: rotate(14deg);
}

.w3 {
  width: 330px;
  right: -60px;
  bottom: 96px;
  transform: rotate(27deg);
}

/* SUPPORT */

.support {
  background: linear-gradient(100deg, #001326, #001a37 48%, #001329);
  color: #ffffff;
  padding: 28px 0 36px;
}

.section-kicker {
  text-align: center;
  color: #0d59e7;
  font: 600 13px/1.3 Inter, sans-serif;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.section-kicker.light {
  color: #1f6fff;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.section-kicker.light span,
.section-kicker.align-left span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #2c73ff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
}

.support-grid article {
  text-align: center;
  padding: 8px 28px;
  position: relative;
}

.support-grid article + article:before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.support-grid h3 {
  font-size: 16px;
  margin: 15px 0 10px;
}

.support-grid p {
  font-size: 11px;
  line-height: 1.9;
  color: #eef4ff;
  margin: 0;
}

.line-icon {
  height: 42px;
  color: #1165ff;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5px;
}

.chart i {
  width: 6px;
  border: 2px solid #1165ff;
  border-top: 0;
}

.chart i:nth-child(1) {
  height: 12px;
}

.chart i:nth-child(2) {
  height: 20px;
}

.chart i:nth-child(3) {
  height: 29px;
}

.chart b {
  position: absolute;
  width: 33px;
  height: 2px;
  background: #1165ff;
  transform: translate(8px, -28px) rotate(-35deg);
}

.megaphone i {
  width: 30px;
  height: 25px;
  border: 2px solid #1165ff;
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 72%);
}

.megaphone b {
  width: 4px;
  height: 16px;
  border: 2px solid #1165ff;
  transform: rotate(-12deg);
}

.people i {
  width: 17px;
  height: 17px;
  border: 2px solid #1165ff;
  border-radius: 50%;
  position: relative;
}

.people i:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 14px;
  border: 2px solid #1165ff;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  left: -3px;
  top: 17px;
}

.gear {
  font-size: 44px;
  line-height: 1;
}

/* INDUSTRIES */

.industries {
  padding: 30px 0 48px;
  text-align: center;
}

.industries h2,
.about h2,
.company h2 {
  font-size: 27px;
  letter-spacing: 0.06em;
  margin: 3px 0 6px;
}

.section-lead {
  font-size: 12px;
  margin: 0 0 25px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 17px;
  text-align: left;
}

.industry-card {
  border: 1px solid #e1e6ed;
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(11, 33, 70, 0.04);
  overflow: hidden;
}

.card-image {
  height: 138px;
  position: relative;
  overflow: hidden;
  background: #dbe7f5;
}

.card-body {
  padding: 24px 18px 18px;
  position: relative;
}

.card-body h3 {
  font-size: 16px;
  margin: 0 0 7px;
}

.card-body p {
  font-size: 10px;
  line-height: 1.75;
  color: #374250;
  margin: 0;
}

.mini-icon {
  position: absolute;
  left: 19px;
  top: -28px;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 27px;
  text-shadow: 0 1px 3px #000000;
  display: flex;
  align-items: center;
}

.realestate {
  background: linear-gradient(#b7d0e9, #e6eef6);
}

.building-art {
  position: absolute;
  left: 34px;
  bottom: -3px;
  width: 110px;
  height: 105px;
  background: linear-gradient(90deg, #72889d, #d5dee6 65%, #8197ab);
  clip-path: polygon(13% 10%, 70% 0, 100% 15%, 100% 100%, 0 100%, 0 27%);
}

.building-art:after {
  content: "";
  position: absolute;
  inset: 18px;
  background:
    repeating-linear-gradient(
      90deg,
      #7d94a8 0 8px,
      #dfe7ed 8px 15px
    ),
    repeating-linear-gradient(
      #7d94a8 0 8px,
      #dfe7ed 8px 15px
    );
  opacity: 0.7;
}

.staffing {
  background: linear-gradient(#d6e0ec, #7c8c9f);
}

.staffing span {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 76px;
  background: #152235;
  margin: 46px 9px 0;
  border-radius: 9px 9px 0 0;
  opacity: 0.77;
}

.staffing span:nth-child(1) {
  margin-left: 38px;
  height: 65px;
}

.staffing span:nth-child(2) {
  height: 82px;
}

.staffing span:nth-child(3) {
  height: 72px;
}

.staffing span:nth-child(4) {
  height: 88px;
}

.advertising {
  background: linear-gradient(110deg, #202e40, #102747);
}

.screen {
  position: absolute;
  width: 52px;
  height: 90px;
  bottom: 20px;
  transform: skewY(-5deg);
  box-shadow: 0 0 14px rgba(0, 110, 255, 0.65);
}

.s1 {
  left: 28px;
  background: linear-gradient(#0e62ff, #173652);
}

.s2 {
  left: 87px;
  background: linear-gradient(#1e7dff, #0a2a64);
}

.s3 {
  left: 145px;
  background: linear-gradient(#2ca6ff, #0e3562);
}

.painting {
  background: linear-gradient(#dce7f0, #a0b3c4);
}

.house-art {
  position: absolute;
  left: 28px;
  right: 20px;
  bottom: 0;
  height: 110px;
  background: linear-gradient(90deg, #45515e, #1b2836);
  clip-path: polygon(0 26%, 70% 0, 100% 17%, 100% 100%, 0 100%);
}

.house-art:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 33px;
  width: 34px;
  height: 48px;
  background: #c5d5e2;
  box-shadow:
    48px -12px 0 #c5d5e2,
    92px -22px 0 #c5d5e2;
}

.cars {
  background: radial-gradient(circle at 70% 26%, #ffffff, #b9c4d0 42%, #5e6b7b);
}

.car-art {
  position: absolute;
  left: 25px;
  right: 18px;
  bottom: 15px;
  height: 70px;
  background: linear-gradient(#111924, #5f6c78);
  border-radius: 55% 45% 20% 18% / 60% 50% 30% 30%;
  box-shadow: inset 0 -13px 0 #171e26;
}

.car-art:before {
  content: "";
  position: absolute;
  left: 23px;
  top: -22px;
  width: 108px;
  height: 42px;
  background: #273748;
  clip-path: polygon(22% 100%, 40% 0, 81% 0, 100% 100%);
}

.car-art:after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: -8px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #121923;
  box-shadow: 94px 0 0 #121923;
}

/* ABOUT */

.about {
  padding: 30px 0 48px;
  background: linear-gradient(90deg, #f8fafc, #ffffff);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.section-kicker.align-left {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about p,
.company p {
  font-size: 12px;
  line-height: 2;
  color: #374250;
}

.button-outline {
  margin-top: 17px;
  border: 1px solid #25344a;
  color: #0c1624;
  background: #ffffff;
}

.city-visual {
  height: 290px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(#dcecff, #96c6ef 60%, #5992c4);
  isolation: isolate;
}

.city-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0 51%,
      rgba(255, 255, 255, 0.55) 52% 54%,
      transparent 55%
    ),
    linear-gradient(
      35deg,
      transparent 0 64%,
      rgba(255, 255, 255, 0.35) 65% 66%,
      transparent 67%
    );
}

.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 128px;
  background: repeating-linear-gradient(
    90deg,
    #3f75a2 0 17px,
    #93bfdf 17px 27px,
    #2a6597 27px 43px,
    #d2e8f8 43px 51px
  );
  clip-path: polygon(
    0 49%,
    7% 45%,
    10% 15%,
    14% 54%,
    17% 42%,
    20% 70%,
    23% 48%,
    27% 39%,
    31% 63%,
    35% 28%,
    39% 48%,
    43% 13%,
    47% 58%,
    51% 22%,
    55% 46%,
    60% 14%,
    63% 55%,
    68% 33%,
    72% 61%,
    77% 19%,
    82% 51%,
    87% 29%,
    91% 57%,
    96% 11%,
    100% 38%,
    100% 100%,
    0 100%
  );
}

.big-v {
  position: absolute;
  right: 145px;
  top: 22px;
  font: bold 220px/1 Inter, sans-serif;
  color: rgba(255, 255, 255, 0.45);
  z-index: -1;
}

.network {
  position: absolute;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  transform-origin: left;
}

.nw1 {
  width: 280px;
  left: 40px;
  top: 90px;
  transform: rotate(12deg);
}

.nw2 {
  width: 320px;
  left: 125px;
  top: 200px;
  transform: rotate(-18deg);
}

.nw3 {
  width: 230px;
  right: 10px;
  top: 120px;
  transform: rotate(25deg);
}

/* COMPANY */

.company {
  background: linear-gradient(110deg, #00152d, #002349);
  color: #ffffff;
  padding: 62px 0;
}

.company-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.company .section-kicker {
  color: #65a0ff;
}

.company p {
  color: #dce7f5;
}

.company dl {
  margin: 0;
}

.company dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 0;
  font-size: 12px;
}

.company dl div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.company dt {
  color: #8fb2de;
}

.company dd {
  margin: 0;
}

/* CONTACT */

.contact-cta {
  background: linear-gradient(100deg, #00112a, #001c44);
  color: #ffffff;
  padding: 34px 0;
}

.contact-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-cta h2 {
  font-size: 22px;
  letter-spacing: 0.08em;
  margin: 0;
}

.button-light-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  min-width: 285px;
}

/* FOOTER */

footer {
  background: #001126;
  color: #ffffff;
  padding: 24px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}

.brand-footer {
  font-size: 20px;
}

.brand-footer .brand-mark {
  transform: scale(0.8);
  transform-origin: left center;
}

.footer-inner nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-inner nav a {
  font: 500 10px Inter, sans-serif;
}

.footer-inner p {
  text-align: right;
  font: 400 10px Inter, sans-serif;
  color: #c4cfdb;
}

/* TABLET */

@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, var(--max));
  }

  .site-header {
    height: 72px;
    padding: 0 18px;
    position: fixed;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0, 20, 50, 0.06);
  }

  .brand {
    font-size: 20px;
  }

  .menu-button {
    display: block;
    border: 0;
    background: transparent;
    width: 38px;
    height: 38px;
    position: relative;
    z-index: 31;
  }

  .menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0b1b30;
    position: absolute;
    left: 7px;
  }

  .menu-button span:first-child {
    top: 13px;
  }

  .menu-button span:last-child {
    top: 23px;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 95px 28px 28px;
    transform: translateY(-120%);
    transition: 0.3s;
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav a {
    width: 100%;
    padding: 16px 0;
    font-size: 13px;
    border-bottom: 1px solid #e8edf3;
  }

  .hero {
    height: auto;
    min-height: 760px;
    padding-bottom: 270px;
  }

  .hero-copy {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-art {
    left: 20%;
    top: 330px;
    height: 440px;
  }

  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .company-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-cta .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-inner p {
    text-align: left;
  }
}

/* SMARTPHONE */

@media (max-width: 560px) {
  .hero h1 {
    font-size: 31px;
  }

  .hero {
    min-height: 700px;
    padding-bottom: 240px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industries h2,
  .about h2,
  .company h2 {
    font-size: 23px;
  }

  .company dl div {
    grid-template-columns: 105px 1fr;
  }

  .button-light-outline {
    min-width: 100%;
    width: 100%;
  }
}
/* ==================================================
ABOUT / SERVICE PAGE FIX
================================================== */

.page-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}


/* 下層ページ共通ヒーロー */

.sub-hero {
  position: relative;
  min-height: 420px;
  padding-top: 155px;
  overflow: hidden;
  background:
    linear-gradient(
      115deg,
      #ffffff 0%,
      #ffffff 58%,
      #edf4ff 100%
    );
}

.sub-hero .container {
  position: relative;
  z-index: 5;
}

.sub-label {
  margin: 0 0 8px;
  color: #0758e7;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.sub-hero h1 {
  margin: 0 0 15px;
  font-size: 44px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.sub-description {
  margin: 0;
  font-size: 14px;
  color: #4f5c69;
}

.sub-hero-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
}

.sub-shape {
  position: absolute;
  background:
    linear-gradient(
      145deg,
      rgba(2, 55, 130, 0.04),
      rgba(32, 110, 255, 0.18)
    );
}

.shape-1 {
  width: 370px;
  height: 370px;
  right: 70px;
  top: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 72%);
  transform: rotate(16deg);
}

.shape-2 {
  width: 300px;
  height: 320px;
  right: -40px;
  top: 90px;
  clip-path: polygon(50% 0, 100% 100%, 0 72%);
  transform: rotate(-18deg);
}

.shape-3 {
  width: 250px;
  height: 270px;
  right: 250px;
  top: 130px;
  clip-path: polygon(50% 0, 100% 100%, 0 72%);
  transform: rotate(38deg);
}


/* ==================================================
ABOUT
================================================== */

.about-message {
  padding: 100px 0;
}

.about-message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-image {
  position: relative;
  height: 480px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      #dce8f5,
      #7195b8
    );
}

.about-building {
  position: absolute;
  left: 15%;
  bottom: -20%;
  width: 70%;
  height: 125%;
  transform: rotate(-7deg);
  background:
    linear-gradient(
      110deg,
      #122943,
      #6f8da9,
      #dce5ed
    );
}

.about-building-glass {
  position: absolute;
  inset: 20px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(12, 37, 61, .95) 0 42px,
      rgba(176, 205, 231, .65) 42px 46px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 52px,
      rgba(255,255,255,.45) 52px 56px
    );
}

.about-message-text h2 {
  margin: 14px 0 25px;
  font-size: 34px;
  line-height: 1.6;
}

.about-message-text > p {
  margin: 0 0 18px;
  color: #4e5a68;
  font-size: 14px;
  line-height: 2.1;
}


/* VALUE */

.value-section {
  padding: 90px 0;
  background: #f5f8fc;
}

.center-title {
  margin: 10px 0 45px;
  text-align: center;
  font-size: 30px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-grid article {
  position: relative;
  min-height: 270px;
  padding: 38px 28px;
  background: #fff;
  border: 1px solid #e1e7ee;
}

.value-number {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #e2e9f2;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 700;
}

.value-icon {
  margin-bottom: 25px;
  color: #095fff;
  font-size: 34px;
}

.value-grid h3 {
  margin: 0 0 15px;
  font-size: 18px;
}

.value-grid p {
  margin: 0;
  color: #566371;
  font-size: 12px;
  line-height: 2;
}


/* ABOUT APPROACH */

.approach-section {
  padding: 100px 0;
  color: #fff;
  background:
    linear-gradient(
      110deg,
      #001327,
      #00234b
    );
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.approach-section h2 {
  margin: 15px 0 20px;
  font-size: 31px;
  line-height: 1.6;
}

.approach-section p {
  color: #d4dfec;
  font-size: 13px;
  line-height: 2;
}

.approach-flow {
  display: flex;
  align-items: stretch;
}

.flow-card {
  flex: 1;
  padding: 28px 15px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.22);
}

.flow-card span {
  display: block;
  margin-bottom: 17px;
  color: #3680ff;
  font-family: Inter, sans-serif;
}

.flow-card h3 {
  margin: 0 0 7px;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.flow-card p {
  margin: 0;
  font-size: 10px;
}

.flow-arrow {
  display: flex;
  width: 28px;
  align-items: center;
  justify-content: center;
  color: #5e8ed4;
}


/* ==================================================
SERVICE
================================================== */

.service-intro {
  padding: 90px 0;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.service-intro h2 {
  margin: 14px 0 0;
  font-size: 34px;
  line-height: 1.6;
}

.service-intro p {
  margin: 0 0 18px;
  color: #4d5967;
  font-size: 14px;
  line-height: 2.1;
}


/* 各サービス */

.service-list-section {
  padding-bottom: 90px;
}

.service-detail {
  display: grid;
  grid-template-columns: 65px 1fr 1fr;
  gap: 45px;
  align-items: center;
  padding: 75px 0;
  border-top: 1px solid #dfe5ec;
}

.service-detail:last-child {
  border-bottom: 1px solid #dfe5ec;
}

.service-number {
  align-self: start;
  padding-top: 8px;
  color: #095eff;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.service-copy {
  display: block;
}

.service-en {
  margin: 0 0 8px !important;
  color: #095eff !important;
  font-family: Inter, sans-serif;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .12em;
}

.service-copy h2 {
  margin: 0 0 20px;
  font-size: 30px;
}

.service-copy > p {
  margin: 0 0 13px;
  color: #4f5c6a;
  font-size: 13px;
  line-height: 2;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.service-points span {
  padding: 6px 12px;
  font-size: 11px;
  color: #354458;
  background: white;
  border: 1px solid #cad6e3;
}

.service-visual {
  display: block;
  position: relative;
  height: 300px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      #f1f6fd,
      #d9e7f7
    );
}


/* reverse */

.service-detail.reverse .service-visual {
  grid-column: 2;
  grid-row: 1;
}

.service-detail.reverse .service-copy {
  grid-column: 3;
  grid-row: 1;
}

.service-detail.reverse .service-number {
  grid-column: 1;
  grid-row: 1;
}


/* STRATEGY VISUAL */

.visual-strategy {
  background:
    linear-gradient(
      145deg,
      #f3f8fd,
      #d6e5f7
    );
}

.chart-line {
  position: absolute;
  height: 3px;
  background: #0a5fff;
  transform-origin: left;
}

.line-one {
  width: 110px;
  left: 45px;
  bottom: 70px;
  transform: rotate(-25deg);
}

.line-two {
  width: 120px;
  left: 140px;
  bottom: 115px;
  transform: rotate(18deg);
}

.line-three {
  width: 140px;
  left: 250px;
  bottom: 78px;
  transform: rotate(-38deg);
}

.chart-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #095eff;
  box-shadow: 0 0 0 6px rgba(9,94,255,.12);
}

.dot-one {
  left: 40px;
  bottom: 65px;
}

.dot-two {
  left: 140px;
  bottom: 107px;
}

.dot-three {
  right: 55px;
  top: 57px;
}


/* MARKETING */

.visual-marketing {
  background:
    radial-gradient(
      circle at center,
      #f5f9ff,
      #d5e6fa
    );
}

.phone {
  position: absolute;
  width: 105px;
  height: 215px;
  border-radius: 19px;
  background: #0c1d35;
  box-shadow: 0 18px 30px rgba(0,30,70,.2);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 11px;
  background:
    linear-gradient(
      #0b61fa,
      #6aa8ff
    );
}

.phone-one {
  top: 37px;
  left: 90px;
  transform: rotate(-9deg);
}

.phone-two {
  top: 62px;
  left: 205px;
  transform: rotate(8deg);
}

.marketing-circle {
  position: absolute;
  border: 1px solid #6b9ee0;
  border-radius: 50%;
}

.circle-one {
  width: 220px;
  height: 220px;
  left: 65px;
  top: 35px;
}

.circle-two {
  width: 300px;
  height: 300px;
  left: 20px;
  top: 0;
  opacity: .4;
}


/* SALES */

.visual-sales {
  background:
    linear-gradient(
      145deg,
      #edf4fb,
      #ccddec
    );
}

.person {
  position: absolute;
  bottom: 30px;
  width: 75px;
  height: 145px;
  border-radius: 40px 40px 8px 8px;
  background:
    linear-gradient(
      #31475f,
      #0b1828
    );
}

.person::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 14px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #c8d9e7;
}

.p1 {
  left: 50px;
}

.p2 {
  left: 165px;
  height: 165px;
}

.p3 {
  left: 280px;
  height: 140px;
}

.sales-connection {
  position: absolute;
  height: 1px;
  background: #568ed0;
  transform-origin: left;
}

.c1 {
  width: 125px;
  left: 87px;
  top: 87px;
  transform: rotate(14deg);
}

.c2 {
  width: 125px;
  left: 205px;
  top: 112px;
  transform: rotate(-12deg);
}


/* MANAGEMENT */

.visual-management {
  background:
    linear-gradient(
      145deg,
      #f5f9fd,
      #d7e4f4
    );
}

.gear-large {
  position: absolute;
  top: 50px;
  left: 70px;
  color: #0d4e9f;
  font-size: 145px;
}

.gear-small {
  position: absolute;
  right: 65px;
  bottom: 32px;
  color: #75a1d8;
  font-size: 85px;
}


/* SERVICE FLOW */

.service-flow-section {
  padding: 80px 0;
  text-align: center;
  color: white;
  background:
    linear-gradient(
      110deg,
      #001327,
      #00234c
    );
}

.service-flow-section h2 {
  margin: 12px 0 5px;
  font-size: 30px;
}

.service-flow-lead {
  margin: 0 0 40px;
  color: #c9d7e7;
  font-size: 13px;
}

.service-flow {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.flow-step {
  width: 200px;
  padding: 30px 18px;
  border: 1px solid rgba(255,255,255,.22);
}

.flow-step span {
  color: #3d84ff;
  font-family: Inter, sans-serif;
  font-size: 12px;
}

.flow-step h3 {
  margin: 14px 0 9px;
  font-size: 17px;
}

.flow-step p {
  margin: 0;
  color: #dae5f0;
  font-size: 11px;
}

.flow-arrow-large {
  display: flex;
  width: 38px;
  align-items: center;
  justify-content: center;
  color: #5281ca;
}


/* ==================================================
RESPONSIVE
================================================== */

@media (max-width: 900px) {

  .about-message-grid,
  .service-intro-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 50px 1fr;
  }

  .service-detail .service-copy,
  .service-detail.reverse .service-copy {
    grid-column: 2;
    grid-row: auto;
  }

  .service-detail .service-visual,
  .service-detail.reverse .service-visual {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .service-flow {
    flex-wrap: wrap;
    gap: 15px;
  }

  .flow-arrow-large {
    display: none;
  }

}


@media (max-width: 560px) {

  .sub-hero {
    min-height: 320px;
    padding-top: 120px;
  }

  .sub-hero h1 {
    font-size: 30px;
  }

  .about-message {
    padding: 60px 0;
  }

  .about-image {
    height: 300px;
  }

  .about-message-text h2,
  .service-intro h2 {
    font-size: 26px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-detail .service-number,
  .service-detail .service-copy,
  .service-detail .service-visual,
  .service-detail.reverse .service-number,
  .service-detail.reverse .service-copy,
  .service-detail.reverse .service-visual {
    grid-column: 1;
  }

  .flow-step {
    width: 100%;
  }

}




/* =====================================
COMPANY PAGE
===================================== */

.company-message-section {
  padding: 90px 0;
}

.company-message-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
}

.company-message-section h2 {
  margin: 14px 0 0;
  font-size: 34px;
  line-height: 1.6;
}

.company-message-section p {
  margin: 0 0 18px;
  color: #4d5967;
  font-size: 14px;
  line-height: 2.1;
}


/* PROFILE */

.company-profile-section {
  padding: 90px 0;
  background: #f6f8fb;
}

.company-profile-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.company-profile-title h2 {
  margin: 12px 0 4px;
  font-size: 32px;
}

.company-profile-title > p:last-child {
  color: #85909e;
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
}

.company-profile-table dl {
  margin: 0;
}

.company-profile-table dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 25px;
  padding: 19px 0;
  border-top: 1px solid #d6dee8;
}

.company-profile-table dl div:last-child {
  border-bottom: 1px solid #d6dee8;
}

.company-profile-table dt {
  font-size: 12px;
  font-weight: 600;
  color: #607083;
}

.company-profile-table dd {
  margin: 0;
  font-size: 13px;
  color: #152234;
  line-height: 2;
}


/* BUSINESS */

.company-business-section {
  padding: 90px 0;
}

.company-business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.company-business-grid article {
  position: relative;
  min-height: 250px;
  padding: 35px 26px;
  border: 1px solid #dfe6ee;
  background: #fff;
}

.business-no {
  display: block;
  margin-bottom: 32px;
  color: #0a5fff;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.company-business-grid h3 {
  margin: 0 0 15px;
  font-size: 18px;
}

.company-business-grid p {
  margin: 0;
  color: #53606d;
  font-size: 12px;
  line-height: 2;
}


/* LOCATION */

.company-location-section {
  padding: 90px 0;
  color: white;
  background:
    linear-gradient(
      110deg,
      #001327,
      #00234c
    );
}

.company-location-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.company-location-section h2 {
  margin: 14px 0 18px;
  font-size: 32px;
}

.company-address {
  margin: 0;
  color: #d9e4ef;
  font-size: 14px;
  line-height: 2.1;
}

.company-map {
  position: relative;
  height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.03),
      rgba(36,104,200,.15)
    );
}

.map-grid-line {
  position: absolute;
  background: rgba(138,174,224,.25);
}

.map-line-one {
  width: 130%;
  height: 1px;
  left: -15%;
  top: 80px;
  transform: rotate(10deg);
}

.map-line-two {
  width: 130%;
  height: 1px;
  left: -20%;
  top: 190px;
  transform: rotate(-9deg);
}

.map-line-three {
  height: 150%;
  width: 1px;
  left: 35%;
  top: -25%;
  transform: rotate(13deg);
}

.map-line-four {
  height: 150%;
  width: 1px;
  left: 70%;
  top: -20%;
  transform: rotate(-18deg);
}

.map-marker {
  position: absolute;
  left: 55%;
  top: 42%;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #0b68ff;
  box-shadow: 0 0 0 10px rgba(11,104,255,.12);
}

.map-marker span {
  position: absolute;
  width: 9px;
  height: 9px;
  left: 10px;
  top: 10px;
  border-radius: 50%;
  background: white;
}

.company-map p {
  position: absolute;
  right: 20px;
  bottom: 12px;
  margin: 0;
  color: #79a7e8;
  font-family: Inter, sans-serif;
  font-size: 10px;
  letter-spacing: .14em;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .company-message-grid,
  .company-profile-grid,
  .company-location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-business-grid {
    grid-template-columns: 1fr 1fr;
  }

}


@media (max-width: 560px) {

  .company-message-section,
  .company-profile-section,
  .company-business-section,
  .company-location-section {
    padding: 65px 0;
  }

  .company-message-section h2,
  .company-profile-title h2,
  .company-location-section h2 {
    font-size: 26px;
  }

  .company-profile-table dl div {
    grid-template-columns: 105px 1fr;
    gap: 15px;
  }

  .company-business-grid {
    grid-template-columns: 1fr;
  }

  .company-map {
    height: 250px;
  }

}
/* =====================================
CONTACT PAGE
===================================== */

.contact-page-section {
  padding: 100px 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-info h2 {
  margin: 14px 0 25px;
  font-size: 34px;
  line-height: 1.6;
}

.contact-info > p {
  margin: 0 0 40px;
  color: #4e5b69;
  font-size: 14px;
  line-height: 2.1;
}

.contact-direct {
  border-top: 1px solid #dce3eb;
}

.contact-direct > div {
  padding: 22px 0;
  border-bottom: 1px solid #dce3eb;
}

.contact-small-title {
  display: block;
  margin-bottom: 8px;
  color: #0a5fff;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
}

.contact-direct a {
  font-size: 22px;
  font-family: Inter, sans-serif;
  font-weight: 600;
}

.contact-direct p {
  margin: 0;
  color: #344250;
  font-size: 13px;
}


/* FORM */

.contact-form-wrap {
  padding: 45px;
  background: #f6f8fb;
  border: 1px solid #e1e7ee;
}

.contact-form {
  display: block;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 600;
  color: #1d2b3d;
}

.form-group label span {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 6px;
  color: #fff;
  background: #0a5fff;
  font-size: 9px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d5dee8;
  border-radius: 0;
  background: #fff;
  color: #152233;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  outline: none;
  transition: .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0a5fff;
  box-shadow: 0 0 0 3px rgba(10,95,255,.08);
}

.form-group textarea {
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 28px;
}

.form-check input {
  width: 16px;
  height: 16px;
}

.form-check label {
  font-size: 11px;
  color: #4a5868;
}

.contact-submit {
  width: 100%;
  border: 0;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(90deg, #00172f, #063b82);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #002044, #0a54bf);
}


/* NOTE */

.contact-note-section {
  padding: 70px 0;
  background: linear-gradient(110deg, #001327, #00234c);
  color: #fff;
}

.contact-note-box {
  text-align: center;
}

.contact-note-en {
  margin: 0 0 12px;
  color: #4d8eff;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
}

.contact-note-box h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.contact-note-box > p:last-child {
  margin: 0;
  color: #d8e3ee;
  font-size: 13px;
  line-height: 2;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

}

@media (max-width: 560px) {

  .contact-page-section {
    padding: 65px 0;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .contact-form-wrap {
    padding: 25px 18px;
  }

  .contact-direct a {
    font-size: 18px;
  }

  .contact-note-box h2 {
    font-size: 23px;
  }

}
/* =====================================
INDUSTRIES PAGE
===================================== */

.industries-intro {
  padding: 90px 0;
}

.industries-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.industries-intro h2 {
  margin: 14px 0 0;
  font-size: 34px;
  line-height: 1.6;
}

.industries-intro p {
  margin: 0 0 18px;
  color: #4d5967;
  font-size: 14px;
  line-height: 2.1;
}


/* DETAIL */

.industry-detail-section {
  padding-bottom: 90px;
}

.industry-detail {
  display: grid;
  grid-template-columns: 65px 1fr 1fr;
  gap: 45px;
  align-items: center;
  padding: 75px 0;
  border-top: 1px solid #dfe5ec;
}

.industry-detail:last-child {
  border-bottom: 1px solid #dfe5ec;
}

.industry-detail-number {
  align-self: start;
  padding-top: 7px;
  color: #095eff;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.industry-en {
  margin: 0 0 8px !important;
  color: #095eff !important;
  font-family: Inter, sans-serif;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .12em;
}

.industry-detail-copy h2 {
  margin: 0 0 20px;
  font-size: 30px;
}

.industry-detail-copy > p {
  margin: 0 0 15px;
  color: #4f5c6a;
  font-size: 13px;
  line-height: 2;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.industry-tags span {
  padding: 6px 12px;
  border: 1px solid #cad6e3;
  font-size: 11px;
  color: #354458;
  background: #fff;
}

.industry-visual {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(145deg, #f1f6fd, #d8e6f7);
}

.industry-detail.reverse .industry-visual {
  grid-column: 2;
  grid-row: 1;
}

.industry-detail.reverse .industry-detail-copy {
  grid-column: 3;
  grid-row: 1;
}

.industry-detail.reverse .industry-detail-number {
  grid-column: 1;
  grid-row: 1;
}


/* REAL ESTATE */

.realestate-large {
  background: linear-gradient(#dce9f5, #90abc2);
}

.industry-building {
  position: absolute;
  bottom: 0;
  background: linear-gradient(90deg, #24394d, #b5c6d4);
}

.industry-building::after {
  content: "";
  position: absolute;
  inset: 15px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.55) 0 15px,
      transparent 15px 28px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.35) 0 2px,
      transparent 2px 23px
    );
}

.b1 {
  left: 30px;
  width: 100px;
  height: 180px;
}

.b2 {
  left: 145px;
  width: 120px;
  height: 235px;
}

.b3 {
  left: 285px;
  width: 95px;
  height: 155px;
}


/* HUMAN */

.human-large {
  background: radial-gradient(circle at center, #f3f8ff, #ceddeb);
}

.human-circle {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(#7891a9, #1d3249);
}

.human-circle::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 70px;
  width: 82px;
  height: 100px;
  border-radius: 40px 40px 10px 10px;
  background: linear-gradient(#304960, #0a192a);
}

.h1 {
  left: 45px;
  top: 70px;
}

.h2 {
  left: 150px;
  top: 40px;
}

.h3 {
  left: 260px;
  top: 75px;
}

.h4 {
  right: 25px;
  top: 55px;
}

.human-line {
  position: absolute;
  height: 1px;
  background: #6796ce;
}

.hl1 {
  width: 110px;
  left: 90px;
  top: 100px;
  transform: rotate(-15deg);
}

.hl2 {
  width: 120px;
  left: 195px;
  top: 100px;
  transform: rotate(15deg);
}

.hl3 {
  width: 105px;
  right: 75px;
  top: 105px;
  transform: rotate(-11deg);
}


/* ADVERTISING */

.advertising-large {
  background: linear-gradient(125deg, #15253a, #091d37);
}

.ad-screen {
  position: absolute;
  bottom: 40px;
  width: 95px;
  height: 180px;
  transform: skewY(-6deg);
  box-shadow: 0 0 20px rgba(18,101,255,.4);
}

.ad1 {
  left: 45px;
  background: linear-gradient(#1667ff, #072b67);
}

.ad2 {
  left: 155px;
  background: linear-gradient(#3b97ff, #0d3c84);
}

.ad3 {
  left: 265px;
  background: linear-gradient(#1c77e5, #071c44);
}


/* PAINT */

.painting-large {
  background: linear-gradient(#dce8f2, #8ea3b7);
}

.paint-house {
  position: absolute;
  left: 70px;
  right: 70px;
  bottom: 0;
  height: 210px;
  background: linear-gradient(90deg, #36485a, #152435);
  clip-path: polygon(0 25%, 65% 0, 100% 20%, 100% 100%, 0 100%);
}

.paint-house::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  width: 60px;
  height: 80px;
  background: #bdd0df;
  box-shadow: 120px -20px 0 #bdd0df;
}

.paint-roller {
  position: absolute;
  width: 90px;
  height: 22px;
  right: 30px;
  top: 40px;
  background: #0b61ff;
  transform: rotate(-20deg);
}

.paint-roller::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 20px;
  width: 4px;
  height: 75px;
  background: #2c4055;
}


/* AUTOMOTIVE */

.automotive-large {
  background: radial-gradient(circle at 65% 35%, #ffffff, #bac8d5 45%, #566779);
}

.big-car {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 40px;
  height: 100px;
  background: linear-gradient(#111926, #606d78);
  border-radius: 55% 45% 20% 20% / 70% 55% 30% 30%;
  box-shadow: inset 0 -20px 0 #141c24;
}

.big-car::before {
  content: "";
  position: absolute;
  left: 70px;
  top: -42px;
  width: 200px;
  height: 70px;
  background: #23364a;
  clip-path: polygon(18% 100%, 40% 0, 82% 0, 100% 100%);
}

.big-car::after {
  content: "";
  position: absolute;
  left: 65px;
  bottom: -14px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #101821;
  box-shadow: 190px 0 0 #101821;
}


/* BOTTOM */

.industry-bottom {
  padding: 80px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(110deg, #001327, #00234c);
}

.industry-bottom h2 {
  margin: 12px 0 10px;
  font-size: 30px;
}

.industry-bottom p {
  color: #d6e1ee;
  font-size: 13px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

  .industries-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industry-detail,
  .industry-detail.reverse {
    grid-template-columns: 50px 1fr;
  }

  .industry-detail .industry-detail-copy,
  .industry-detail.reverse .industry-detail-copy {
    grid-column: 2;
    grid-row: auto;
  }

  .industry-detail .industry-visual,
  .industry-detail.reverse .industry-visual {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}


@media (max-width: 560px) {

  .industries-intro {
    padding: 65px 0;
  }

  .industries-intro h2 {
    font-size: 26px;
  }

  .industry-detail,
  .industry-detail.reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 55px 0;
  }

  .industry-detail .industry-detail-number,
  .industry-detail .industry-detail-copy,
  .industry-detail .industry-visual,
  .industry-detail.reverse .industry-detail-number,
  .industry-detail.reverse .industry-detail-copy,
  .industry-detail.reverse .industry-visual {
    grid-column: 1;
  }

  .industry-detail-copy h2 {
    font-size: 25px;
  }

  .industry-visual {
    height: 240px;
  }
}
/* =====================================
PRIVACY POLICY
===================================== */

.privacy-section {
  padding: 100px 0;
}

.privacy-container {
  max-width: 900px;
}

.privacy-intro {
  margin-bottom: 65px;
  padding-bottom: 40px;
  border-bottom: 1px solid #dce3eb;
}

.privacy-intro p {
  margin: 0;
  color: #485665;
  font-size: 14px;
  line-height: 2.2;
}

.privacy-item {
  position: relative;
  padding: 0 0 45px 70px;
  margin-bottom: 45px;
  border-bottom: 1px solid #e1e7ee;
}

.privacy-item > span {
  position: absolute;
  top: 2px;
  left: 0;
  color: #0a5fff;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.privacy-item h2 {
  margin: 0 0 18px;
  color: #132237;
  font-size: 20px;
}

.privacy-item p {
  margin: 0;
  color: #52606e;
  font-size: 13px;
  line-height: 2.1;
}

.privacy-item ul {
  margin: 20px 0 0;
  padding-left: 20px;
}

.privacy-item li {
  margin-bottom: 8px;
  color: #52606e;
  font-size: 13px;
  line-height: 1.9;
}

.privacy-company {
  margin-top: 25px;
  padding: 25px 30px;
  background: #f5f8fc;
  border-left: 3px solid #0a5fff;
}

.privacy-company strong {
  display: block;
  margin-bottom: 12px;
  color: #142338;
  font-size: 14px;
}

.privacy-company p {
  margin: 5px 0;
}

.privacy-company a {
  color: #0a5fff;
}

.privacy-date {
  text-align: right;
}

.privacy-date p {
  margin: 0;
  color: #7a8795;
  font-size: 11px;
}


/* SMARTPHONE */

@media (max-width: 560px) {

  .privacy-section {
    padding: 65px 0;
  }

  .privacy-intro {
    margin-bottom: 45px;
  }

  .privacy-item {
    padding-left: 0;
    padding-top: 35px;
    margin-bottom: 35px;
  }

  .privacy-item > span {
    top: 0;
  }

  .privacy-item h2 {
    font-size: 18px;
  }

  .privacy-company {
    padding: 20px;
  }

}
/* GOOGLE MAP */

.company-map.google-map {
  position: relative;
  height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  background: #e9eef5;
}

.company-map.google-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 560px) {

  .company-map.google-map {
    height: 280px;
  }

}

/* =====================================
   INDUSTRIES — PHOTO VISUAL UPGRADE
===================================== */
.industry-visual.industry-photo {
  height: 220px;
  overflow: hidden;
  background: #edf3f8;
  border: 1px solid #dce5ee;
  box-shadow: 0 18px 45px rgba(0, 31, 72, .08);
}

.industry-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.03);
  transform: scale(1.001);
  transition: transform .55s ease, filter .55s ease;
}

.industry-detail:hover .industry-photo img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.05);
}

@media (max-width: 900px) {
  .industry-visual.industry-photo {
    height: 210px;
  }
}

@media (max-width: 560px) {
  .industry-visual.industry-photo {
    height: 190px;
  }
}


/* =====================================
HOME PAGE PHOTO UPGRADE
===================================== */

.industry-card {
  border: 1px solid #dfe6ee;
  box-shadow: 0 14px 36px rgba(8, 31, 63, .07);
  transition: transform .28s ease, box-shadow .28s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(8, 31, 63, .12);
}

.card-image.home-photo {
  height: 148px;
  background: #eaf0f5;
}

.card-image.home-photo img,
.home-about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.93) contrast(1.04);
}

.card-image.home-photo img {
  transition: transform .5s ease, filter .5s ease;
}

.industry-card:hover .card-image.home-photo img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.05);
}

.card-body {
  padding-top: 22px;
}

.mini-icon {
  display: none;
}

.city-visual.home-about-photo {
  height: 310px;
  background: #e9eff5;
  box-shadow: 0 18px 45px rgba(8, 31, 63, .10);
}

.city-visual.home-about-photo::before {
  display: none;
}

.home-about-photo img {
  object-position: center 45%;
}

@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-image.home-photo {
    height: 185px;
  }

  .city-visual.home-about-photo {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .card-image.home-photo {
    height: 210px;
  }

  .city-visual.home-about-photo {
    height: 230px;
  }
}
