header {
  width: 1500px;
  height: auto;
  margin: 20px auto 70px;
}

#greeting {
  width: 100%;
  height: auto;
  padding: 100px 0 50px;
  background-color: #f0f0f0;
}
#greeting .title {
  width: 1500px;
  margin: 0 auto;
  padding: 0 50px;
}
#greeting .title h2 {
  font-size: 42px;
  font-weight: bolder;
  color: #666;
}
#greeting .title p {
  font-size: 18px;
  font-weight: bolder;
  color: #666;
}
#greeting .greetingWrap {
  width: 1500px;
  height: auto;
  margin: 50px auto 0;
  display: flex;
  padding: 0 50px;
}
#greeting .greetingWrap .left {
  width: 700px;
  margin: 0 auto;
  align-items: center;
}
#greeting .greetingWrap .left h3 {
  font-size: 28px;
  font-weight: bolder;
  color: #666;
  margin-bottom: 50px;
}
#greeting .greetingWrap .left p {
  font-size: 14px;
  font-weight: bolder;
  color: #666;
  line-height: 28px;
}
#greeting .greetingWrap .right {
  width: 500px;
  margin: 0 100px;
  align-items: center;
}

#introduction {
  width: 100%;
  padding: 50px 0;
}
#introduction .introductionWrap {
  width: 1500px;
  margin: 0 auto;
}
#introduction .introductionWrap .detail {
  width: 100%;
  padding: 0 50px;
}
#introduction .introductionWrap .detail h3 {
  font-size: 36px;
  font-weight: bolder;
  color: #666;
}
#introduction .introductionWrap .detail p {
  font-size: 16px;
  font-weight: bolder;
  color: #666;
  line-height: 30px;
}
#introduction .introductionWrap .director {
  display: flex;
  margin-top: 50px;
  padding: 0 50px;
}
#introduction .introductionWrap .director .name {
  width: 400px;
}
#introduction .introductionWrap .director .name p {
  color: #666;
  font-size: 16px;
  font-weight: bolder;
  line-height: 24px;
  margin-bottom: 10px;
}
#introduction .introductionWrap .director .photo {
  width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

#member {
  width: 100%;
  padding: 100px 0;
  background-color: #f0f0f0;
}
#member h2 {
  width: 1500px;
  margin: 0 auto 50px;
  font-size: 36px;
  font-weight: bolder;
  color: #666;
  padding: 0 50px;
}
#member .memberWrap {
  width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 0 50px;
}
#member .memberWrap .detail {
  display: block;
  background-color: #fff;
  border: 1px solid #666;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  header {
    width: 90%;
    height: auto;
    margin: calc(100px + 3vw) auto 8vw;
  }
  #greeting {
    width: 100%;
    height: auto;
    padding: 50px 0 50px;
    background-color: #f0f0f0;
  }
  #greeting .title {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  #greeting .title h2 {
    font-size: 5vw;
  }
  #greeting .title p {
    font-size: 3vw;
  }
  #greeting .greetingWrap {
    width: 90%;
    height: auto;
    margin: 5vw auto 0;
    display: block;
    padding: 0;
  }
  #greeting .greetingWrap .left {
    width: 100%;
    margin: 0 auto;
    align-items: center;
  }
  #greeting .greetingWrap .left h3 {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
  #greeting .greetingWrap .left p {
    font-size: 3vw;
    line-height: 4.5vw;
  }
  #greeting .greetingWrap .right {
    width: 100%;
    margin: 5vw auto;
    align-items: center;
  }
  #introduction {
    width: 100%;
    padding: 50px 0;
  }
  #introduction .introductionWrap {
    width: 90%;
    margin: 0 auto;
  }
  #introduction .introductionWrap .detail {
    width: 100%;
    padding: 0;
  }
  #introduction .introductionWrap .detail h3 {
    font-size: 4vw;
  }
  #introduction .introductionWrap .detail p {
    font-size: 3vw;
    line-height: 4.5vw;
  }
  #introduction .introductionWrap .director {
    display: block;
    margin-top: 8vw;
    padding: 0;
  }
  #introduction .introductionWrap .director .name {
    width: 100%;
  }
  #introduction .introductionWrap .director .name p {
    color: #666;
    font-size: 3vw;
    font-weight: bolder;
    line-height: 4vw;
    margin-bottom: 1vw;
  }
  #introduction .introductionWrap .director .photo {
    width: 100%;
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 1vw;
  }
  #introduction .introductionWrap .director .photo img {
    margin-bottom: 3vw;
  }
  #member {
    width: 100%;
    padding: 5vw 0;
    background-color: #f0f0f0;
  }
  #member h2 {
    width: 90%;
    margin: 0 auto 3vw;
    font-size: 5vw;
    padding: 0;
  }
  #member .memberWrap {
    width: 90%;
    margin: 2vw auto;
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    padding: 0;
  }
  #member .memberWrap .detail {
    display: block;
    background-color: #fff;
    border: 3px solid #999;
    padding: 10px;
    box-sizing: border-box;
    margin: 0 0 3vw;
  }
  #member .memberWrap .detail p, #member .memberWrap .detail a {
    font-size: 3vw;
  }
}/*# sourceMappingURL=club.css.map */