/* ファーストビュー */
.first-view {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.first-view-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.first-view-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0; 
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.first-view-bg img.active {
  opacity: 1;
  z-index: 1;
}

  .first-view-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
  }
  .first-view-left img {
    height: 100%;
  }
  
  .first-view-right {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
  }
  
  .first-view-right img {
    width: 300px;
    height: auto;
    display: block;
  }

  /* テキスト + ロゴ */
  .first-view-overlay {
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 40vw;
    padding: 50px 0;
    z-index: 3;
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  
  .first-view-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
  }
  
  .first-view-text {
    font-size: 52px;
    color: #6fb92c;
    background: #fff;
    padding: 10px 20px;
  }
  
  .first-view-subtext {
    font-size: 20px;
    color: #333;
    padding: 10px 20px;
  }
  
  .first-view-logo {
    width: 200px;
  }
  .first-view-logo img {
    width: 100%;
  }

  /* セクション１：information */
  .news {
    background-color: #f6f7f8;
    padding: 40px 20px;
  }
  
  .news h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    border-left: 6px solid #6fb92c;
    padding-left: 12px;
    color: #6fb92c;
  }
  
  .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .news-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
  }
  
  .news-date {
    width: 100px;
    color: #555;
    font-weight: bold;
  }
  
  .news-text {
    flex: 1;
    color: #333;
  }
  
  .news-list li:hover .news-text {
    text-decoration: underline;
    color: #009245;
  }
  

  /* セクション２：about */
  .about {
    padding: 60px 20px;
  }
  
  .about .l-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  

  .about-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text p {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    text-align: left;
  }
  
  .about-text .l-button {
    margin-top: 10px;
  }
  
  .about-image {
    flex: 1;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
    height: auto;
  }
  

/* セクション3：our service */
.service{
  background-color: #009245;
  padding: 60px;
}

.service .l-container {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

.service h2{
color: #fff;

}

.service h3 {
  color: #fff;
}

  
  .service-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 0 auto;}
  
  .service-item {
    text-align: center;
    max-width: 300px;
    padding-top: 30px;
  }
  
  .service-item img {
    display: block;
    margin: 0 auto 16px auto;
    width: 80%;
  }
  
  
  .service-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .service-item p {
    font-size: 14px;
    color: #fff;
  }

  
.service .l-button {
  background-color: #fff;
  color: #6fb92c;
  margin-top: 30px;
}

.l-button:hover {
  background-color: #b2d98c;
}


/* セクション4：our vision */
.vision {
    background-color: #f5f5f5;
    padding: 60px 20px;
  }

  .vision .l-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .vision-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: flex-start; 
  }
  
  .vision-container > div {
    flex: 1 1 50%;
  }
  
  .vision-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
  }
  
  .vision-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.8;
  }
  
  .vision .l-button {
    margin-top: 40px;
    display: inline-block;
  }
  