@charset "UTF-8";
/* CSS Document */

.employee-top {
  display: flex;
  flex-wrap: wrap;
  min-height: 350px;
}

.employee-top img {
  object-fit: cover;
  object-position: top;
  width: 20%;
  height: auto;
}

.employee-title {
  text-align: center;
}

.employee-title h2 {
  font-size: 8.2rem;
  font-weight: 700;
  color: var(--green);
}

.employee-title p {
  font-size: 4.2rem;
}

.member1 {
  padding: 100px 0 0px;
  z-index: 1;
  background: #FFFFFF;
}

.member2 {
  padding: 100px 0 100px;
  margin-top: -100px;
  border-radius: 100px 100px 0 0;
  z-index: 2;
  background: #f4f4f4;
}


.top4Image {
  position: relative;
  z-index: 6;
}

footer {
  z-index: 7;
}

@media (max-width: 1025px) {
  .member1 {
    padding: 50px 0 50px;
  }

  .member2 {
    padding: 50px 0 50px;
    margin-top: -50px;
    border-radius: 50px 50px 0 0;
  }

}

@media (max-width: 599px) {

  .employee-top {
    margin-top: 100px;
    height: 350px;
  }

  .employee-top img:nth-child(1),
  .employee-top img:nth-child(2) {
    width: 50%;
    height: 50%;
    object-position: 50% 10%;
  }

  .employee-top img:nth-child(3),
  .employee-top img:nth-child(4),
  .employee-top img:nth-child(5) {
    width: calc(100% / 3);
    height: 50%;
  }
}

.menber__wapper {
  width: 90%;
  max-width: 1520px;
  margin: 0 auto;
}

.menber__wapper__topFrame {
  position: relative;
}

.menber__wapper__topFrame::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.menber__wapper__topImage {
  display: block;
  border-radius: 100px;
  margin-bottom: 50px;
}


@media (max-width: 1025px) {
  .menber__wapper {
    width: 100%;
  }

  .menber__wapper__topImage {
    border-radius: 0;
  }


  .pc {
    display: none;
  }

}

@media (max-width: 599px) {


  .employee-title h2 {
    font-size: 2.8rem;
  }

  .employee-title p {
    font-size: 1.6rem;
  }
}
/* 社員紹介一覧のスタイル */
.employee-list {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}

.padding-bottom_250px {
  padding-bottom: 250px;
}


.employee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: start;
}

.employee-item {
  width: calc(33.333% - 20px);
  min-width: 350px;
  max-width: 500px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.employee-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.employee-item__image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.employee-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.employee-placeholder {
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.4rem;
}

.employee-item__content {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  gap: 20px;
  font-size: 1.3rem;
}

.employee-item__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #333;
  line-height: 1.4;
  text-align: start;
  flex: 1;
}

.employee-data {
  flex: 1;
  text-align: start;
}

.employee-data p {
  margin: 5px 0;
  font-size: 1.4rem;
  color: #666;
}


.employee-item__category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.employee-category-tag {
  background: var(--green);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 500;
}

.employee-empty {
  text-align: center;
  padding: 100px 20px;
  color: #666;
  font-size: 1.6rem;
}

/* レスポンシブ対応 */
@media (max-width: 1240px) {
  .employee-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    max-width: none;
  }
  
  .employee-grid {
    gap: 20px;
  }
}

@media (max-width: 850px) {
  .employee-list {
    width: 95%;
    padding: 30px 0;
  }
  
  .employee-item {
    flex: none;
    width: 100%;
    min-width: auto;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .employee-grid {
    gap: 15px;
  }
  
  /* .employee-item__image {
    height: 180px;
  } */
  
  .employee-item__title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  /* .employee-item__image {
    height: 160px;
  } */
  
  .employee-item__content {
    padding: 15px;
  }
  
  .employee-item__title {
    font-size: 1.4rem;
  }
  
  .employee-category-tag {
    font-size: 1.1rem;
    padding: 3px 10px;
  }
}

@media (max-width:599px) {
  .pc-flex {
    display: none;
  }
}

@media (min-width:600px) {
  .sp-flex {
    display: none;
  }
}