
header {
    background: #f9f9f9;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.logo {
    font-size: 32px;        
    font-weight: 800;       
    color: #334a25;       
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .apple {
    font-size: 38px;        
}


.mg-footer {
    background: #f9f9f9;
    color: #334a25;  
    padding: 40px 20px;
    text-align: center;
    font-family: "Helvetica", "Arial", sans-serif;
    margin-top: 80px;
}



.member-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.member-icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.icon {
    width: 120px;
    cursor: pointer;
    transition: 0.3s;
}

.icon img {
    width: 100%;
    border-radius: 50%;
    border: 4px solid #1f3622;
}

.icon:hover {
    transform: scale(1.1);
}

.icon p {
    margin-top: 10px;
    font-size: 14px;
}


.slides img {
    width: 65%;     
    height: auto;
    display: block;
    margin: 0 auto;
}



/* プロフィール表示エリア */
#profile-area {
    margin-top: 30px;
    padding: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}




/*    追加した分のデザイン  */

/* 全体 */
.artist-profile {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
    color: #222;
  }
  
  /* ===== 上部：写真＋名前 ===== */
  .member-header {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
  }
  
  .member-image img {
    width: 160px;
    height: 160px;
    object-fit: cover;
  }
  
  /* 名前 */
  .member-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  .member-info .en-name {
    font-size: 15px;
    color: #666;
    letter-spacing: 1px;
  }
  
  /* ===== 各セクション ===== */
  .profile-block {
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .profile-block:last-child {
    border-bottom: none;
  }
  
  .profile-block h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
  
  /* ===== 表 ===== */
  .profile-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .profile-table th {
    width: 30%;
    text-align: left;
    padding: 10px 0;
    font-weight: 600;
    color: #555;
  }
  
  .profile-table td {
    padding: 10px 0;
  }
  
  /* ===== リスト ===== */
  .profile-list {
    padding-left: 18px;
  }
  
  .profile-list li {
    margin-bottom: 8px;
    line-height: 1.7;
  }
  
  /* ===== メッセージ ===== */
  .profile-message {
    line-height: 1.9;
    font-size: 16px;
    max-width: 700px;
  }
  

  

  /*      見出しのデザイン        */
  .p-title {
    font-family: "Helvetica Neue", "Segoe UI", "Noto Sans JP", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: center;
    margin: 60px 0 40px;
    color: #1f1f1f;
    position: relative;
    padding-top: 30px;
    padding-bottom: 80px;
  }
  

  /*      ミセス公式での見出しの設定を考えてください         */

  .member-icons .icon p {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 1000;
    letter-spacing: 0.08em;
    color: #333;
    text-align: center;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  /* ホバー時（さりげなく） */
  .member-icons .icon:hover p {
    color: #2e7d32; 
  }
  
  /* 選択中（JSで .active を付与） */
  .member-icons .icon.active p {
    color: #2e7d32;
    font-weight: 600;
  }

  .member-icons .icon.active img {
    transform: scale(1.05);
  }

  body{
    background: #f9f9f9;
  }