body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  background-image: url("../img/kv.png");
  background-size: cover;
  background-position: center;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero .container {
  z-index: 1;
  position: relative;
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

.tagline {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.about {
  background-image: url("../img/about.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 1.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 480px;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-bottom: 2rem;
  text-align: center;
  animation: fade-up 1s ease-out both;
}

.about h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
}

.business-section .business-block {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  height: 560px;
  display: flex;
  align-items: center;
}

.business-section .business-block .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.business-section .business-block .text-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 2rem 3rem;
  background: rgba(0, 0, 0, 0);
}

.business-section .business-block .number {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  border-left: 4px solid #e60012;
  padding-left: 1rem;
}

.business-section .business-block h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.business-section .business-block p {
  font-size: 1.05rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .business-section .business-block {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .business-section .business-block .text-content {
    max-width: 90%;
  }
  .business-section .business-block .number {
    font-size: 2rem;
  }
  .business-section .business-block h3 {
    font-size: 1.8rem;
  }
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
}

.products {
  padding: 3rem 0;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.product-card {
  flex: 1 1 calc(33% - 1rem);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1rem;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.company {
  background-image: url("../img/roppongi.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 1.5rem;
  position: relative;
}

.company::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.company .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  animation: fade-up 1s ease-out both;
}

.company h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.company p {
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  animation: fade-up 0.8s ease-out both;
}

.hero,
.about,
.business-block,
.products,
.company {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.map {
  min-height: 100vh;
  padding: 4rem 1rem;
  text-align: center;
}

.map h2 {
  margin-bottom: 2rem;
}

.map .map-outer {
  width: 100%;
  max-width: 960px;
  height: 60vh;
  margin: 0 auto;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/*# sourceMappingURL=style.css.map */