@charset "UTF-8";
.gallery {
  padding: 0 0 100px;
}
.gallery .bg{
  background: #eee;
}
.gallery .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 20px;
}
.gallery .items .item {
  margin: 0 0 20px;
}
.gallery .items .item a{
  height: 180px;
  overflow: hidden;
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.gallery .items .item p{
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFDF70;
  width: 180px;
  height: 180px;
  text-align: center;
  font-family: 'Lora', serif;
  font-weight: 700;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  letter-spacing: .1em;
  padding: 30px 10px 25px;
  text-decoration: none;
  color: #16100F;
  display: flex;
  opacity: 0;
}
.gallery .items .item p .name{
  display: block;
  position: relative;
  width: 100%;
}
.gallery .items .item p .name::after {
  background: #16100F;
  content: "";
  display: block;
  height: 2px;
  margin: 40px auto 0;
  width: 14px;
}
.gallery .items .item p .job{
  display: block;
}
.gallery .items .item a:hover p{
  opacity: 1;
}
.swiper-slide {
  text-align: center;
}
.button-prev {
  position: absolute;
  top: calc(50% - 17px);
  left: 50px;
  z-index: 100;
  outline: none;
  cursor: pointer;
}
.button-next {
  position: absolute;
  top: calc(50% - 17px);
  right: 50px;
  z-index: 100;
  outline: none;
  cursor: pointer;
}
.slide-block {
  width: 900px;
  margin: 0 auto;
  padding: 100px 0;
}
.slide-block img{
  max-width: 100%;
  width: auto;
}
.profile {
  border-top: 1px solid #6f645d;
  border-bottom: 1px solid #6f645d;
  padding: 10px;
  display: flex;
  width: 500px;
  font-size: 14px;
  margin: 30px 100px 0 auto;
}
.profile .img{
  margin: 0 10px 0 0;
}
.profile .txt{
  line-height: 1.4;
}
.profile .txt dt{
  font-family: 'Lora', serif;
  font-weight: 700;
}
.profile .txt .name{}
.profile .txt .info{
}