.area .area-nationwide svg, .area .global-badge .badge-inner svg, .strength .strength-item .icon-wrap svg, .position-section .not-card li svg, .position-section .do-card li svg, .services .service-card .service-body .rov-note svg, .services .service-card > svg, .problems .problem-card .card-icon svg, .hero .scroll-indicator svg, .menu-btn svg, .logo svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  background-color: #f8fafc;
  color: #334155;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.header-logo {
  max-width: clamp(11.25rem, -0.141rem + 48.6vw, 23.1875rem);
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}
.section-heading h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}
.section-heading .heading-bar {
  width: 4rem;
  height: 4px;
  background-color: #1e3a8a;
  margin: 0 auto;
}
.section-heading p {
  margin-top: 1rem;
  color: #475569;
  line-height: 1.75;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .header-inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header-inner {
    padding: 0 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #1e293b;
  flex-shrink: 0;
}
.logo span {
  font-weight: 700;
  font-size: 1.125rem;
  color: #0f172a;
  letter-spacing: -0.025em;
}

.main-nav {
  display: none;
  gap: 2rem;
}
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  transition: color 150ms;
}
.main-nav a:hover {
  color: #1e3a8a;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #475569;
  padding: 0.25rem;
}
@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}
.menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-nav {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}
.mobile-nav.open {
  display: block;
}
@media (min-width: 768px) {
  .mobile-nav.open {
    display: none;
  }
}
.mobile-nav .mobile-nav-inner {
  padding: 0.5rem 0.5rem 0.75rem;
}
@media (min-width: 640px) {
  .mobile-nav .mobile-nav-inner {
    padding: 0.5rem 0.75rem 0.75rem;
  }
}
.mobile-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #475569;
}
.mobile-nav a:hover {
  color: #1e3a8a;
  background-color: #f8fafc;
}

.hero {
  position: relative;
  padding-top: 4rem;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(30, 58, 138, 0.6), rgba(15, 23, 42, 0.9));
  mix-blend-mode: multiply;
  z-index: 1;
}
.hero .hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.hero .hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.1;
  z-index: 2;
}
.hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero .hero-sub {
  color: #bfdbfe;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero .hero-sub {
    font-size: 1rem;
  }
}
.hero h1 {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}
.hero .hero-desc {
  color: #cbd5e1;
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 1rem auto 0;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .hero .hero-desc {
    font-size: 1.25rem;
  }
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  color: #94a3b8;
  animation: bounce 1s infinite;
}
.hero .scroll-indicator .scroll-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero .scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero .scroll-indicator svg {
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(90deg);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.problems {
  padding: 5rem 0;
  background-color: #ffffff;
}
.problems .problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .problems .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.problems .problem-card {
  background-color: #f8fafc;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 150ms;
}
.problems .problem-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.problems .problem-card .card-icon {
  background: #ffffff;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: #1e3a8a;
}
.problems .problem-card .card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.problems .problem-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}
.problems .problem-card p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.75;
}

.services {
  padding: 5rem 0;
  background-color: #f8fafc;
}
.services .services-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .services .services-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .services .services-sidebar {
    width: 33.333%;
    position: sticky;
    top: 6rem;
  }
}
.services .services-sidebar h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}
.services .services-sidebar .heading-bar {
  width: 4rem;
  height: 4px;
  background-color: #1e3a8a;
  margin-bottom: 1.5rem;
}
.services .services-sidebar p {
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.services .services-sidebar .badge {
  display: inline-block;
  background-color: #1e3a8a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}
.services .services-list {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services .services-list {
    width: 66.666%;
  }
}
.services .service-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-left: 4px solid #1e3a8a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.services .service-card > svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #1e3a8a;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.services .service-card .service-body {
  width: 100%;
}
.services .service-card .service-body .service-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.services .service-card .service-body .service-title-row h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
}
.services .service-card .service-body .service-title-row .label-main {
  background-color: #dbeafe;
  color: #1e40af;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.services .service-card .service-body > p {
  color: #475569;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.services .service-card .service-body .rov-note {
  background-color: #f8fafc;
  padding: 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.services .service-card .service-body .rov-note svg {
  width: 1rem;
  height: 1rem;
  color: #1d4ed8;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.position-section {
  padding: 5rem 0;
  background-color: #1e3a8a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.position-section .blob-top {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -5rem;
  margin-right: -5rem;
  width: 20rem;
  height: 20rem;
  background: #1e40af;
  border-radius: 9999px;
  opacity: 0.5;
  filter: blur(64px);
  pointer-events: none;
}
.position-section .blob-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -5rem;
  margin-left: -5rem;
  width: 15rem;
  height: 15rem;
  background: #0f172a;
  border-radius: 9999px;
  opacity: 0.5;
  filter: blur(64px);
  pointer-events: none;
}
.position-section .position-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  text-align: center;
}
@media (min-width: 640px) {
  .position-section .position-inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .position-section .position-inner {
    padding: 0 2rem;
  }
}
.position-section .position-inner h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.position-section .position-inner > p {
  font-size: 1.125rem;
  color: #dbeafe;
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.position-section .position-grid {
  display: grid;
  gap: 2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .position-section .position-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.position-section .do-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.position-section .do-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.position-section .do-card h3 .tag {
  background: #ffffff;
  color: #1e3a8a;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.position-section .do-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.position-section .do-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #eff6ff;
}
.position-section .do-card li svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  min-width: 1.25rem;
  flex-shrink: 0;
}
.position-section .not-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.position-section .not-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
}
.position-section .not-card h3 .tag {
  background: #334155;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.position-section .not-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.position-section .not-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #94a3b8;
}
.position-section .not-card li svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  min-width: 1.25rem;
  flex-shrink: 0;
}

.strength {
  padding: 5rem 0;
  background-color: #ffffff;
}
.strength .strength-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .strength .strength-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.strength .strength-item .icon-wrap {
  width: 4rem;
  height: 4rem;
  background: #f1f5f9;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.strength .strength-item .icon-wrap svg {
  width: 2rem;
  height: 2rem;
  color: #334155;
}
.strength .strength-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
.strength .strength-item p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.75;
}

.area {
  padding: 5rem 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.area .section-heading {
  margin-bottom: 3rem;
}
.area .section-heading p {
  font-size: 1.125rem;
}
.area .area-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}
.area .global-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.area .global-badge .badge-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e3a8a;
  background: #eff6ff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #dbeafe;
  font-weight: 700;
}
.area .global-badge .badge-inner svg {
  width: 1.25rem;
  height: 1.25rem;
}
.area .area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  color: #334155;
}
@media (min-width: 768px) {
  .area .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .area .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.area .area-region {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 0.5rem;
}
.area .area-region h4 {
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #bfdbfe;
}
.area .area-region ul {
  list-style: disc;
  list-style-position: inside;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.area .area-nationwide {
  background: #1e3a8a;
  padding: 1rem;
  border-radius: 0.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.area .area-nationwide svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.area .area-nationwide p.title {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.area .area-nationwide p.sub {
  font-size: 0.75rem;
  opacity: 0.8;
  line-height: 1.6;
}
.area .area-note {
  font-size: 0.75rem;
  text-align: center;
  color: #64748b;
  margin-top: 1.5rem;
}

.flow {
  padding: 5rem 0;
  background-color: #ffffff;
}
.flow h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 3rem;
}
.flow .flow-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .flow .flow-list {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .flow .flow-list {
    padding: 0 2rem;
  }
}
.flow .flow-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.flow .flow-item .step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #1e3a8a;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow .flow-item .step-body {
  padding-top: 0.25rem;
}
.flow .flow-item .step-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}
.flow .flow-item .step-body p {
  font-size: 0.875rem;
  color: #475569;
  margin-top: 0.5rem;
  line-height: 1.75;
}

.quote-section {
  padding: 6rem 0;
  background-color: #1e293b;
  color: #cbd5e1;
  position: relative;
}
.quote-section .quote-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.quote-section blockquote {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .quote-section blockquote {
    font-size: 1.875rem;
  }
}
.quote-section .divider {
  width: 3rem;
  height: 2px;
  background: #3b82f6;
  margin: 0 auto 2rem;
}
.quote-section p {
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .quote-section p {
    font-size: 1rem;
  }
}
.quote-section p:last-child {
  margin-bottom: 0;
}

.company {
  padding: 5rem 0;
  background-color: #e2e8f0;
  border-top: 1px solid #e2e8f0;
}
.company .company-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .company .company-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.company h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.company h2 .logo {
  max-width: 2rem;
}
.company h2 .logo img {
  width: 100%;
}
.company dl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: #1e293b;
}
.company dl > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 640px) {
  .company dl > div {
    flex-direction: row;
  }
}
.company dl dt {
  width: 6rem;
  flex-shrink: 0;
  font-weight: 700;
  color: #475569;
}
.company .contact-box {
  background: #334155;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #334155;
}
.company .contact-box h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.company .contact-box p {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
.company .contact-box .form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.company .contact-box .form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}
.company .contact-box .form-group input,
.company .contact-box .form-group textarea {
  width: 100%;
  background: #0f172a;
  border: 1px solid #475569;
  border-radius: 0.25rem;
  padding: 0.5rem 0.75rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  outline: none;
  transition: border-color 150ms;
}
.company .contact-box .form-group input:focus,
.company .contact-box .form-group textarea:focus {
  border-color: #3b82f6;
}
.company .contact-box .form-group textarea {
  resize: vertical;
}
.company .contact-box .submit-btn {
  width: 100%;
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  margin-top: 1rem;
  transition: background-color 150ms;
}
.company .contact-box .submit-btn:hover {
  background: #2563eb;
}

.site-footer {
  background-color: #020617;
  color: #64748b;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.75rem;
}/*# sourceMappingURL=style.css.map */