@charset "UTF-8";

h2 {
  margin-bottom: 10px;
}

.member-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.member-block {
  width: 18%;
  margin-bottom: 20px;
  margin-right: 2%;
}

.member-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

.interview-section .captain-photo {
  width: 300px;
  min-width: 300px;
  height: 300px;
  margin-right: 20px;
}

.interview-section .og-photo {
  width: 300px;
  min-width: 300px;
  height: 300px;
  margin-right: 20px;
}

.interview-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.captain-interview {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.qa-block {
  margin-bottom: 20px;
}

.og-interview-block {
  width: 33%;
}

.og-block {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.interview-section h3 {
  margin-bottom: 20px;
}

.question {
  display: flex;
  justify-content: flex-start;
}

.answer {
  display: flex;
  justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  .member-block {
    width: 32%;
    margin-bottom: 10px;
    margin-right: 1%;
  }

  .interview-section .captain-photo {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
  
  .interview-section .og-photo {
    width: 100%;
    height: auto;
    margin-right: 0;
  }  
}