@charset "UTF-8";
/* ==========================================================================//
//
// member
//
// ========================================================================== */
.page_body section:not(:last-child) {
  margin-bottom: 120px;
}
.page_body section .sec_head {
  margin-bottom: 35px;
}
@media all and (min-width: 751px) {
  .page_body section .sec_head {
    margin-bottom: 70px;
  }
}
.page_body section .sec_ttl {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 30px;
  margin-bottom: 12px;
}
@media all and (min-width: 751px) {
  .page_body section .sec_ttl {
    font-size: 54px;
    margin-bottom: 6px;
  }
}
.page_body section .sec_lead {
  line-height: 1.92;
}

/* タブ（SPのみ）
---------------------------------------------------------- */
@media all and (min-width: 751px) {
  .tab_container {
    display: contents;
  }
  .tab_container .tab_button_list {
    display: none;
  }
}
@media all and (max-width: 750px) {
  .tab_container .tab_button_list {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #EFEFEF;
    border-radius: 5px;
    margin-bottom: 40px;
  }
  .tab_container .tab_button_list::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #312E2E;
    border-radius: 5px;
    z-index: -1;
    -webkit-transition: left 0.4s ease;
    transition: left 0.4s ease;
  }
  .tab_container .tab_button_item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .tab_container .tab_button_item a {
    display: -ms-grid;
    display: grid;
    place-items: center;
    color: #969696;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    font-weight: 500;
    letter-spacing: 0.01em;
    font-size: 16px;
    padding: 12px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .tab_container .tab_button_item.tab-active a {
    color: #fff;
  }
  .tab_container .tab_button_list:has(.tab_button_item:nth-child(2).tab-active)::before {
    left: 50%;
  }
  .tab_container .tab_content_item {
    display: none;
    opacity: 0;
  }
  .tab_container .tab_content_item.content-active {
    display: block;
    -webkit-animation: fadeUpAnime 0.6s forwards;
            animation: fadeUpAnime 0.6s forwards;
  }
}

/* 一覧
---------------------------------------------------------- */
.member_list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 25px 12px;
}
@media all and (min-width: 751px) {
  .member_list {
    grid-template-columns: repeat(auto-fill, minmax(226px, 1fr));
    gap: 60px 20px;
  }
}

.member_item button {
  display: block;
  width: 100%;
  text-align: left;
}
@media (hover: hover) {
  .member_item button img {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .member_item button:hover img {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
  }
}
.member_item .image {
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 285/384;
}
.member_item .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.member_item .texts {
  margin-top: 10px;
}
@media all and (min-width: 751px) {
  .member_item .texts {
    margin-top: 15px;
  }
}
.member_item .name {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 14px;
}
@media all and (min-width: 751px) {
  .member_item .name {
    font-size: 18px;
  }
}
.member_item .position {
  color: #7e7e7e;
  font-size: 11px;
  margin-top: 4px;
}
@media all and (min-width: 751px) {
  .member_item .position {
    font-size: 12px;
  }
}

/* モーダル
---------------------------------------------------------- */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 953px;
  width: 84%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.modal .modal_content {
  position: relative;
}
.modal .modal_close {
  position: absolute;
  top: -10px;
  right: 0;
  aspect-ratio: 2/1;
  width: 34px;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}
@media all and (max-width: 750px) {
  .modal .modal_close {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@media all and (min-width: 751px) {
  .modal .modal_close {
    top: 20px;
    right: 20px;
    width: 40px;
  }
}
.modal .modal_close::before, .modal .modal_close::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 50%;
}
@media all and (min-width: 751px) {
  .modal .modal_close::before, .modal .modal_close::after {
    background-color: #312E2E;
  }
}
.modal .modal_close::before {
  -webkit-transform: translate(-50%, -50%) rotate(28deg);
          transform: translate(-50%, -50%) rotate(28deg);
}
.modal .modal_close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-28deg);
          transform: translate(-50%, -50%) rotate(-28deg);
}
.modal .modal_item {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
@media all and (min-width: 751px) {
  .modal .modal_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media all and (min-width: 751px) {
  .modal .modal_item .image {
    width: 43%;
  }
}
.modal .modal_item .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/0.667;
}
@media all and (min-width: 751px) {
  .modal .modal_item .image img {
    aspect-ratio: 1/1.349;
  }
}
.modal .modal_item .texts {
  padding: 30px 20px;
}
@media all and (min-width: 751px) {
  .modal .modal_item .texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 60px;
  }
}
.modal .modal_item .texts .name {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 24px;
}
@media all and (min-width: 751px) {
  .modal .modal_item .texts .name {
    font-size: 40px;
  }
}
.modal .modal_item .texts .position {
  color: #7e7e7e;
  font-size: 13px;
  margin-top: 6px;
}
@media all and (min-width: 751px) {
  .modal .modal_item .texts .position {
    font-size: 15px;
    margin-top: 18px;
  }
}
.modal .modal_item .texts .text {
  line-height: 1.92;
  margin-top: 14px;
}
@media all and (min-width: 751px) {
  .modal .modal_item .texts .text {
    margin-top: 30px;
  }
}
.modal .modal_item .texts .skill_list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 4px;
  margin-top: 25px;
}
@media all and (min-width: 751px) {
  .modal .modal_item .texts .skill_list {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 6px;
    margin-top: 40px;
  }
}
.modal .modal_item .texts .skill_item {
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  background-color: #EFEFEF;
  border-radius: 3px;
}
@media all and (min-width: 751px) {
  .modal .modal_item .texts .skill_item {
    border-radius: 5px;
    padding: 6px;
  }
}
.modal .modal_item .texts .skill_item img {
  width: 46px;
}
@media all and (min-width: 751px) {
  .modal .modal_item .texts .skill_item img {
    width: 60px;
  }
}
.modal .modal_item .texts .skill_item p {
  font-size: 12px;
}
@media all and (min-width: 751px) {
  .modal .modal_item .texts .skill_item p {
    font-size: 13px;
  }
}
.modal .modal_arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}
@media all and (min-width: 751px) {
  .modal .modal_arrows {
    width: 120%;
  }
}
.modal .modal_arrow {
  position: relative;
  width: 36px;
  height: 72px;
  background-color: rgba(167, 167, 167, 0.5);
}
@media all and (min-width: 751px) {
  .modal .modal_arrow {
    aspect-ratio: 4/3;
    width: 7%;
    background-color: transparent;
  }
}
.modal .modal_arrow::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  width: 50%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
}
.modal .modal_prev {
  border-radius: 0 8px 8px 0;
}
.modal .modal_prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
@media all and (min-width: 751px) {
  .modal .modal_prev::before {
    -webkit-transform: translate(-25%, -50%) rotate(-135deg);
            transform: translate(-25%, -50%) rotate(-135deg);
  }
}
@media (min-width: 751px) and (hover: hover) {
  .modal .modal_prev:hover::before {
    left: 40%;
  }
}
.modal .modal_next {
  margin-left: auto;
  border-radius: 8px 0 0 8px;
}
.modal .modal_next::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media all and (min-width: 751px) {
  .modal .modal_next::before {
    -webkit-transform: translate(-75%, -50%) rotate(45deg);
            transform: translate(-75%, -50%) rotate(45deg);
  }
}
@media (min-width: 751px) and (hover: hover) {
  .modal .modal_next:hover::before {
    left: 60%;
  }
}

.modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(49, 46, 46, 0.9);
  z-index: 50;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
}
.modal_overlay.is-active {
  opacity: 1;
  visibility: visible;
}

body.modal_open {
  overflow: hidden;
}