:root {
  --navy: #31315f;
  --deep: #0b2b55;
  --blue: #2d22f8;
  --sky: #dfeeff;
  --aqua: #dff4ff;
  --pale: #f2f8fc;
  --paper: #fff;
  --red: #d9323f;
  --text: #1f2937;
  --muted: #5f7388;
  --line: #dce6f2;
  --shadow: 0 28px 70px rgba(7, 28, 59, 0.13);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: #1f2937;
  background: #fff;
  line-height: 1.85;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1180px, 100% - 44px);
  margin: 0 auto;
}

.global-nav {
  background: #fff;
  border-bottom: 1px solid #e5edf5;
  position: sticky;
  top: 0;
  z-index: 50;
  height: 100px;
}

.global-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 220px;
  display: block;
}

.global-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  color: #1f2937;
  font-size: 13px;
  font-weight: 500;
}

.global-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nav {
  background: #fff;
  border-bottom: 1px solid #e5edf5;
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.back {
  color: #2d22f8;
  font-weight: 900;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 51px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.btn-red {
  background: #d9323f;
  color: #fff;
  box-shadow: 0 16px 30px rgba(217, 50, 63, 0.2);
}
.btn-navy {
  background: #31315f;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
}
.btn-blue {
  background: #2d22f8;
  color: #fff;
  box-shadow: 0 16px 30px rgba(9, 111, 200, 0.2);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.92);
  color: #31315f;
  border: 2px solid rgba(49, 49, 95, 0.22);
  backdrop-filter: blur(10px);
}
.btn-white {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-white:hover {
  background: rgba(255, 255, 255, 0.16);
}
.btn-orange {
  position: relative;
  min-width: 260px;
  min-height: 64px;
  padding: 20px 30px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffcf3f 0%, #ff9f0a 46%, #ff6a00 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(255, 140, 0, 0.26);
  overflow: visible;
}
.btn-orange .btn-balloon {
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 6px 16px;
  border-radius: 999px;
  background: #fff;
  color: #ff8a00;
  border: 2px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
}
.btn-orange .btn-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}
.btn-orange .btn-main {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(255, 140, 0, 0.34);
  opacity: 0.96;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

section {
  padding: 96px 0;
}

.pale {
  background: #f2f8fc;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p {
  margin: 18px auto 0;
  max-width: 680px;
}

.en {
  display: block;
  color: #2d22f8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

h2 {
  color: #31315f;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.42;
  font-weight: 900;
}

footer {
  background: #06142a;
  color: rgba(255, 255, 255, 0.7);
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer.simple {
  background: transparent;
  padding: 34px 0;
  color: #6b7f94;
  font-size: 12px;
}

body {
  background: #f6f9fc;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 42px;
  background: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(135deg, #78e1ff 0%, #1064f0 34%, #2f3f78 72%, #1f2147 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  color: #31315f;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.18;
  letter-spacing: 0.03em;
}
.hero p {
  max-width: 620px;
  margin-top: 16px;
  color: #5f7388;
  font-size: 16px;
  line-height: 1.9;
}

.form-wrap {
  padding: 52px 0 90px;
}

.form-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  background: #fff;
  border: 1px solid rgba(16, 100, 240, 0.1);
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(7, 28, 59, 0.1);
  padding: 42px;
}

.form-side {
  position: relative;
  overflow: hidden;
  padding: 34px 30px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #1f2147 0%, #2f3f78 48%, #1064f0 100%);
}
.form-side::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 32px solid rgba(255, 255, 255, 0.08);
}
.form-side h2 {
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.form-side p {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.9;
}
.form-side ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}
.form-side ul li {
  position: relative;
  padding-left: 22px;
}
.form-side ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #78e1ff;
}

.form-side--blue,
.form-side--red {
  background: linear-gradient(135deg, #1f2147 0%, #2f3f78 48%, #1064f0 100%);
}

.lead-form {
  display: grid;
  gap: 16px;
}
.lead-form label {
  display: grid;
  gap: 8px;
  color: #31315f;
  font-size: 13px;
  font-weight: 900;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(16, 100, 240, 0.16);
  border-radius: 14px;
  padding: 12px 14px;
  color: #1f2937;
  font: inherit;
  background: #f8fbfe;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #1064f0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16, 100, 240, 0.1);
}
.lead-form input::placeholder,
.lead-form select::placeholder,
.lead-form textarea::placeholder {
  color: #3c3c3c;
  opacity: 1;
}
.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}
.lead-form textarea.tall {
  min-height: 148px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn--blue, .btn--red, .btn--navy {
  background: #31315f;
  box-shadow: 0 16px 34px rgba(49, 49, 95, 0.22);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(49, 49, 95, 0.3);
  opacity: 0.96;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.form-status {
  display: none;
  padding: 13px 15px;
  border-radius: 14px;
  background: #e9f7ef;
  color: #0f7a4f;
  font-weight: 900;
  font-size: 13px;
}
.form-status.error {
  background: #fff0f1;
  color: #b22732;
}

@media (max-width: 800px) {
  body {
    background: #fff;
  }
  .hero {
    padding: 54px 0 34px;
  }
  .hero::before {
    width: 100%;
    height: 46%;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(135deg, #b8efff 0%, #78c7ff 35%, #5d8ff5 72%, #4b63d1 100%);
  }
  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .hero p {
    font-size: 14px;
  }
  .form-wrap {
    padding: 34px 0 64px;
  }
  .form-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px;
    border-radius: 22px;
  }
  .form-side {
    padding: 26px 22px;
    border-radius: 18px;
  }
  .form-side h2 {
    font-size: 21px;
  }
  .form-side p,
  .form-side ul {
    font-size: 13px;
  }
  .lead-form {
    gap: 14px;
  }
  .btn {
    width: 100%;
    min-height: 56px;
  }
  .brand img {
    width: 168px;
  }
}

/*# sourceMappingURL=style-demo-request.css.map */
