.back {
    position: absolute;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }
  
  .top1 {
    top: 0;
    left: 0;
    z-index: 2; 
    height: 100%;
  }
  .top2 {
    top: 0;
    left: 0;
    z-index: 1; 
    height: auto;
  }
  .top3 {
    width: 90%;
    top: 0;
    left: 0;
    z-index: 1; 
    height: auto;
  }
  .top4 {
    top: 0;
    left: 0;
    z-index: 1; 
    height: auto;
}
.cover {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../reimages/interview.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5; 
    z-index: -1; 
  }
  .cover h1{
    padding-top: 400px;
    padding-bottom: 300px;
  }
h2{
    text-align: center;
}
.center{
    text-align: center;
}
.light{
    background-color: #f9f1e3;
    position: relative;
    padding-top: 50px;
    padding-bottom: 100px;
    z-index: 5;
}
.blue1{
    background-color: #98d7e2;
    padding-top: 50px;
    padding-bottom: 100px;
}
.member{
    background-color: #e1f2f7;
    padding-top: 50px;
    padding-bottom: 100px;
}
.member {
    text-align: center; 
}

.member-list {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    margin-top: 20px;
}

.member-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-item img {
    width: 120px; 
    height: 120px;
    object-fit: cover; 
}

.member-item p {
    margin: 5px 0; 
}
.topic {
    position: relative;
    width: 100%;
    height: 500px; /* 高さは調整可 */
    overflow: hidden;
    background-color: #f5f5f5; /* 画像が読み込まれない場合の予備背景 */
  }
  
  .topic img.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像が枠にフィット */
    z-index: 0;
    opacity: 0.8; /* 少し透過して文字を読みやすく */
  }
  
  .topic1 {
    position: relative;
    z-index: 1; /* テキストが前面にくるように */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
  }
  
  .topic-text {
    color: #333;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 700px;
  }
  
  .topic-text h2 {
    margin-bottom: 10px;
    color: #007acc;
  }
  
  .topic-text h5 {
    margin-bottom: 15px;
    font-weight: normal;
  }
  
  .topic-text p {
    line-height: 1.6;
  }
  
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.profile {
    display: flex;
    align-items: center;
    gap: 200px; 
}

.profile-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-img img {
    width: 80px; 
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.speech-bubble {
    position: relative;
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 10px;
    max-width: 450px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}
.speech-bubble p{
    line-height: 2.0;
}
.speech-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #f0f0f0 transparent transparent;
    transform: translateY(-50%);
}
.name img{
    width: 75px;
    height: auto;
    padding-top: 5px;
}
.rename img{
    width: 100px;
    height: auto;
    padding-top: 5px;
}
@media screen and (max-width: 765px) {
    .cover::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../reimages/interview.jpeg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.5; 
        z-index: -1; 
      }
    .cover h1{
        padding-top: 150px;
        padding-bottom: 100px;
      }
    h2{
        text-align: center;
    }
    .center{
        text-align: center;
    }
    .top{
        position: relative;
    }
    .top1 {
        top: 0;
        left: 0;
        z-index: 2; 
        height: 120%;
      }
    .light{
        background-color: #f9f1e3;
        position: relative;
        padding: 25px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .blue1{
        background-color: #98d7e2;
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .member{
        background-color: #e1f2f7;
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .member {
        text-align: center; 
    }
    
    .member-list {
        display: flex;
        justify-content: center; 
        gap: 20px; 
        margin-top: 20px;
    }
    
    .member-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .member-item img {
        width: 120px; 
        height: 120px;
        object-fit: cover; 
    }
    
    .member-item p {
        margin: 5px 0; 
    }
    .topic {
        position: relative;
    }
    
    .topic1 {
        padding-top: 50px;
        margin-left: 4%;
        width: 91%;
        display: flex;
        justify-content: space-between;
        align-items: center; 
        position: relative;
        z-index: 2;
    }
    .topic-text {
        max-width: 450px; 
        text-align: left;
    }
    
    .topic-image img {
        width: 100%; 
        max-width: 300px; 
        height: auto; 
    }
    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }
    
    .profile {
        display: flex;
        align-items: center;
        gap: 20px; 
    }
    
    .profile-img {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .profile-img img {
        width: 80px; 
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .speech-bubble {
        position: relative;
        background-color: #f0f0f0;
        padding: 15px;
        border-radius: 10px;
        max-width: 250px;
        box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    }
    
    .speech-bubble::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -10px;
        width: 0;
        height: 0;
        border-width: 10px;
        border-style: solid;
        border-color: transparent #f0f0f0 transparent transparent;
        transform: translateY(-50%);
    }
    .name img{
        width: 40px;
        height: auto;
        padding-top: 5px;
    }
    .rename img{
        width: 50px;
        height: auto;
        padding-top: 5px;
    }
}