html {
    
    font-family: 'Baskervville', sans-serif;
    font-family: "Shippori Mincho", serif;
    
}

.pop {
    font-family: 'Baskervville', sans-serif;
}

/* 全体のスタイルをリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    width: 90%;
    max-width: 1620px;
    margin: 0 auto;
    position: relative;
    padding: 15px;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

header {
  height: 150px; /* ヘッダーの高さを固定 */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff; /* 背景色を設定（必須） */
  z-index: 1000; /* 他の要素より前面に配置 */
  padding: 15px 50px;
  position: fixed;
}

.logo {
    font-size: 90px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: -25px; /* ロゴをさらに上に移動 */
}

.logo span {
    color: rgb(19, 24, 24);
}

.header_menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: -30px; /* ロゴをさらに上に移動 */
}

.header_menu li a {
    color: rgb(29, 28, 28);
    font-size: 25px;
    transition: 0.3s;
}

.header_menu li a:hover {
    font-weight: bold; /* 文字を太くする */
    text-decoration: #0d0d0e; /* 色を少し濃くする（任意） */
}

/*a[href="Profile.html"] {
  text-decoration: underline; /* 下線を付ける */
  /*text-decoration-thickness: 1.1px; /* 下線の太さを指定 */


  body {
    font-family: 'Shippori Mincho', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding-top: 200px;
  }

  
  .profile-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
  }
  
  h1 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #222;
  }
  
  .profile-content {
    display: flex;
    align-items: flex-start;
    gap: 100px;
  }
  
  .profile-photo {
    width: 400px;
    height: 400px;
    border: 3px solid rgb(7, 7, 7);
    border-radius: 0; /* 四角形 */
    object-fit: cover;
    margin-bottom: 10px;
    background-image: url('../images/profileimg.JPG'); /* 写真を表示する */
    background-size: cover;
    background-position: center;
  }
  
  .profile-details {
    flex: 1;
  }
  
  .profile-details h2 {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .profile-details h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .profile-details p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0px;
  }

.instagram-link {
    display: inline-block;
    margin-top: 30px; /* Instagramアイコンの上に余白を追加 */
}

.instagram-link img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.instagram-link img:hover {
  transform: scale(1.2);
}

.instagram-link-wrapper {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px; /*  下に余白追加（調整可） */
}
  
  @media (max-width: 768px) {
    .logo {
      font-size: 80px;
  }
  
  .header_menu {
      flex-direction: column;
      gap: 10px;
      margin-top: 0px; /* ロゴをさらに上に移動 */
  }
  
  .header_menu li a {
      font-size: 18px;
  }


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

  .profile-details {
    margin-top: -30px; /* ロゴをさらに上に移動 */
    margin-bottom: -25px;
   }
  
  .profile-details h2 {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
  }

  .profile-details h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .profile-details p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0px;
    padding: 0 15px; /* `.container` と揃えるための左右余白 */
    text-align: left; /* ← 左揃えに変更 */
  }
  
    .profile-photo {
      width: 300px;
      height: 300px;
      margin-bottom: 0px;
      margin-top: -20px; /* ロゴをさらに上に移動 */
    }

.contact-container {
    text-align: center;
  }

  .contact-container p a {
    display: inline-block; /* 中央揃えを正しく反映するため */
  }

}