@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --primary: #004bb1;
  --secondary: #002b6b;
  --accent: #ff9800;
  --bg-light: #f8faff;
}

body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  scroll-behavior: smooth;
}

.section-skew {
  background: white;
  padding: 80px 0;
  position: relative;
}

.section-skew::before {
  background: inherit;
  content: '';
  height: 100px;
  left: 0;
  position: absolute;
  top: -50px;
  transform: skewY(-2deg);
  width: 100%;
  z-index: -1;
}

.btn-hover {
  transition: all 0.3s ease;
}

.btn-hover:hover {
  box-shadow: 0 10px 20px rgba(0, 75, 177, 0.2);
  transform: translateY(-3px);
}

.service-card {
  border-bottom: 5px solid var(--primary);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.check-list i {
  color: var(--primary);
  margin-right: 8px;
}

.hero-gradient {
  background: linear-gradient(135deg, #004bb1 0%, #002b6b 100%);
}

.logo {
  color: var(--color-text);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  max-width: 250px;
}

.logo img {
  height: auto;
  width: 100%;
}