/* 持続可能な未来を創造する */
.subpage-about{
  padding: 60px 20px;
}

.subpage-about .l-container{
  max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.subpage-about h2{
  font-size: 48px;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
}

.subpage-about-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #444;
  font-size: 16px;
  padding-bottom: 100px;
}


/* aboutサブページリンクボタン */
.subpage-about-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .nav-card {
    display: block;
    width: 22%;
    text-decoration: none;
    color: #333;
    overflow: hidden;
    position: relative;
  }

  .nav-card-image {
    position: relative;
    overflow: hidden; 
  }
  
  .nav-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .nav-card:hover .nav-card-image img {
    transform: scale(1.05);
  }
  
  .nav-card-title {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color:#f6f7f8;
    color: #222;
    font-size: 13px;
    padding: 4px 8px;
    z-index: 1;
  }
  

  