* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  overscroll-behavior: none;
}

html,
body {
  height: 100%;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .home-page-container {
    width: 100vw;
  }
}

.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-weight: bold;
  font-size: 24px;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.logo img {
  width: 50px;
  height: 50px;
}

.contact {
  margin: 0 auto;
  background-color: #d3dcd8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-cta {
  background: #f0fff7;
  padding: 80px 20px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  top: -40px;
}

.contact-banner {
  background: #00e676;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.contact-banner-title {
  color: white;
  font-size: 36px;
  margin: 0;
  font-weight: normal;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-description {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 60px;
}

.contact-illustration {
  width: 120px;
  height: auto;
  margin: 0 auto 30px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  background: #2d3436;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  margin-left: 20px;
}

.contact-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-button-text {
  margin-left: 40px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 40px 20px;
  }

  .contact-banner-title {
    font-size: 28px;
  }
}
/* Sections */
.section {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 400;
}

.section-title::after {
  content: url("../demo/assets/images/after-sub-title.svg");
  position: absolute;
  left: 50%;
  transform: translate(-50%, -15%);
  z-index: -1;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .section-title::after {
    transform: translate(-50%, -30%);
  }
}

.service-image {
  width: 100%;
  max-width: 800px;
  margin-top: -120px;
  border-radius: 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

/* Works */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.work-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Values */
.values {
  background: #f5f5f5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.value-box {
  padding: 30px;
  background: white;
  border-radius: 8px;
  text-align: left;
}

/* Contact */
.contact-card {
  background: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 30px;
}

.company-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.company-logo .logo-text {
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
}

.company-logo .logo-slash {
  color: #00d488;
  margin-right: 10px;
}

.contact-info {
  margin-bottom: 20px;
  font-size: 14px;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

/* Social Media Section */
.social-media {
  flex: 0 0 400px;
  padding-left: 20px;
}

.social-media img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 4px;
}

.copyright {
  text-align: right;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

/* Green Shape */
.green-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 400px;
  background: #00d488;
  border-radius: 0 100% 100% 0;
  z-index: -1;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  min-width: 270px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  padding: 5px;
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 999999;
}

.btn-menu {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btnMenuText {
  margin-left: 5px;
}
