@charset "utf-8";
/* CSS Document */
.main {
  background-color: #f3f3f3;
}
.member-title {
  position: relative;
  background-image: url("../img/m-size/tukubai.png");
  height: 50vw;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 100px;
  animation-name: fade;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}*/
.member-title h2 {
  color: #333;
  position: absolute;
  font-size: 2vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3vw;
  background-color: rgba(255, 255, 255, 0.8);
}
.list {
  margin: 8vw 2vw;
}
.temple {
  display: flex;
  justify-content: center;
  line-height: normal;
}
.list img {
  width: 40vw;
  margin-bottom: 1vw;
}
.temple-address {
  margin: 1vw;
  padding: 1vw;
}
.map {
  width: 15vw;
  height: 12vw;
  margin: 1vw;
}
.list h3 {
  font-size: 2vw;
  text-align: left;
  margin-bottom: 0.8vw;
}
.list p {
  font-size: 1.6vw;
  text-align: left;
}
.temple-address h3 a {
  color: #2000C3;
}
.member-list {
  display: flex;
  justify-content: center;
  border-bottom: solid 1px #362d2d;
}
.member-list ul li {
  list-style: none;
}
@media(max-width:960px) {
  .member-title {
    margin-top: 60px;
  }
  .member h2 {
    font-size: 5vw;
  }
  .member-list {
    display: block;
  }
  .list img {
    width: 80vw;
  }
  .list h3 {
    font-size: 4vw;
  }
  .list p {
    font-size: 3vw;
  }
  .map {
    width: 30vw;
    height: 20vw;
  }
}