.l-section{
    padding-left: 0;
    padding-right: 0;
}
/* Section Title */
  .section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid #384894;
  }

  .craftsman-item:nth-of-type(2n) {
  background-color: #efefef;
}

  /* Craftsman Section */
  .craftsman-section {
    padding: 80px 0;
    
  }


  .craftsman-item .craftsman-content {
    margin-bottom: 160px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .craftsman-item:last-child {
    margin-bottom: 0;
  }

  .craftsman-content {
    display: flex;
    gap: 70px;
    align-items: center;
    padding: 80px 0;
  }

  .craftsman-image {
    flex: 0 0 370px;
  }

  .craftsman-image img,
  .craftsman-image .placeholder-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .craftsman-info {
    flex: 1;
  }

  .craftsman-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
  }

  .craftsman-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
  }

  .craftsman-sns {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .craftsman-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #333;
    transition: opacity 0.3s;
  }

  .craftsman-sns a:hover {
    opacity: 0.6;
  }

  .craftsman-sns svg {
    width: 24px;
    height: 24px;
  }

  .craftsman-name-en {
    font-size: 1.4rem;
    color: #666;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
  }

  .craftsman-bio {
    font-size: 1.5rem;
    line-height: 2.2;
    margin-bottom: 40px;
  }

  .craftsman-works {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
  }

  .craftsman-works img,
  .craftsman-works .placeholder-img {
    width: 200px;
    height: 180px;
    object-fit: cover;
  }

  .craftsman-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    border: 1px solid #333;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
  }

  .craftsman-link:hover {
    background: #333;
    color: #fff;
  }

  .craftsman-link::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .craftsman-content {
      flex-direction: column;
      gap: 40px;
    }

    .craftsman-image {
      flex: none;
      width: 100%;
    }

    .craftsman-image img,
    .craftsman-image .placeholder-img {
      height: 400px;
    }
  }

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

    .craftsman-section {
      padding: 60px 0;
    }

    .craftsman-item {
      margin-bottom: 80px 0;
    }

    .craftsman-header {
      flex-wrap: wrap;
    }

    .craftsman-name {
      font-size: 2.4rem;
    }

    .craftsman-works {
      flex-wrap: wrap;
    }

    .craftsman-works img,
    .craftsman-works .placeholder-img {
      width: auto;
      height: auto;
      text-align: center;
      margin: 0 auto;
    }
  }

  @media (max-width: 480px) {
    .craftsman-works img,
    .craftsman-works .placeholder-img {
      width: 100%;
    }

    .craftsman-link {
      width: 100%;
      justify-content: center;
    }
  }