* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  font-family: 'Yu Gothic', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  color: #e5f0ff;
  background: #0a1420;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 15, 26, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.logo-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  text-decoration: none;
}

.company-name {
  color: #cfe4ff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.nav-toggle {
  display: flex;
  width: 30px;
  height: 26px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: #cfe4ff;
}

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: #050b16;
  padding: 10px 18px 12px;
  border-bottom: 1px solid #15243a;
  z-index: 100;
}

.nav-links.show {
  display: flex;
}

.nav-links li {
  width: 100%;
}

.nav-links a {
  display: block;
  width: 100%;
  padding: 8px 0;
  border-radius: 999px;
  color: #c0d6f5;
  font-size: 13px;
}

.nav-links a:hover {
  background: rgba(88, 165, 255, 0.14)
}

.nav-cta {
  background: linear-gradient(90deg, #1e88e5, #54b8ff);
  color: #fff !important;
  box-shadow: 0 3px 10px rgba(0, 150, 255, 0.45);
}

@media (min-width: 900px) {
  .nav {
    padding: 6px 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border-bottom: none;
  }

  .nav-links li {
    width: auto;
  }

  .nav-links a {
    width: auto;
    padding: 7px 11px;
  }
}

#hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 25% 20%, #172a4a 0, #060e18 60%);
  overflow: hidden;
}

#particles,
#heroCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
}

.hero-left {
  flex: 1
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center
}

.hero-kicker {
  font-size: 11px;
  letter-spacing: .18em;
  color: #7fb4ff;
  margin-bottom: 4px;
}

.hero-left h1 {
  font-size: 32px;
  line-height: 1.25;
  color: #f4fbff;
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-left .accent {
  background: linear-gradient(90deg, #4cb7ff, #9ce4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 14px;
  color: #c2d4ea;
  max-width: 480px;
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-brand {
  margin-bottom: 22px;
}

.hero-logo-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-company-name {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1.2px;
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: linear-gradient(90deg, #1e88e5, #54b8ff);
  color: #fff;
  box-shadow: 0 7px 20px rgba(0, 150, 255, 0.45);
}

.btn.primary:hover {
  box-shadow: 0 9px 26px rgba(0, 150, 255, 0.6);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: #cfe4ff;
  border: 1px solid rgba(135, 181, 235, 0.5);
}

.btn.ghost:hover {
  background: rgba(38, 80, 140, 0.65)
}

.hero-card {
  background: rgba(8, 20, 40, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(98, 168, 255, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  max-width: 460px;
}

.hero-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.hero-card-text {
  padding: 14px 16px;
  font-size: 13px;
  color: #d2e6ff;
}

.section {
  padding: 60px 0
}

.white-section {
  background: #0d1726;
}

.section h2 {
  font-size: 22px;
  text-align: center;
  color: #e3f3ff;
  margin-bottom: 8px;
  text-shadow: 0 0 16px rgba(102, 178, 255, 0.45);
}

.section-lead {
  text-align: center;
  font-size: 14px;
  color: #b1c4de;
  max-width: 700px;
  margin: 0 auto 22px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.card {
  background: rgba(10, 22, 40, 0.95);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(92, 140, 200, 0.6);
  overflow: hidden;
  width: 260px;
  padding-bottom: 10px;
}

.card h3 {
  font-size: 15px;
  color: #e2f2ff;
  padding: 12px 14px 4px;
}

.card p {
  font-size: 13px;
  color: #c0d3ea;
  padding: 0 14px 0;
}

.card-btn {
  display: block;
  margin: 12px auto 14px;
}

.stats-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.stat-card {
  background: radial-gradient(circle at 30% 10%, #4fa5ff 0, #1a2d56 60%);
  color: #fff;
  width: 170px;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(144, 202, 249, 0.7);
}

.stat-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table li {
  border-bottom: 1px solid rgba(88, 110, 140, 0.4);
  padding: 6px 4px;
  color: #e0ecff;
}

.company-table th,
.company-table td {
  padding: 6px 6px;
  text-align: left;
}

.site-footer {
  background: #050911;
  border-top: 1px solid #162437;
  padding: 0;
  color: #9fb4c9;
  margin-top: 28px;
  position: relative;
}

.footer-top-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #1e88e5, #54b8ff, #26c6da);
  box-shadow: 0 0 12px rgba(84, 184, 255, 0.8);
}

.footer-inner {
  padding: 18px 16px 14px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-col {
  min-width: 180px;
  flex: 1;
}

.footer-brand {
  flex: 1.3;
}

.footer-logo-wrap {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 2px;
}

.footer-company-name {
  font-size: 15px;
  font-weight: 600;
  color: #e3f2ff;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.footer-text {
  font-size: 12px;
  color: #9fb4c9;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 13px;
  color: #d5e7ff;
  margin-bottom: 6px;
}

.footer-links-list {
  list-style: none;
  font-size: 12px;
}

.footer-links-list li+li {
  margin-top: 3px;
}

.footer-links-list a {
  color: #b7cbe2;
  text-decoration: none;
}

.footer-links-list a:hover {
  color: #e0f3ff;
  text-decoration: underline;
}

.footer-col a {
  color: #b7cbe2;
  text-decoration: none;
}

.footer-col a:hover {
  color: #e0f3ff;
  text-decoration: underline;
}

.footer-contact-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 7px 16px;
  font-size: 12px;
}

.footer-cert {
  margin-top: 10px;
  font-size: 11px;
  color: #9fb4c9;
}

.footer-cert-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-cert-logo img {
  width: 34px;
  height: auto;
  display: block;
}

.footer-cert-logo span {
  line-height: 1.5;
}

.footer-cert-text {
  font-size: 11px;
  color: #90a4c0;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #111927;
  padding-top: 6px;
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}

.footer-copy {
  color: #7f92aa;
}

.footer-to-top {
  font-size: 11px;
  color: #b7cbe2;
  text-decoration: none;
  letter-spacing: .08em;
}

.footer-to-top:hover {
  color: #e0f3ff;
  text-decoration: underline;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: all .7s cubic-bezier(.2, .9, .2, 1)
}

.fade-in.visible {
  opacity: 1;
  transform: none
}

.contact-layout{
  display:flex;
  justify-content:center;
}

.contact-one__form{
  background:rgba(10,22,40,0.97);
  border-radius:18px;
  border:1px solid rgba(92,140,200,0.7);
  box-shadow:0 18px 40px rgba(0,0,0,0.8);
  padding:24px 22px 22px;
  color:#e5f0ff;
}

.contact-one__form h3{
  font-size:18px;
  margin-bottom:14px;
  color:#e3f3ff;
}

.contact-one__form .form-group{
  position:relative;
  margin-bottom:14px;
}

.form-label-inline{
  font-size:12px;
  margin-bottom:4px;
  color:#c2d4ea;
}

.contact-one__form input[type="text"],
.contact-one__form input[type="email"],
.contact-one__form select,
.contact-one__form textarea{
  width:100%;
  border-radius:999px;
  border:1px solid rgba(120,170,230,0.7);
  background:#050b16;
  color:#e5f0ff;
  font-size:13px;
  padding:9px 12px;
  outline:none;
  transition:border-color .2s, box-shadow .2s, background .2s;
}

.contact-one__form textarea{
  border-radius:12px;
  min-height:120px;
  resize:vertical;
  padding:10px 12px;
}

.contact-one__form ::placeholder{
  color:#7286a4;
}

.contact-one__form input:focus,
.contact-one__form select:focus,
.contact-one__form textarea:focus{
  border-color:#64b5ff;
  box-shadow:0 0 0 1px rgba(100,181,255,0.7);
  background:#060f20;
}

.contact-one__form .form-group i{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  font-size:13px;
  color:#7ea7e0;
  pointer-events:none;
}

.contact-one__form textarea + i{
  top:14px;
  transform:none;
}

.contact-one__form select{
  height:38px;
  border-radius:999px;
}

.contact-privacy-note{
  margin:10px 2px 12px;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(4,12,26,0.9);
  border-left:3px solid #64b5ff;
  font-size:11px;
  color:#c3d4ee;
  line-height:1.7;
}

.contact-consent-row{
  margin-top:4px;
}

.contact-consent{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:#d0e2ff;
  margin-bottom:10px;
}

.contact-consent input[type="checkbox"]{
  width:16px;
  height:16px;
}

.contact-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.thm-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 18px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font-size:13px;
  font-weight:600;
  background:linear-gradient(90deg,#1e88e5,#54b8ff);
  color:#fff;
  box-shadow:0 7px 20px rgba(0,150,255,0.45);
  transition:box-shadow .2s, transform .2s, background .2s;
}

.thm-btn i{
  font-size:14px;
}

.thm-btn + .thm-btn{
  background:transparent;
  color:#cfe4ff;
  border:1px solid rgba(135,181,235,0.7);
  box-shadow:none;
}

.thm-btn:hover{
  box-shadow:0 9px 26px rgba(0,150,255,0.6);
  transform:translateY(-1px);
}

.thm-btn + .thm-btn:hover{
  background:rgba(38,80,140,0.65);
  box-shadow:none;
  transform:none;
}

.error-panel{
  background:rgba(10,22,40,0.97);
  border-radius:18px;
  border:1px solid rgba(92,140,200,0.7);
  box-shadow:0 18px 40px rgba(0,0,0,0.8);
  padding:20px 18px 18px;
}

.error-panel .block-title p{
  font-size:12px;
  color:#ffb3b3;
}

.error-panel .block-title h3{
  font-size:18px;
  color:#ffe5e5;
  margin-top:4px;
}

.error-table-wrap{
  margin-top:14px;
  overflow-x:auto;
}

.error-table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
  color:#e0ecff;
}

.error-table th,
.error-table td{
  padding:6px 8px;
  border-bottom:1px solid rgba(88,110,140,0.4);
}

.error-table th{
  width:140px;
  text-align:left;
  color:#ffcccc;
  white-space:nowrap;
}

.error-table .error-sep{
  width:20px;
}

.error-actions{
  margin-top:16px;
}

.error-actions .thm-btn{
  background:linear-gradient(90deg,#ef5350,#ff8a65);
  box-shadow:0 7px 20px rgba(239,83,80,0.35);
}

.error-actions .thm-btn:hover{
  box-shadow:0 9px 26px rgba(239,83,80,0.55);
  transform:translateY(-1px);
}

.confirm-panel{
  background:rgba(10,22,40,0.97);
  border-radius:18px;
  border:1px solid rgba(92,140,200,0.7);
  box-shadow:0 18px 40px rgba(0,0,0,0.85);
  padding:24px 20px 22px;
  color:#e5f0ff;
}

.confirm-panel .block-title p{
  font-size:12px;
  color:#90caff;
}

.confirm-panel .block-title h3{
  font-size:18px;
  margin-top:4px;
  color:#edf6ff;
}

.confirm-table-wrap{
  margin-top:16px;
  overflow-x:auto;
}

.confirm-table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
  color:#e0ecff;
  letter-spacing:0.03em;
}

.confirm-table th,
.confirm-table td{
  padding:8px 6px;
  border-bottom:1px solid rgba(88,110,140,0.45);
}

.confirm-table th{
  text-align:left;
  width:180px;
  color:#cfe4ff;
  white-space:nowrap;
  font-weight:600;
}

.confirm-table .confirm-sep{
  width:24px;
}

.confirm-actions{
  margin-top:20px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.confirm-actions .thm-btn.primary{
  background:linear-gradient(90deg,#1e88e5,#54b8ff);
  box-shadow:0 7px 20px rgba(0,150,255,0.45);
}

.confirm-actions .thm-btn.primary:hover{
  box-shadow:0 10px 26px rgba(0,150,255,0.6);
  transform:translateY(-1px);
}

.thanks-panel{
  background:rgba(10,22,40,0.97);
  border-radius:18px;
  border:1px solid rgba(92,140,200,0.7);
  box-shadow:0 18px 40px rgba(0,0,0,0.85);
  padding:24px 20px 22px;
  text-align:center;
  color:#e5f0ff;
}

.thanks-panel .block-title{
  margin-bottom:14px;
}

.thanks-panel .block-title p{
  font-size:15px;
  line-height:1.8;
  color:#e3f6ff;
}

.thanks-actions{
  margin-top:12px;
}

.thanks-actions .thm-btn{
  background:linear-gradient(90deg,#26a69a,#4dd0e1);
  box-shadow:0 7px 20px rgba(38,166,154,0.45);
}

.thanks-actions .thm-btn:hover{
  box-shadow:0 9px 26px rgba(38,166,154,0.65);
  transform:translateY(-1px);
}

@media (max-width:900px) {
  .hero-inner {
    flex-direction: column;
    padding: 28px 0;
  }

  .hero-right {
    order: 1;
  }

  .hero-left {
    order: 2;
    text-align: center;
  }

  .hero-lead {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width:768px) {
  .footer-main {
    flex-direction: column;
  }

  .footer-col {
    min-width: auto;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .contact-one__form{
    padding:18px 14px 18px;
  }

  .contact-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .error-panel{
    padding:16px 12px 16px;
  }
  .error-table th{
    width:110px;
  }

  .confirm-panel{
    padding:18px 14px;
  }
  .confirm-actions{
    flex-direction:column;
  }

  .thanks-panel{
    padding:18px 14px;
  }
}

@media (max-width:480px) {
  .card {
    width: 100%
  }

  .stat-card {
    width: 100%
  }
}

@media (max-width: 899px) {
  .nav.container {
    position: relative;
  }

  .hero-brand {
    flex: 1;
    min-width: 0;
  }

  .nav-toggle {
    display: flex !important;
    width: 30px;
    height: 24px;
    border: none;
    background: transparent;
    flex-direction: column;
    justify-content: space-between;
    padding: 3px;
    cursor: pointer;
    position: relative;
    z-index: 101;
  }

  .nav-toggle span {
    display: block;
    height: 3px;
    border-radius: 3px;
    background: #cfe4ff;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #050b16;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 18px 12px;
    border-bottom: 1px solid #15243a;
    display: none;
    z-index: 100;
    gap: 4px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border-bottom: none;
  }

  .nav-links li {
    width: auto;
  }

  .nav-links a {
    width: auto;
    padding: 7px 11px;
  }
}











