@charset "utf-8";

/* メイン画像ここから */
.main{
    height: 100vh;
    width: 100%;
    display: flex; 
    justify-content: center;
    align-items: center;
    /* animation: bg-change 10s linear infinite alternate; */
    animation: bg-change 10s linear;
    background-color: #fff;
}

.main_img_1{
  width: 10%;
}

.main_img_2{
  width: 6%;
}

.main_img_3{
  width: 8%;
}

/* メイン画像の文字の回転 */
/* 意 */
.keyframe3{
  animation-name: anim_1;
  transform: rotate(5deg);
  animation-duration: 5s;
}
/* 味 */
.keyframe4{
  animation-name: anim_2;
  transform: rotate(-3deg);
  animation-duration: 3s;
}
/* が */
.keyframe5{
  animation-name: anim_3;
  transform: rotate(0deg);
  animation-duration: 4s;
}
/* わ */
.keyframe6{
  animation-name: anim_4;
  transform: rotate(5deg);
  animation-duration: 5s;
}
/* か */
.keyframe7{
  animation-name: anim_5;
  transform: rotate(0deg);
  animation-duration: 4s;
}
/* る */
.keyframe8{
  animation-name: anim_6;
  transform: rotate(0deg);
  animation-duration: 5s;
}
/* と */
.keyframe9{
  animation-name: anim_7;
  transform: rotate(10deg);
  animation-duration: 4s;
}
/* 怖 */
.keyframe10{
  animation-name: anim_8;
  transform: rotate(0deg);
  animation-duration: 5s;
}
/* い */
.keyframe11{
  animation-name: anim_9;
  transform: rotate(0deg);
  animation-duration: 3s;
}
/* 展 */
.keyframe12{
  animation-name: anim_10;
  transform: rotate(13deg);
  animation-duration: 5s;
}

/* navここから */
.nav_area{
    width: 100%;
    background-color: #000;
  }
  
  .nav_area ul{
    display: flex;
    justify-content: center;
  }
  
  .nav_area ul li a{
    color: #fff;
  }
  
  .nav_area ul li{
    padding: 20px;
    margin: 0 10px;
  }
  
  
  /* ナビのホバー */
  .nav_area ul li a {
    transition: transform 0.2s ease, font-size 0.2s ease;
    display: inline-block; /* transformを適用するために必要 */
}

.nav_area ul li a:hover {
    transform: scale(1.5); /* 1.5倍に拡大 */
}

/* キャッチコピー */
  .cathcopy_area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    background-color: black;
    color: white;
  } 

  .text_1, .text_2, .text_3, .text_4 {
    opacity: 0;
    filter: blur(6px);
    transition: opacity 1.5s ease-out, filter 1.5s ease-out;
  }
  
  /* visibleクラスが付いたらアニメーションスタート */
  .text_1.is-visible,
  .text_2.is-visible,
  .text_3.is-visible,
  .text_4.is-visible {
    opacity: 1;
    filter: blur(0);
  }

 
/* タイピングアニメーション */
  /* #typing-text {
    white-space: nowrap;
    overflow: hidden;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .cursor {
    display: inline-block;
    animation: blink 1s step-start infinite;
    color: black;
    margin-left: 2px;
  } */

  .typing {
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .cursor {
    display: inline-block;
    animation: blink 0.8s steps(1) infinite;
    color: #fff;
  }



/* 開催情報 */
.information_area img{
  width: 100%;
}
.information {
  width: 300px;
  margin: 10% auto 10px;
}

.marquee {
  width: 100%;               /* 親コンテナ幅いっぱい */
  overflow: hidden;          /* はみ出し隠す */
  position: relative;
  background: transparent;
}

.marquee-content {
  display: flex;
  /* width: max-content;    */
  width: 100%;
  animation: scroll-left 10s linear infinite;
}

.marquee-content img {
  height: auto;              /* 縮小なし */
  width: auto;
  max-height: 150px;         /* 好きな高さに調整 */
  flex-shrink: 0;            /* 縮まらないように */
  user-select: none;
  pointer-events: none;
}



/* 開催情報の文字 */
.information h2 img {
  opacity: 0;
  transform: translateY(-100px) rotate(-15deg) scale(1.4);
  filter: blur(8px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

/* スライドイン＋アニメーション用クラス */
.information.visible h2 img {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
  filter: blur(0);
}

/* 箱 */
.container {
  max-width: 600px;
  margin: 100px auto 50px;
  padding: 2em;
  background: rgba(30, 0, 0, 0.8);
  box-shadow: 0 0 30px crimson;
  border-radius: 10px;
  /* overflow: hidden;  削除してはみ出しOKに */
  position: relative;
}

.containerbox{
  margin-bottom: 15%;
}

ul.horror-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.horror-list li {
  opacity: 0;
  transform: translateX(-100px);
  filter: blur(4px);
  transition: all 0.8s ease-out;
  margin-bottom: 1.5em;
  /* border-bottom: 1px dashed crimson; */
  padding-bottom: 0.5em;
}

ul.horror-list li.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.row {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  flex-wrap: wrap;
}

.label {
  font-weight: bold;
  color: #ff4c4c;
  min-width: 6em;
  flex-shrink: 0;
}

.content {
  flex: 1;
  color: #f44336;
  line-height: 1.5;
  text-align: left;
}

/* 最初の文字の揺れ方に近い動き */
.content span {
  display: inline-block;
  animation-name: horrorShake;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 0.5s;
}

.content span:nth-child(odd) {
  animation-duration: 0.45s;
  animation-delay: calc(var(--i) * 0.06s);
}

.content span:nth-child(even) {
  animation-duration: 0.55s;
  animation-delay: calc(var(--i) * 0.06s);
}

.title {
position: absolute;
top: -40px; /* 今よりもっと上にずらす */
left: 50%;
transform: translateX(-50%) rotate(-3deg);
background: #111;
color: crimson;
padding: 0.4em 1.2em;
font-size: 1.5em;
font-weight: bold;
box-shadow: 0 0 15px red, inset 0 0 5px darkred;
animation: flicker 2s infinite;
letter-spacing: 1px;
z-index: 10;
}

.title_2 {
  position: absolute;
  top: -40px; /* 今よりもっと上にずらす */
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
  background: #111;
  color: crimson;
  padding: 0.4em 1.2em;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 0 15px red, inset 0 0 5px darkred;
  animation: flicker 2s infinite;
  letter-spacing: 1px;
  z-index: 10;
  }


  /* newsエリア */
  .note_area {
    background-color: black;
    color: white;
    width: 80%;
    margin: 200px auto; /* ← これで note_area 自体は中央 */
  }
  

.news-title-area img{
    width: 100%;
  }

  .news-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px; /* 中央に寄せたい幅 */
    width: 100%;
    margin: 0 auto; /* ← 中央寄せに必須 */
  }

  .news-list {
    padding: 0; 
    margin: 0; 
    display: flex; 
    flex-direction: column; 
  }
  
  .news-item {
    display: flex;
    align-items: center; 
    padding: 10px; 
  }
  
  .news-date {
    margin-right: 10px; 
    white-space: nowrap; 
    min-width: 80px; 
  }

  .news-title-area {
    width: 40%;
    text-align: center;
  }
  
  .news-list-area {
    width: 60%;
  }
  
  .news-item{
    font-size: 15px;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
  }
  
  .news-item::after {
    background: rgb(230, 228, 214);
    border-radius: 50%;
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
  }

/* ボタン */
.btn_area {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}


.box {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  position: relative;
  justify-content: center;
  border-radius: 30px;
}

.box.fall {
  animation: crumble 1s forwards;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5em 1em;
  border: none;
  box-shadow: inset -1px -1px #333, inset 1px 1px #fff, inset -2px -2px #999, inset 2px 2px #ffffff;
  background-color: #c0c0c0;
  color: #333;
  font-size: 1em;
  outline: 1px dotted #333;
  outline-offset: -4px;
}

.button:active {
  box-shadow: inset -1px -1px #fff, inset 1px 1px #333, inset -2px -2px #ffffff, inset 2px 2px #999;
}



.button:hover {
  box-shadow: unset;
  transform: translateY(4px);
}



  /* ホバー */
  .news-list a {
    position: relative;
    text-decoration: none;
    display: inline-block; /* 擬似要素の位置合わせ用 */
  }
  
  .news-list a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%; /* 文字の真ん中に線を置く */
    transform: translateY(-50%);
    height: 2px; /* 線の太さ */
    width: 0;
    background-color: red;
    transition: width 0.3s ease;
  }
  
  .news-list a:hover::after {
    width: 100%; /* ホバー時に線を全幅に */
  }


  


/* ノイズ */
/* .noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/logo.png'); 
  opacity: 0.2;
  animation: noiseFlicker 0.08s steps(1, end) infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes noiseFlicker {
  0%   { background-position: 0 0; }
  25%  { background-position: 5px 3px; }
  50%  { background-position: -3px -2px; }
  75%  { background-position: 2px -1px; }
  100% { background-position: 0 0; }
} */





/* メイン画像の文字の回転 */
/* 意 */
@keyframes anim_1 {
    50% {
      transform: rotate(-20deg);
    }
    100% {
      transform: rotate(5deg);
    }
  }
  /* 味 */
  @keyframes anim_2 {
    50% {
      transform: rotate(25deg);
    }
    100% {
      transform: rotate(-3deg);
    }
  }
  /* が */
  @keyframes anim_3 {
    30% {
      transform: rotate(-40deg);
    }
    70% {
      transform: rotate(20deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  /* わ */
  @keyframes anim_4 {
    50% {
      transform: rotate(-10deg);
    }
    100% {
      transform: rotate(5deg);
    }
  }
  /* か */
  @keyframes anim_5 {
    50% {
      transform: rotate(40deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  /* る */
  @keyframes anim_6 {
    50% {
      transform: rotate(-50deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  /* と */
  @keyframes anim_7 {
    50% {
      transform: rotate(25deg);
    }
    75% {
      transform: rotate(-20deg);
    }
    100% {
      transform: rotate(10deg);
    }
  }
  /* 怖 */
  @keyframes anim_8 {
    20% {
      transform: rotate(-20deg);
    }
    50% {
      transform: rotate(20deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  /* い */
  @keyframes anim_9 {
    50% {
      transform: rotate(25deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  /* 展 */
  @keyframes anim_10 {
    75% {
      transform: rotate(-20deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }

  /* トップ画像の背景色変更 */
@keyframes bg-change {
    0% {
      background-color: #fff;
    }
    20% {
      background-color: #fff;
    }
    50% {
      background-color: #fff;
    }
    51% {
      background-color: #ff4444;
    }
    80% {
      background-color: #ff0d0d;
    }
    100% {
      background-color: #fff;
    }
  }

  /* タイピングアニメーション */ 
  /* @keyframes blink {
    50% {
      opacity: 0;
    }
  } */
  
  
  @keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
  }
  



/* 開催情報の箱 */
/* アニメーション：ゆらぎ＋フェード＋ぼかし */
@keyframes horrorShake {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-1px, 2px) rotate(-2deg); }
  50% { transform: translate(1px, -1px) rotate(1deg); }
  75% { transform: translate(-1px, 1px) rotate(0deg); }
  100% { transform: translate(0, 0) rotate(-1deg); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  10% { opacity: 0.8; }
  20% { opacity: 0.5; }
  30% { opacity: 0.9; }
  40% { opacity: 0.6; }
  50% { opacity: 0.95; }
  60% { opacity: 0.4; }
  70% { opacity: 1; }
  80% { opacity: 0.7; }
  90% { opacity: 0.2; }
}

/* ボタン */
@keyframes crumble {
  0% {
    transform: rotate(0deg) translateY(0);
    opacity: 1;
  }
  30% {
    transform: rotate(10deg) translateY(20px);
  }
  60% {
    transform: rotate(-10deg) translateY(80px);
    opacity: 0.8;
  }
  100% {
    transform: rotate(90deg) translateY(300px);
    opacity: 0;
  }
}



/* レスポンシブ */
/* newsエリア */
@media screen and (max-width: 768px) {
  .news-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .news-title-area,
  .news-list-area {
    width: 100%;
  }
}


/* 左にスライドするアニメーション */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}




@media screen and (max-width: 768px) {
  .main{
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .main_img_1{
    width: 80px;
  }
  
  .main_img_2{
    width: 45px;
  }
  
  .main_img_3{
    width: 55px;
  }

  .nav_area ul li{
    font-size: 12px;
    padding: 5px;
    margin: 0 10px;
  }

  .container{
    /* margin: 80px 20px 20px; */
    padding: 30px;
    max-width: 450px;
  }

  .news-list{
    padding-top: 10px;
  }

  .news-list-area ul li{
    font-size: 14px;
    padding: 10px 0;
  }

  .marquee-content {
    width: 100%;
  }

  .container ul li{
    font-size: 14px;
  }



}

@media screen and (max-width: 480px) {
  .main_img_1{
    width: 80px;
  }
  
  .main_img_2{
    width: 45px;
  }
  
  .main_img_3{
    width: 55px;
  }

  .cathcopy h2{
    font-size: 18px;
  }

  .cathcopy p{
    font-size: 14px;
  }

  .marquee-content {
    width: 100%;        /* 中身の幅に合わせる */
  }

  .container{
    padding: 30px;
    max-width: 300px;
  }

  .title,
  .title_2{
    font-size: 20px;
  }

  .row {
    display: block;
  }
  



}