/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #313D5A;
  --blue-light: #33B5FF;
  --teal: #3A9BAF;
  --dark: #444444;
  --gray: #555555;
  --bg-gray: #F5F8FA;
  --white: #FFFFFF;
  --line: #E5EDF2;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ja);
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.2em; }

/* ============================================================
   HEADER
============================================================ */
.header {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 10;
}
.header__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo { display: flex; align-items: center; height: 52px; }
.header__logo img { height: 100%; width: auto; max-width: 330px; }

.header__nav { display: flex; align-items: center; gap: 28px; }
.header__nav a { font-size: 13px; font-weight: 700; color: var(--dark); transition: color .2s; }
.header__nav a:hover { color: var(--teal); }
#SP-MENU, .spMenu { display: none; }

/* ============================================================
   COMMON
============================================================ */
.service-main { background: #fff; }
.serviceContainer { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.serviceSection { padding: 84px 0; }
.serviceSection--gray { background: var(--bg-gray); }
.sectionHeading { margin-bottom: 38px; text-align: center; }
.sectionHeading p {
  margin: 0 0 10px;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .18em;
}
.sectionHeading h2 {
  margin: 0 auto;
  max-width: 900px;
  color: var(--blue);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.45;
  font-weight: 800;
}

/* ============================================================
   HERO
============================================================ */
.serviceHero {
  position: relative;
  padding: 112px 20px 104px;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 155, 230, 0.82) 0%,rgba(51, 181, 255, 0.82) 50%,rgba(175, 235, 255, 0.72) 100%
);

  overflow: hidden;
}
.serviceHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 18%, rgba(255,255,255,.15), transparent 28%), radial-gradient(circle at 12% 86%, rgba(255,255,255,.10), transparent 26%);
  pointer-events: none;
}
.serviceHero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(190, 240, 255, 0.26);
}
.serviceHero__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}
.serviceHero__label {
  margin: 0 0 20px;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .18em;
}
.serviceHero h1 {
  margin: 0 0 28px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .03em;
}
.serviceHero__lead {
  max-width: 820px;
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 2;
}
.serviceHero__buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.serviceBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}
.serviceBtn--primary { background: #fff; color: var(--blue); }
.serviceBtn--outline { border: 1px solid rgba(255,255,255,.85); color: #fff; }
.serviceBtn:hover { transform: translateY(-2px); opacity: .92; }

/* ============================================================
   PAGE NAV
============================================================ */
.serviceNav { background: #fff; box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.serviceNav__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.serviceNav__grid a {
  display: block;
  padding: 22px 14px;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  border-right: 1px solid var(--line);
}
.serviceNav__grid a:first-child { border-left: 1px solid var(--line); }
.serviceNav__grid a:hover { background: #F0F8FB; color: var(--teal); }

/* ============================================================
   INTRO / FIELDS
============================================================ */
.introPanel {
  max-width: 920px;
  margin: 0 auto;
  padding: 46px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0,56,92,.08);
}
.introPanel p { margin: 0 0 20px; line-height: 2; font-size: 16px; }
.introPanel p:last-child { margin-bottom: 0; }
.introPanel__strong {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-size: 19px !important;
  font-weight: 700;
}
.fieldGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fieldCard {
  display: block;
  padding: 30px 26px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,56,92,.08);
  transition: .2s ease;
}
.fieldCard:hover { transform: translateY(-3px); }
.fieldCard span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 800;
}
.fieldCard h3 { margin: 0 0 14px; color: var(--blue); font-size: 20px; line-height: 1.5; }
.fieldCard p { margin: 0; line-height: 1.85; font-size: 15px; }

/* ============================================================
   DETAILS
============================================================ */
.serviceDetail { padding: 88px 0; }
.serviceDetail--gray { background: var(--bg-gray); }
.detailHeader { margin-bottom: 34px; }
.detailHeader p {
  margin: 0 0 8px;
  color: var(--teal);
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: .14em;
}
.detailHeader h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.4;
}
.detailLayout {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
  gap: 38px;
  align-items: stretch;
}
.detailLayout--reverse .detailMainImage { order: 2; }
.detailLayout--reverse .detailBody { order: 1; }
.detailMainImage {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,56,92,.10);
}
.detailMainImage img { width: 100%; height: 100%; object-fit: cover; }
.detailBody {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,56,92,.07);
}
.detailBody p { margin: 0 0 18px; line-height: 2; }
.detailBody strong { color: var(--blue); font-weight: 800; }
.taskBox {
  margin-top: 26px;
  padding: 26px;
  background: linear-gradient(135deg, #F6FBFD, #fff);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.taskBox h3 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 18px;
}
.taskBox ul { margin: 0; padding-left: 1.2em; }
.taskBox li { margin-bottom: 8px; line-height: 1.7; }
.imageGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.imageGrid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,56,92,.08);
}

/* ============================================================
   CTA / FOOTER
============================================================ */
.serviceCta {
  padding: 82px 20px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}
.serviceCta__inner { width: min(900px, 100%); margin: 0 auto; }
.serviceCta p:first-child { margin: 0 0 10px; font-family: var(--font-en); font-weight: 800; letter-spacing: .16em; }
.serviceCta h2 { margin: 0 0 18px; font-size: clamp(26px, 4vw, 40px); }
.serviceCta p { line-height: 1.9; margin-bottom: 26px; }
.footer__brand { background: var(--white); padding: 36px 0 28px; border-top: 1px solid #ddd; }
.footer__brand-inner { max-width: 1100px; margin: 0 auto; padding: 0 60px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.footer__brand-inner img { width: 155px; height: auto; }
.footer__name { font-size: 17px; font-weight: 700; line-height: 1.5; color: var(--dark); }
.footer__address { font-size: 11px; color: var(--dark); line-height: 1.9; margin-top: 3px; }
.footer__bottom { background: var(--blue); padding: 16px 0 10px; }
.footer__nav { max-width: 1100px; margin: 0 auto; padding: 0 60px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; }
.footer__nav a { font-size: 11px; color: rgba(255,255,255,.92); padding: 0 12px; border-right: 1px solid rgba(255,255,255,.35); line-height: 1.2; }
.footer__nav a:last-child { border-right: none; }
.footer__copy { max-width: 1100px; text-align: center; margin: 8px auto 0; padding: 0 60px; font-size: 10px; color: rgba(255,255,255,.65); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media screen and (max-width: 900px) {
  .header { padding: 0 20px; }
  .header__nav { gap: 18px; }
  .fieldGrid { grid-template-columns: repeat(2, 1fr); }
  .serviceNav__grid { grid-template-columns: repeat(2, 1fr); }
  .detailLayout { grid-template-columns: 1fr; }
  .detailLayout--reverse .detailMainImage, .detailLayout--reverse .detailBody { order: initial; }
  .detailMainImage { min-height: 300px; }
}
@media screen and (max-width: 640px) {
  .serviceContainer { width: min(100% - 32px, 1100px); }
  .header { padding: 10px 16px; }
  .header__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .header__logo { height: 42px; }
  .header__nav { flex-wrap: wrap; gap: 10px 16px; }
  .header__nav a { font-size: 12px; }
  .serviceHero { padding: 78px 20px 72px; }
  .serviceHero__inner { width: min(100% - 8px, 1100px); }
  .serviceHero h1 { font-size: 32px; }
  .serviceHero__lead { font-size: 16px; line-height: 1.9; }
  .serviceHero__buttons { flex-direction: column; }
  .serviceBtn { width: 100%; }
  .serviceSection, .serviceDetail { padding: 64px 0; }
  .introPanel, .detailBody { padding: 28px 22px; }
  .fieldGrid, .imageGrid { grid-template-columns: 1fr; }
  .serviceNav__grid { grid-template-columns: 1fr 1fr; }
  .serviceNav__grid a { padding: 16px 8px; font-size: 14px; }
  .detailMainImage { min-height: 230px; }
  .footer__brand-inner { flex-direction: column; text-align: center; padding: 0 20px; }
  .footer__brand-inner img { width: 90px; }
  .footer__nav { flex-direction: column; gap: 8px; padding: 0 20px; }
  .footer__nav a { border-right: none; padding: 0; }
  .footer__copy { padding: 0 20px; }
}


/* Corporate blue tuning 20260814: hero gradients aligned to bright logo blue. */
