
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*height: 100vh;*/
    /*padding-left: 15px;*/
    font-family: Arial, sans-serif;
    background-image: url('p1_edit01.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
}

@media only screen and (max-width: 768px) {
    body {
        background-image: url('p1_edit01_mobile2');
    }
}
/*
main {
    padding-right: 20px;
    padding-left: 20px;
}
*/
header {
    text-align: center;
    /*padding: 20px;*/
}

#logo {
    width: 300px;
    /*animation: bounce 1s infinite;*/
    animation: shockwave 0.5s ease-in-out;
}



@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

#logo {
  animation: fadeInUp 2s ease-out, bounce 0.5s ease-in-out 2s;
  animation-fill-mode: forwards;
}


h1 {
    text-align: center;
    font-size: 1em;
    opacity: 0.7;
}
h2 {
    margin-block-start: 0em;
    margin-block-end: 0em;
    text-align: center;
}

h3 {
    margin-block-start: 0.2em;
    margin-block-end: 0.2em;
/*    background: repeating-linear-gradient(
        -45deg,
        #f2f2f2,
        #f2f2f2 10px,
        #ffffff 10px,
        #ffffff 20px
    );
*/
    padding: 5px;
}

.kakoi {
    background-color: #f2f2f2;
    border-radius: 15px;
    padding: 50px;
}

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

.btn-link {
    background-color: #8B0000 ;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
}

.btn-link:hover {
    background-color: #9C1111;
}

main {
    max-width: 800px; /* Setting a maximum width for the content */
    margin: 0 auto;  /* Centering the content horizontally */
}

/* Ticket Information Table Styles */
#ticket-info {
    margin-top: 20px;
    margin-bottom: 20px;
}

.ticket-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
}

.ticket-table th, .ticket-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.ticket-table th {
    background-color: #f2f2f2;
}

.ticket-table td {
    background-color: #fff;
}

.ticket-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.ticket-table tr:hover {
    background-color: #f1f1f1;
}

.ticket-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    color: white;
    background-color: #8B0000;
}


/* アニメーション用のクラスを定義 */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* スクロール時にアニメーションをトリガーするクラス */
.scroll-active {
  opacity: 1;
  transform: translateY(0);
}

/* センタリングされたボタンコンテナーのスタイル */
.centered-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
 /* height: 15vh;  画面の高さに合わせる */
  text-align: center;
}

/* 派手なボタンのスタイル */
.flashy-button {
  display: inline-block;
  padding: 20px 40px; /* ボタンの大きさを調整 */
  margin: 0;
  border: none;
  border-radius: 25px; /* 角をより丸く */
  background: linear-gradient(45deg, #ff4500, #ff6e40, #ff4500); /* グラデーション背景 */
  background-size: 200% 200%; /* 背景のサイズを大きくしてアニメーションの準備 */
  color: #ffffff;
  font-size: 2em; /* フォントサイズを大きく */
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s, transform 0.3s;
  animation: gradient-bg 3s ease infinite; /* グラデーションアニメーション */
}

/* 派手なボタンのスタイル2 */
.flashy-button2 {
  display: inline-block;
  padding: 20px 40px; /* ボタンの大きさを調整 */
  margin: 0;
  border: none;
  border-radius: 25px; /* 角をより丸く */
  background: linear-gradient(45deg, #007bff, #00dbff, #007bff); /* 青系のグラデーション背景 */
  background-size: 200% 200%; /* 背景のサイズを大きくしてアニメーションの準備 */
  color: #ffffff;
  font-size: 2em; /* フォントサイズを大きく */
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s, transform 0.3s;
  animation: gradient-bg 3s ease infinite; /* グラデーションアニメーション */
}

/* グラデーションアニメーションキーフレーム */
@keyframes gradient-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ホバー時とアクティブ時のボタンスタイル */
.flashy-button:hover,
.flashy-button:focus {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.flashy-button:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
}





.faq-container {
  margin: 20px;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  cursor: pointer;
  padding: 10px;
  background-color: #eee;
  border: 1px solid #ddd;
}

.faq-answer {
  padding: 0 10px; /* 回答が閉じているときのパディングを調整する */
  border: 1px solid #ddd;
  border-top: none;
  max-height: 0;
  overflow: hidden; /* これが重要です */
  transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* パディングのアニメーションを追加 */
}


h3::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #000; /* ここでは黒色のバーを想定していますが、お好みで色を変更してください */
  transition: width 0.5s ease-out;
}

h3.scroll-active::after {
  width: 100%; /* スクロール時にバーが100%の幅まで伸びる */
}


/*YouTube*/
.video-container {
    position: relative;
    width: 100%;
    max-width: 560px; /* 最大幅を560pxに設定 */
    margin: 0 auto; /* 中央揃え */
    padding-bottom: 56.25%; /* 16:9 アスペクト比 */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*グッズ*/
.goods-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.goods-images img {
    width: 100px; /* 画像のサイズを適宜調整してください */
    height: auto;
}

.goods-list {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.goods-list li {
    margin-bottom: 10px;
}


/*ポップアップ*/
.goods-images img {
    width: 100px; /* 画像の幅 */
    margin: 5px; /* 画像間の余白 */
    cursor: pointer; /* カーソルをポインターに */
}

#popup {
    display: none; /* 初期状態では非表示 */
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 背景色 */
    z-index: 1000; /* 他の要素より前面に */
}


.modal {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 10px; /* 余白を少なくするために調整 */
}

.modal-content img {
  display: none; /* 初期状態では非表示 */
  max-width: 700px; /* 最大横幅 */
  max-height: 80%; /* 画面の高さに対して最大で80%を使用 */
  object-fit: scale-down; /* 画像の比率を保持しつつ、最大サイズ内に収めます */
  margin: auto; /* 中央揃え */
  padding: 0; /* imgタグの余白をなくす */
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.thumbnail-container {
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */

}

.thumbnail img {
  width: 150px; /* サムネイルの横幅を指定 */
  height: auto; /* 高さは自動調整 */
}






.announcement-container {
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  width: 300px; /* カードの幅 */
  margin: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 影を付けて立体感を出す */
  border-radius: 10px; /* カードの角を丸くする */
  overflow: hidden; /* カード内の内容がはみ出ないようにする */
}

.album-art {
  width: 100%; /* カード幅に合わせて画像を拡大/縮小 */
  height: auto;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  margin-top: 10px;
}

.card button {
  padding: 10px 15px;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.card button:hover {
  background-color: #0056b3;
}

.release-info, .benefits-info, .other-info {
  margin-top: 20px;
}







.tracklist-popup {
  display: none; /* 初期状態ではポップアップを非表示に */
  position: fixed; /* ポップアップを画面上に固定 */
  z-index: 2; /* ポップアップを最前面に */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* スクロール可能に */
  background-color: rgba(0, 0, 0, 0.4); /* 背景を暗く */
}

.tracklist-content {
  background-color: #fff;
  margin: 15% auto; /* 上下の余白を設定し中央に配置 */
  padding: 20px;
  border-radius: 5px;
  width: 80%; /* コンテンツ幅を80%に */
  max-width: 600px; /* 最大幅を設定 */
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
