body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* コンテナの最大幅と中央寄せ */
.music-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* 画像とテキストの親要素を横並びに */
.music {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* 画像を正方形にトリミングしつつ表示 */
.music-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 4px;
  margin-top: 0.15em;
  margin-left: -100px;
}

/* テキスト部分は縦並びで上寄せ */
.music-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* タイトル・テキスト */
.music-info h1 {
  font-size: 2em;
  font-weight: 600;
  margin: 0; /* margin-top: 0 で画像と揃うように */
  line-height: 1; /* 上端のズレ防止 */
}

.music-info h2 {
  font-size: 1.5em;
  font-weight: 400;
  /* margin: 0; margin-top: 0 で画像と揃うように */
  margin-bottom: 0.2em;
}

.music-info h3 {
  font-size: 2em;
  font-weight: 600;
  /* margin: 0; margin-top: 0 で画像と揃うように */
  margin-bottom: 0.2em;
}

/* ハンバーガーメニューのボタン（PCは非表示） */
.menu-toggle {
  display: none;
  font-size: 2.5em;
  color: #333;
  cursor: pointer;
  user-select: none;
  padding: 0 15px;
  z-index: 1100;
}

/* スマホ用レスポンシブ調整 */
@media (max-width: 768px) {
  .music {
    flex-direction: column;
    align-items: center;
  }

  .music-image {
    width: 70vw;
    height: 70vw;
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .music-info {
    width: 80%;
    text-align: center;
    margin-top: 0px;
    padding-top: 0;
  }

  /* ハンバーガーメニュー表示 */
  .menu-toggle {
    display: block;
    color: white;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1500;
  }

  .navbar .right {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    flex-direction: column;
    padding: 0 0;
    z-index: 1400;
  }

  .navbar .right.active {
    max-height: 1000px;
    opacity: 1;
    padding: 10px 0;
    display: flex;
  }

  .navbar .right a {
    color: #333;
    padding: 12px 20px;
    font-size: 1.2em;
    border-bottom: 1px solid #ddd;
  }

  .navbar .right a:last-child {
    border-bottom: none;
  }

  .music-info h1 {
    font-size: 1.6em;
  }

  .music-info h2 {
    font-size: 1em;
  }

   .music-info h3 {
    font-size: 1.6em;
  }

}
