@charset "UTF-8";
/*ナビ*/
.list nav {
  margin-bottom: 50px;
}
.list nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.list nav ul li {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  margin: 0 1%;
}
.list nav ul li a {
  display: block;
  text-decoration: none;
  padding: 10px 0;
  color: #fff !important;
  background: linear-gradient(45deg, rgba(22, 66, 79, 1), rgba(29, 87, 105, 1), rgba(22, 66, 79, 1));
  background-position: 1% 50%;
  background-size: 200% auto;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-radius: 10px;
  position: relative;
}
.list nav ul li a:hover {
  opacity: 1;
  background-position: 99% 50%;
}
.list nav ul li a:after {
  font-family: "Font Awesome 5 Free";
  content: '\f078';
  font-weight: 900;
  font-size: 12px;
  height: 12px;
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.list nav ul li a:hover:after {
  bottom: -10px;
}
/*委員会名簿*/
.list table {
  border: none;
  border-top: solid 2px #0f2c35;
  border-bottom: solid 2px #0f2c35;
  text-align: center;
}
.list table th, .list table td {
  border: none;
  padding: 20px 2%;
  border-top: solid 1px #0f2c35;
  border-bottom: solid 1px #0f2c35;
}
.list table th {
  width: 12%;
}
.list table td figure {
  width: 150px;
  margin: 0 auto 10px;
}
.list table td p {
  margin: 0;
  line-height: 24px;
}
.list table td .name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
.list table td .belong {
  font-size: 14px;
}
@media screen and (max-width:1050px) {
  /*ナビ*/
  .list nav {
    margin-bottom: 30px;
  }
  .list nav ul li {
    display: block;
    width: auto !important;
    margin: 0 auto 10px;
  }
  .list nav ul li a {
    font-size: 16px;
  }
  /*委員会名簿*/
  .list table {
    border-top: none;
  }
  .list table th, .list table td {
    width: auto;
    display: block;
    border-top: solid 2px #0f2c35;
    border-bottom: none;
  }
  .list table th {
    padding: 10px 0;
  }
  .list table td {
    border: none;
  }
}