@charset "UTF-8";
/* CSS Document */
#container {
  background-image: none;
}
#member-container .inner {
  background-color: #fff;
  max-width: 1000px;
  padding: 0;
  margin: 80px auto;
  border: none;
}
#member-container a {
  color: #333
}
#member-container ul {
  margin: 0 0 80px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: #333 1px solid;
}
#member-container ul::after {
  content: "";
  display: block;
  width: 32%;
}
#member-container .tab-button ul::after {
  display: none;
}
.tab-button ul li.active a {
  color: #4dc2a8 !important; /* !important を追加して色を強制的に適用 */
}
#member-container li {
  list-style: none;
  width: 32%;
  height: 100%;
  background-color: #999;
  margin: 0 0 40px;
}
#member-container li img {
  background-color: #ccc;
  width: 100%;
  aspect-ratio: 16 / 9;
  vertical-align: top;
  object-fit: cover;
  margin-left: 0;
}
#member-container li:hover img {
  /* ホバー時の変化を無効にするため、スタイルを削除またはリセット */
  opacity: 1;
  filter: none;
}
#member-container li:hover::after {
  /* ホバー時の変化を無効にするため、スタイルを削除またはリセット */
  background-image: url("../images/common/sankaku_black.png"); /* 元の画像をそのまま表示 */
}
.member-top {
  display: flex;
  margin: 80px 0;
}
.member-top img {
  max-width: 350px;
  aspect-ratio: 1/1;
  margin-right: 60px;
}
.member-top_right {
  margin-top: auto;
  text-align: left;
}
.member-top_right a {
  color: #fff;
}
.member-top_right .position {
  font-family: "Oswald";
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.member-top_right .name {
  font-size: 2.4rem;
  padding: 0 100px 25px 0;
  margin-bottom: 25px;
}
.member-top_right .name.pc {
  display: block;
}
.member-top_right .name.sp {
  display: none;
}
.flex {
  display: flex;
  align-items: center;
}
.member-top_right a {
  height: 40px;
}
.portfolio-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  background-color: #111;
  padding: 15px 35px;
  margin: 0;
  text-align: center;
}
.portfolio-button span {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #fff;
}
.portfolio-button .portfolio-button_img {
  margin: 0 0 0 20px;
  width: 16px;
  height: 16px;
}
.logo-x {
  border: #333 1px solid;
  margin-left: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
}
.logo-x img {
  max-width: 32px;
  height: auto;
  margin: 0;
}
.profile {
  text-align: left;
  width: 100%;
  margin-bottom: 60px;
}
.profile p {
  line-height: 3rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
.more-button {
  width: auto;
  padding: 10px 40px 10px 20px;
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: none;
}
.more-button img {
  margin-left: 20px;
}
.tab-button {
  padding: 0 20px;
  font-size: 1.2rem;
  height: 24px;
  box-shadow: none;
  border: 1px #222 solid;
  margin-bottom: 30px;
}
#member-container li::after {
  content: none;
}
@media (max-width: 1350px) {}
@media (max-width: 600px) {
  #member-container .inner {
    margin: 40px auto;
    padding: 0 30px;
  }
  .member-top {
    display: block;
    margin: 0;
  }
  .member-top img {
    max-width: 320px;
    margin: auto;
  }
  .member-top_right {
    margin: 40px auto 0;
    text-align: center;
    align-items: center; /* 子要素を中央揃え */
  }
  .member-top_right .name {
    padding: 0;
    margin: 0 0 40px 0;
    font-size: 2.6rem;
  }
  .member-top_right .name.pc {
    display: none;
  }
  .member-top_right .name.sp {
    display: block;
    line-height: 3.2rem;
  }
  .member-top_right .margin-none {
    margin: 0;
  }
  .member-top_right .flex {
    margin: 0 auto;
    justify-content: center; /* 水平方向中央揃え */
  }
  .logo-x {
    padding: 4px;
  }
  .logo-x img {
    max-width: 44px;
  }
  .profile {
    text-align: left;
    width: 100%;
    padding: 0 20px 0 0;
    margin: 70px 0;
  }
  .more-button {
    padding: 10px 25px;
  }
  #member-container ul {
    margin: 0 0 40px;
  }
  #member-container li {
    width: 47%;
    margin: 0 0 20px;
  }
}