/* Google Fonts */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', Helvetica, sans-serif;
  background-color: white;
  color: #333333;
  overflow-x: hidden;
  line-height: 1.6;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

body .l-wrapper #content .l-container {
  max-width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}

/* Hero */
.section-hero {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('../images/contact_fv.webp');
  background-size: cover;
  background-position: top;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.hero-title {
  font-weight: 400;
  color: white;
  font-size: 40px;
  letter-spacing: 6px;
  line-height: 1.2;
}

.contact-form_section {
  width: 1200px;
  margin: 150px auto;
}

@media (max-width: 1024px) {

  .section-hero {
    padding: 72px 16px 180px;
  }

  .hero-title {
    font-size: 34px;
    letter-spacing: 5px;
  }

}

@media (max-width: 768px) {
  .section-hero {
    min-height: 100px;
    padding: 50px 5px;
  }
}

@media (max-width: 480px) {

  .hero-title {
    font-size: 26px;
    letter-spacing: 3px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #99cc66;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #88bb55;
}

#content .l-content__body {
  margin: 0 auto;
}