* {
  box-sizing: border-box;
}

.wrap {
  width: 950px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .wrap {
    width: 100%;
    padding: 0 10px;
  }
}

.wrap__menu {
  width: 1050px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .wrap__menu {
    width: 100%;
    padding: 0 10px;
  }
}

.wrap__card {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .wrap__card {
    width: 100%;
    padding: 0 10px;
  }
}

dt, dl, dd, ul, li {
  margin: 0;
  padding: 0;
}

.section + .section .section__inner:first-child {
  border-top: none;
}

.section + .section .section__inner:first-child::before {
  background-color: none;
  height: 0;
  width: 0;
}

.section.latest-post .section__inner {
  padding-bottom: 0;
}

.kv .title img {
  width: 600px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .kv .title img {
    width: 94.6%;
  }
}

.latest-post__link {
  display: block;
  padding: 20px;
  max-width: 500px;
  margin: 0 auto;
  border: solid 2px #D9D9D9;
  border-radius: 5px;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .latest-post__link {
    padding: 20px;
  }
}

.latest-post__link__profile {
  display: flex;
  justify-content: center;
  gap: 0 50px;
}
@media only screen and (max-width: 768px) {
  .latest-post__link__profile {
    flex-direction: column;
    gap: 20px 0;
    text-align: center;
  }
}
.latest-post__link__profile .photo img {
  border-radius: 50%;
  max-width: 140px;
  height: auto;
}

.latest-post__link__profile__number {
  font-size: 16px;
  font-weight: 700;
  color: #cc0000;
  margin: 0 0 10px;
}

.latest-post__link__profile__job {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  background: #cc0000;
  color: #fff;
  padding: 5px 20px;
  border-radius: 25px;
}

.latest-post__link__profile__name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
.latest-post__link__profile__name span {
  display: block;
  font-size: 16px;
  font-weight: 400;
}

.latest-post__link__lead {
  display: flex;
  justify-content: center;
  color: #333;
  line-height: 1.5;
}

.crew__list-wrap {
  overflow: auto;
  max-height: inherit;
}

#filter-btn-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

#filter-btn-list li {
  position: relative;
  text-align: center;
}

#filter-btn-list li label {
  display: block;
  background: #fff;
  border: solid 1px #DEDEDE;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 10px;
}

#filter-btn-list li label:hover {
  background: #F0F4F7;
}

#filter-btn-list li label input[type=radio] {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  appearance: radio !important;
}

#filter-btn-list li label input[type=radio]:focus {
  outline: 1px solid #cc0000;
}

#filter-btn-list li.active label {
  background: #F0F4F7;
}

.filter-menu {
  background: #F8F8F8;
  padding: 24px 30px;
  margin-top: 10px;
}

.filter-menu dt {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.filter-menu dd {
  margin-top: 8px;
}

.crew__no-result {
  text-align: center;
  font-size: 18px;
  color: #333;
  font-weight: 700;
}