@charset "utf-8";

/*==============================================

	people

==============================================*/
.people_cat_nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  margin-bottom: 70px;
}
.people_cat_nav .people_cat_list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.people_cat_nav .people_cat_list li {
  width: calc((100% - 10px * (5 - 1)) / 5);
}
.people_cat_nav .people_cat_list li a {
    width: 100%;
    height: 100%;
    background-color: #F4F4F3;
    border-radius: 100px;
    padding: 10px 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F4F4F3;
    text-align: center;
    font-size: 1.4rem;
    background-color: #CCBCA4;
    transition: all 0.3s;
  /* white-space: nowrap; */;
}
.people_cat_nav .people_cat_list li a.is-active {
  background-color: var(--br);
  color: #F4F4F3;
}

.list_wrap {
  max-width: 1160px;
  margin: 0 auto 140px;
  padding: 0 30px;
  width: 100%;
}
.people_list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 4%;
}
.people_list li {
  width: calc((100% - 4% * (3 - 1)) / 3);
}
.people_list li .box {
  margin-top: 30px;
}
.people_list li picture {
  display: flex;
  aspect-ratio: 331 / 496;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
.people_list li picture img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.people_list li .cats {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.people_list li .cats span {
  color: var(--br);
  padding: 4px 15px 5px;
  border-radius: 20px;
  font-size: 1.3rem;
  border: 1px solid;
  line-height: 1em;
}
.people_list li h2 {
    color: var(--br);
    font-size: 1.6rem;
    margin-bottom: 5px;
    margin-top: 10px;
}
.people_list li .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.people_list li .btns p {
  width: calc((100% - 15px * (2 - 1)) / 2);
}
.people_list li .btns p a {
    width: 100%;
    height: 100%;
    color: var(--br);
    font-size: 1.4rem;
    border-bottom: 1px solid;
    display: flex;
    align-items: center;
    position: relative;
    padding: 5px 0;
}
.people_list li .btns p.more a:after {
  content: '';
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0px;
  background-image: url(../../common/img/arrow-r-br.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.people_list li .btns p a i {
  margin-left: auto;
  font-size: 2.5rem;
}

.people_detail {
  margin-bottom: 150px;
  overflow: clip;
}

.people_detail .inner {
  display: flex;
  align-items: flex-start;
  padding-left: calc((100% - 1480px) / 2);
  padding-right: calc((100% - 1120px) / 2);
}
.people_detail .inner > .img {
  width: 500px;
  position: sticky;
  top:90px;
}
.people_detail .inner > .img img {
  border-radius: 10px;
  overflow: hidden;
}
.people_detail .inner > .content {
  width: calc(100% - 500px);
  padding-left: 9%;
  padding-top: 60px;
}
.people_detail .inner > .content .meta .cats {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.people_detail .inner > .content .meta .cats span {
  color: var(--br);
  padding: 4px 15px 5px;
  border-radius: 20px;
  font-size: 1.3rem;
  border: 1px solid;
  line-height: 1em;
}
.people_detail .inner > .content h1 {
    color: var(--br);
    font-size: 2rem;
}
.people_detail .inner > .content .name_en {
    font-size: 1.1rem;
    color: #CCBCA4;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.people_detail .inner > .content .name_en:before {
  content: '';
  width: 100vw;
  height: 1px;
  background-color: #CCBCA4;
  position: absolute;
  bottom: 0;
  left: 0;
}
.people_detail .inner > .content .tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.people_detail .inner > .content .tags span {
    background-color: #CCBCA4;
    color: var(--wt);
    padding: 5px 15px 6px;
    border-radius: 20px;
    font-size: 1.3rem;
    line-height: 1em;
}

.people_detail .back_btn .btn {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.people_detail .back_btn .btn a {
  background-color: var(--br);
  color: var(--wt);
}

.people_detail .back_btn .btn a::before {
  transform: rotate(180deg);
  background-image: url(../../common/img/arrow-r-br-w.svg);
}

@media screen and (max-width: 736px) {

  .people_cat_nav {
    padding: 0 50px;
    margin-bottom: 50px;
  }
  .people_cat_nav .people_cat_list {
    gap: 5px;
  }
  .list_wrap {
    padding: 0 50px;
    margin-bottom: 100px;
  }
  main .page_header .en svg {
    height: 43px;
    width: auto;
  }
  .people_cat_nav .people_cat_list li {
    width: 100%;
  }
  .people_list li {
    width: 100%;
  }
  .people_cat_nav .people_cat_list li a:hover {
    opacity: 1;
  }

  .people_detail {
    margin-bottom: 100px;
    margin-top: 25px;
  }
  .people_detail .inner {
    flex-direction: column;
    padding: 0 30px;
  }
  .people_detail .inner > .img {
    width: 100%;
    position: static;
  }
  .people_detail .inner > .content {
    width: 100%;
    padding-left: 0;
    padding-top: 35px;
  }

  .people_detail .back_btn .btn {
    padding: 0 25px;
    margin-top: 30px;
  }
  .people_detail .back_btn .btn a {
    width: 290px;
  }
}