/* 全体設定 */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    height: 100%;
    background-color: #000;
    color: #fff;
    overflow-x:hidden ;
  }
  .special-font{
    font-family: "Sacramento", cursive;
    font-weight: 400;
    font-style: normal;
    font-size:150px;
  }
  
  /* ローディング画面 */
  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: slideInLeft 1s forwards;
  }
  
  .loading h1 {
    font-size: 2rem;
  }
  
  /* メインコンテンツ */
  .content {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1s ease-out, transform 1s ease-out;
    padding: 20px;
  }
  .main-image {
    width: 100%;         /* 横幅を画面いっぱいに */
    height: auto;        /* 縦は元の比率で自動調整 */
    display: block;      /* 画像の下に余白をなくす */
    margin: 0;           /* 余白なし */
    padding: 0;      
  }
  /* About セクション */
#about {
  background: linear-gradient(to bottom right, #222, #444);
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#about h2 {
  font-family: 'Sacramento', cursive;
  font-size: 3rem;
  color: #f8f8f8;
  margin-bottom: 20px;
  text-align: center;
}

#about p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #ddd;
  text-align: justify;
}

#about p:first-of-type {
  margin-top: 20px;
  font-style: italic;
}

#about .highlight {
  color: #ff6347;
  font-weight: bold;
  font-size: 1.3rem;
}

/* アニメーション追加: テキストをフェードインさせる */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#about p {
  animation: fadeIn 1.5s ease-out;
}

/* Music セクション */
#music {
  background-color: #222;
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#music h2 {
  font-family: 'Sacramento', cursive;
  font-size: 3rem;
  color: #f8f8f8;
  margin-bottom: 30px;
}

.music-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.music-card {
  background: #333;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.music-card:hover {
  transform: translateY(-10px);
}

.music-card img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #ff6347;
}

.music-card .content {
  padding: 20px;
  color: #f8f8f8;
}

.music-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff6347; /* アルバム名が見えるように目立つ色に設定 */
}

.music-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
}

/* アニメーション: 音楽カードのフェードイン */
@keyframes fadeInCard {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.music-card {
  animation: fadeInCard 0.8s ease-out;
}




/* 画像のスタイリング */
#about img {
  width: 100%;
  height: auto;
  max-width: 400px;
  display: block;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

  
  .content.visible {
    opacity: 1;
    transform: translateX(0);
  }
/* Contact セクション */
#contact {
  padding: 60px 20px;
  background: linear-gradient(to top, #222, #444);
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-top: 60px;
  animation: fadeIn 1.5s ease-out;
}

#contact h2 {
  font-family: 'Sacramento', cursive;
  font-size: 3rem;
  color: #f8f8f8;
  margin-bottom: 30px;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.contact-item {
  background-color:#000;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
}

.contact-item h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Sacramento', cursive;
  letter-spacing: 1px;
}

/* ボタンのスタイル */
.contact-item .btn {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* インスタグラムボタン */
.instagram-btn {
  background-color: #000;
  padding: 10px 10px 10px 10px;
  display: inline-flex; /* アイコンとテキストを並べて表示 */
  align-items: center; /* アイコンを中央に配置 */
  justify-content: center; /* ボタン内でアイコンを中央に配置 */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.instagram-btn:hover {
  background-color: #000;
  transform: scale(1.05);
}

/* アイコンのスタイル */
.instagram-btn i {
  font-size: 1.5rem; /* アイコンのサイズ調整 */
}

/* アイコンのサイズ調整 */
.contact-item .icon {
  width: 20px;  /* アイコンの幅 */
  height: 20px; /* アイコンの高さ */
  margin-left:-25px;
  vertical-align: middle; /* アイコンがテキストと垂直に揃う */
}

/* ボタン内でアイコンとテキストが中央に揃う */
.contact-item .btn {
  padding: 12px 25px 12 30;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-flex; /* アイコンとテキストを並べて表示 */
  align-items: center; /* アイコンを中央に配置 */
  justify-content: center; /* テキストとアイコンを中央に配置 */
}

/* ×アイコンのカスタマイズ */
.close-btn {
  background-color: #f44336;
}

.close-btn:hover {
  background-color: #000;
  transform: scale(1.05);
}

/* アイコンのスタイル */
.contact-item .btn i {
  margin-right: 8px;
  font-size: 1.5rem;
}
.contact-item .icon {
  width: 250px;  /* アイコンの幅 */
  height: auto; /* 自動で高さ調整 */
  vertical-align: middle; /* アイコンがテキストと垂直に揃う */
}

/* アニメーション: テキストをフェードインさせる */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


  
  /* ヘッダー */
  header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  header h1 {
    font-size: 3rem;
    margin: 0;
  }
  
  /* ナビゲーション */
  nav ul {
    list-style: none;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin: 0 15px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #f00;
  }
  
  /* セクション */
  section {
    margin-bottom: 40px;
  }
  
  section h2 {
    font-size: 2rem;
    border-bottom: 2px solid #f00;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  
  /* フッター */
  footer {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 20px;
  }
  
  /* アニメーション */
  @keyframes slideInLeft {
    from {
      left: -100%;
    }
    to {
      left: 0;
    }
  }
  