/* 共通定義 */
.member_title_ul {
  margin: 0;
  list-style: none;
  padding-left: 0;

  li {
    position: relative;
    padding-left: 35px;
    color: #000;
    font-family: Khand;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
  }

  li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: #1860cc;
  }
}

.post_ul {
  margin: 0;
  list-style: none;
  padding-left: 0;

  li {
    position: relative;
    padding-left: 20px;
    color: #000;
    font-family: Khand;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }

  li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #1860cc;
  }
}

main {
  .staff {
    margin: 100px auto 0;
    width: 1300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;

    .staff_member {
      margin: 50px auto 0;
      display: inline-flex;
      width: 946px;
      justify-content: center;
      align-items: flex-start;
      gap: 101px;
      flex-shrink: 0;

      .staff_introduction {
        display: flex;
        width: 248px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 30px;
        flex-shrink: 0;

        .staff_name {
          display: flex;
          padding-bottom: 2px;
          flex-direction: column;
          justify-content: center;
          align-items: flex-start;
          gap: 10px;
          flex-shrink: 0;

          span {
            color: #000;
            font-family: "Sawarabi Gothic";
            font-size: 30px;
            font-style: normal;
            font-weight: 400;
            line-height: 100%;
          }
        }

        .staff_photo {
          width: 248px;
          height: 400px;
        }
      }
    }
  }

  .player {
    margin: 100px auto 0;
    width: 1300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    .player_table_outer {
      width: 1300px;

      .player_table {
        margin-top: 50px;
        width: 100%;
        border-collapse: collapse;
        pointer-events: none;

        tr {
          border-bottom: 1px solid #aaa;
        }

        th,
        td {
          text-align: center;
          padding: 30px 0;

          a {
            text-decoration: none;
          }
        }

        th:nth-child(3),
        td:nth-child(3) {
          padding: 30px 0;
        }
      }
    }
  }
}

@media (width <= 1300px) {
  /* 共通定義 */
  .member_title_ul {
    li {
      font-size: 40px;
    }
  }
  /* 共通定義 */
  .post_ul {
    li {
      padding-left: 15px;
      font-size: 20px;
    }
  }

  main {
    .staff {
      width: 750px;

      .staff_member {
        width: 750px;
        gap: 30px;

        .staff_introduction {
          width: 190px;

          .staff_name {
            span {
              font-size: 20px;
            }
          }

          .staff_photo {
            width: 190px;
            height: 306px;
          }
        }
      }
    }

    .player {
      width: 750px;

      .player_table_outer {
        width: 750px;

        .player_table {
          th,
          td {
            text-align: center;
            padding: 30px 20px;

            a {
              text-decoration: none;
            }
          }
        }
      }
    }
  }
}

@media (width <= 768px) {
  /* 共通定義 */
  .member_title_ul {
    li {
      padding-left: 20px;
      font-size: 30px;
    }

    li::before {
      width: 10px;
      height: 10px;
    }
  }

  main {
    .staff {
      width: auto;
      padding: 0 30px;
      align-items: center;

      .staff_member {
        flex-direction: column;
        width: auto;
        gap: 50px;

        .staff_introduction {
          width: auto;

          .staff_photo {
            width: 248px;
            height: 400px;
          }
        }
      }
    }

    .player {
      width: auto;
      padding: 0 20px;
      align-items: center;

      .player_table_outer {
        width: 100%;
        overflow-x: auto;

        .player_table {
          width: 750px;

          th,
          td {
            padding: 20px 10px;
            font-size: 14px;
          }
        }
      }
    }
  }
}
