
body {
    font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    background-color: #0D0F12;
  
  }
        
  
    
    
    h1{
        margin: 0;
        padding: 0;
    }
    
    ul{
        margin: 0;
        padding: 0;
    }
    
    p{
        margin: 0;
        padding: 0;
    }
  
  
  li{
      list-style: none;
      text-decoration: none;
      margin: 0;
      padding: 0;
  }
  
  
  
  a {
      display: block;
      color: #0D0F12;
      text-decoration: none;
  }
.event-container {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}


.event-section {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
   /* background-attachment: fixed;*/
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    
}

/* 背景を暗くするオーバーレイ */
.event-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0; /* 最初は透明 */
    animation: fadeInOverlay 2s ease-in-out forwards; /* フェードインアニメーション */
}

@keyframes fadeInOverlay {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* テキストやタイトルのz-indexを調整 */
.event-section h2, 
.event-section p, 
.title-ui {
    position: relative;
    z-index: 2; /* オーバーレイより上に表示 */
    font-weight: normal;
}


/* フェードインとブラーのアニメーション */
@keyframes fadeInBlur {
    0% {
        opacity: 0;
        filter: blur(100px);
    }
    50% {
        opacity: 0;
        filter: blur(100px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

/* 初期状態（非表示＆ブラー） */
.bandname, .onemans, .livetaitle {
    opacity: 0;
    filter: blur(100px);
}

/* 表示用のクラス */
.show {
    animation: fadeInBlur 2s ease-in-out forwards;
}

/* タイトルUIの配置調整 */
.title-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1100px;
    height: 100vh;
}

.bandname {
  position: absolute;
  left: 25%; /* 画面幅の5%の位置 */
  top: 30%; /* 画面高さの10%の位置 */
  transform: translate(-50%, -50%);
  width: 12vw;
}

.onemans {
  position: absolute;
  left: 60%; /* 画面幅の20%の位置 */
  top:35%; /* 画面高さの20%の位置 */
  transform: translate(-50%, -50%);
  width: 30vw;
}

.livetaitle {
  position: absolute;
  left: 50%; /* 画面幅の30%の位置 */
  top: 60%; /* 画面高さの30%の位置 */
  transform: translate(-50%, -50%);
  width: 40vw;
}





footer {
    background-color: #560e00; /* 背景色 */
    color: #ddc79b; /* テキスト色 */
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .footer-left {
    text-align: center;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center; /* 横方向も中央揃え */
    padding-top: 30px;
    padding-right: 50px;
    padding-bottom: 50px;
  }
  
  .footer-left h1 {
    font-size: 3vw;
    font-weight: normal;
    line-height: 1.2; /* 行間を詰める */
  }
  
  .footer-left a {
    color: #ddc79b;
    font-size: 10px;
    margin: 2px 0; /* 上下のマージンを詰める */
    border: #ddc79b solid 1px;
    padding: 5px;
    border-radius: 5px;
    width: 70%;
    text-align: center; /* テキストを中央に配置 */
    line-height: 1.2; /* 行間を詰める */
    margin-bottom: 30px;
  }
  
  
  .company {
    font-size: 1.25vw;
    line-height: 0.8; /* 行間を詰める */
  }
  
  .footer-left img {
    margin-bottom: 20px;
    width: 80%;
  }
  
  .footer-right {
    display: flex;
    justify-content: space-between;
    width: 75%;
    padding-top: 30px;
  }
  
  .footer-item {
    width: 20%;
  }
  
  .footer-item h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: normal;
    display: flex;
    align-items: center; /* 画像とテキストを縦中央に配置 */
  }
  
  .footer-item ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-item ul li {
    font-size: 0.85vw;
    margin-bottom: 5px;
    padding-left: 30px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    margin: 0 10px;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%; /* 画像の幅 */
  }
  
  .hicon {
    height: 2em;
    margin-right: 5px; /* 画像とテキストの間隔を調整 */
  }





  .about-title p {
    font-size: 2em;
    color: #f2f2f2;
    font-weight: normal;
    border-bottom: #b11e00 solid 1px; /* 通常のボーダー1px */
    margin-top: 100px;
    margin-bottom: 50px;
    text-align: left;
    text-shadow: 0 0 10px #b11e00, 0 0 20px #b11e00, 0 0 30px #b11e00; /* 文字のグロー効果 */
    line-height: 0.9;
    transform: scaleX(0.8);
    transform: scaleY(1.3);
    
 
}

.event-story2 {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    
}


.about-title p::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px; /* ボーダーと同じ太さ */
    background-color: #b11e00; /* ボーダーの色 */
    box-shadow: 0 0 5px #b11e00, 0 0 10px #b11e00; /* ボーダーのグロー効果（ボーダー自体は1px） */
    margin-top: 10px; /* ボーダーとテキストの間の距離 */
}

.about1 h2 {
    color: #f2f2f2;
    width: 80%;
    text-align: left;
    margin: auto;
    font-weight: normal;
    text-align: center;
}


.about1 p {
    color: #f2f2f2;
    width: 80%;
    text-align: left;
    margin: auto;
    text-shadow: 0 0 10px #554ae3, 0 0 20px #554ae3, 0 0 30px #554ae3;
    margin-bottom: 75px;
    font-size: 1.25em;
   
}


.p2 {
    display: flex;
    justify-content: center; /* 水平方向の中央揃え */
    align-items: start; /* 縦方向の上寄せ */
    flex-wrap: wrap; /* 必要に応じて折り返し */
    width: 100%;
    padding: 20px 0; /* 余白を調整 */
    margin-bottom: 50px;
}

.p2 img {
    width: 30%; /* 画像の幅を調整 */
    height: auto; /* 画像の縦伸びを防ぐ */
    max-width: 300px;
    object-fit: contain;
    margin-right: 30px; /* 画像とテキストの間に余白を追加 */
    z-index: 3;
}

.p2 p {
    color: #f2f2f2;
    width: 50%;
    text-align: left;
    text-shadow: 0 0 10px #554ae3, 0 0 20px #554ae3, 0 0 30px #554ae3;
    margin: 0;
    line-height: 1.4;
}



.point-imgs {
  display: flex;
  justify-content: center;  /* 画像を中央揃え */
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;  /* 画面幅に合わせて画像が折り返す */
}

.image-text {
  text-align: center;  /* 画像とテキストを中央揃え */
  margin: 0 15px;  /* 画像とテキスト間のスペース */
  flex: 1 1 30%;  /* 画像を3つ並べるための設定 */
  max-width: 200px;  /* 最大幅を設定 */
}

.image-text img {
  width: 100%;  /* 画像の幅を100%に設定 */
  height: auto;  /* 縦伸びを防止 */
  margin-bottom: 10px;  /* 画像とテキストの間のスペース */
}

.image-text p {
  color: #f2f2f2;  /* テキストの色 */
  font-size: 1em;  /* テキストサイズ */
  text-shadow: 0 0 10px #b11e00, 0 0 20px #b11e00, 0 0 30px #b11e00;
  text-align: center;
}


.p3 {
  color: #f2f2f2;
  width: 80%;
  text-align: left;
  margin: auto;
  text-shadow: 0 0 10px #b11e00, 0 0 20px #b11e00, 0 0 30px #b11e00;
  margin-bottom: 75px;
  font-size: 1.25em;
 
}

