@charset "utf-8";

*,
::before,
::after{
  padding:0;
  margin: 0;
  box-sizing: border-box;
}

.main{
  margin: auto;
}

.title{
  height: 310px;
  background-image: url(../images/concept/staff.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: aliceblue;
  padding: auto;
  text-shadow: 1px 1px 10px #4b2c14;
}


.performance-list{
  width: 1000px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit,300px);
  column-gap: 100px;
  row-gap: 70px;
  justify-content: center;
}

.performance-list img{
  width: 450px;
  height: 450px;
}

.performance-list dl {
  margin-top: 20px;
}

.performance-list dt {
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  background-color: rgb(140, 172, 173);;
  width: 100%;
  text-align: center;
}

.performance-list dd {
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  margin-top: 10px;
  text-align: center;
}

.link-button-area {
  text-align: center;
  margin-top: 40px;
}

.link-button {
  background-color: blueviolet;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Montserrat',sans-serif;
  font-size: 14px;
  font-weight: bold;
}

.link-button:hover {
  background-color: darkviolet;
}