@charset "UTF-8";
.page_staff {
  color: #fff;
  background-color: #343432;
}

.staff_cont_sec .list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px;
}

.staff_cont_sec .list li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.staff_cont_sec .list li a .img {
  margin-block: 0 0.7em;
}

.staff_cont_sec .list li a .img img {
  width: 100%;
  aspect-ratio: 53/30;
  object-fit: cover;
}

.staff_cont_sec .list li a .text_box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.staff_cont_sec .list li a .text_box .catch {
  margin-block: 0 2em;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: #fff;
}

.staff_cont_sec .list li a .text_box .profile {
  margin-block: 0 0.5em;
}

.staff_cont_sec .list li a .text_box .position {
  margin-block: 0 0.25em;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #c6c6c6;
}

.staff_cont_sec .list li a .text_box .name {
  font-size: 24px;
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
}

/* トップブログと同じ common_more */
.staff_cont_sec .list li a .text_box .common_more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 280px;
  height: 39px;
  margin: auto 0 0 0;
  border-bottom: 1px solid #676767;
  color: #fff;
  box-sizing: border-box;
  transition: background 0.3s, color 0.3s;
}

.staff_cont_sec .list li a .text_box .common_more_label {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.staff_cont_sec .list li a .text_box .common_more_icon {
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: auto;
  color: inherit;
}

.staff_cont_sec .list li a .text_box .common_more_text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.8;
  color: #fff;
}

.staff_cont_sec .list li a .text_box .common_more_action {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.staff_cont_sec .list li a .text_box .common_more_en {
  font-size: 14px;
  line-height: 1;
  font-family: "Baskerville", sans-serif;
  color: #fff;
  transition: transform 0.3s;
  margin-right: 10px;
}

.staff_cont_sec .list li a .text_box .common_more_line {
  display: block;
  width: 0;
  height: 20px;
  margin-left: 0;
  background: #e5e5e5;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s, width 0.3s, margin 0.3s;
}

.staff_cont_sec .list li a .text_box .common_more_arrow {
  position: relative;
  display: inline-block;
  width: 0;
  height: 12.5px;
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s, width 0.3s, margin 0.3s;
}

.staff_cont_sec .list li a .text_box .common_more_arrow::before,
.staff_cont_sec .list li a .text_box .common_more_arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 12.5px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}

.staff_cont_sec .list li a .text_box .common_more_arrow::before {
  transform: rotate(22.5deg);
}

.staff_cont_sec .list li a .text_box .common_more_arrow::after {
  transform: rotate(-22.5deg);
}

.staff_cont_sec .list li a:hover .text_box .common_more {
  color: #fff;
}

.staff_cont_sec .list li a:hover .text_box .common_more_line {
  width: 1px;
  opacity: 1;
}

.staff_cont_sec .list li a:hover .text_box .common_more_arrow {
  width: 12.1px;
  margin-left: 13px;
  opacity: 1;
  overflow: visible;
}

@media (max-width: 750px) {
  .staff_cont_sec .list ul {
    grid-template-columns: 1fr;
    gap: 18vw;
  }
  .staff_cont_sec .list li a .text_box .catch {
    font-size: 3.5vw;
    margin-block: 0 2em;
  }
  .staff_cont_sec .list li a .text_box .profile {
    margin-block: 0 0.4em;
  }
  .staff_cont_sec .list li a .text_box .position {
    font-size: 3.1vw;
  }
  .staff_cont_sec .list li a .text_box .name {
    font-size: 5.1vw;
  }
  .staff_cont_sec .list li a .text_box .common_more {
    max-width: 66.67vw;
    height: 10vw;
    gap: 4.1vw;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: 0;
    align-self: flex-start;
  }
  .staff_cont_sec .list li a .text_box .common_more_label {
    gap: 3.85vw;
  }
  .staff_cont_sec .list li a .text_box .common_more_icon {
    width: 3.08vw;
  }
  .staff_cont_sec .list li a .text_box .common_more_text {
    font-size: 3.33vw;
  }
  .staff_cont_sec .list li a .text_box .common_more_en {
    font-size: 3.33vw;
    margin-right: 0;
  }
  .staff_cont_sec .list li a .text_box .common_more_line,
  .staff_cont_sec .list li a .text_box .common_more_arrow {
    display: none;
  }
}
