html {
  scroll-behavior: smooth;
}


:root {
  /* top-imageの設定 */
  --top-image-width: 100%;
  /* 横幅 */
  --top-image-height: 70%;
  /* 高さ */
  --top-image-final-top: 50%;
  /* 最終位置 */

  /* bottom-imageの設定 */
  --bottom-image-width: 100%;
  /* 横幅 */
  --bottom-image-height: 100%;
  /* 高さ */
  --bottom-image-bottom: -80%;
  /* 初期位置 */
  --bottom-image-final-bottom: 0;
  /* 最終位置 */
}

html {
  scroll-behavior: smooth;
}


:root {
  /* top-imageの設定 */
  --top-image-width: 100%;
  /* 横幅 */
  --top-image-height: 70%;
  /* 高さ */
  --top-image-final-top: 50%;
  /* 最終位置 */

  /* bottom-imageの設定 */
  --bottom-image-width: 100%;
  /* 横幅 */
  --bottom-image-height: 100%;
  /* 高さ */
  --bottom-image-bottom: -80%;
  /* 初期位置 */
  --bottom-image-final-bottom: 0;
  /* 最終位置 */
}

#event-info {
  background: #e0e0e0;  /* グレー強め（明るすぎず暗すぎない中間グレー） */
  color: #001f3f;       /* ネイビーブルー */
  padding: 60px 20px;
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wave-image {
  background-image: url('wave-pattern.png'); /* 波のパターン画像を指定 */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.eventinfo-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
  color: #001f3f;  /* ネイビーブルー */
  text-shadow: none;
}

.break-mobile {
  display: none;
}


@media (max-width: 768px) {
  .eventinfo-text p {
    font-size: 1rem;
  }

  .break-mobile {
    display: inline;
  }
}


.bg-wrapper {
  background-image: url("photos/yuyakeimage1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

#main-visual,
#schedule,
#shops {
  text-align: center;
  background-color: #FFE8A1;
  /* 同じ黄色で統一 */
}

/* メインヴィジュアル */
#main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* メインヴィジュアル　アニメーション */
#main-visual.active .background-image {
  transform: scale(1.2);
  /* 拡大演出 */
  transition: transform 3s ease-out;
}


/* 背景画像 */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('photos/mainvisual1.png');
  /* 相対パスを使用 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* 共通スタイル */
.slide-image {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 2s ease;
  z-index: 2;
}

/* top-image */
.top-image {
  width: var(--top-image-width);
  height: var(--top-image-height);
  top: var(--top-image-top);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* 文字アニメーションの設定 */
.groovy-text {
  display: flex;
  gap: 20px;
  font-size: 4rem;
  font-weight: bold;
  color: #FFFFFF;
  justify-content: center;
}

.groovy-text span {
  opacity: 0;
  transform: translateX(20px);
  /* 右からスタート */
  animation: slideIn 0.4s forwards, colorfulGlow 2s infinite;
}

@keyframes colorfulGlow {
  0% {
    color: #ffffff;
    text-shadow: none;
  }

  50% {
    color: #001b33;
    /* 黒に近いネイビー */
    text-shadow:
      0 0 8px #000d1a,
      /* 限りなく黒に近いネイビー影 */
      0 0 16px #001b33;
    /* 濃いネイビー発光 */
  }

  100% {
    color: #ffffff;
    text-shadow: none;
  }
}

.groovy-black {
  color: black;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.groovy-text span:nth-child(1) {
  animation-delay: 0s;
}

.groovy-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.groovy-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.groovy-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.groovy-text span:nth-child(5) {
  animation-delay: 0.4s;
}

.groovy-text span:nth-child(6) {
  animation-delay: 0.5s;
}

.groovy-text span:nth-child(7) {
  animation-delay: 0.6s;
}

.groovy-text span:nth-child(8) {
  animation-delay: 0.7s;
}

.groovy-text span:nth-child(9) {
  animation-delay: 0.8s;
}

.groovy-text span:nth-child(10) {
  animation-delay: 0.9s;
}

.groovy-text span:nth-child(11) {
  animation-delay: 1.0s;
}

.groovy-text span:nth-child(12) {
  animation-delay: 1.1s;
}

.groovy-text span:nth-child(13) {
  animation-delay: 1.2s;
}

.groovy-text span:nth-child(14) {
  animation-delay: 1.3s;
}

.groovy-text span:nth-child(15) {
  animation-delay: 1.4s;
}

.groovy-text span:nth-child(16) {
  animation-delay: 1.5s;
}

.groovy-text span:nth-child(17) {
  animation-delay: 1.6s;
}

.groovy-text span:nth-child(18) {
  animation-delay: 1.7s;
}

.groovy-text span:nth-child(19) {
  animation-delay: 1.8s;
}

.groovy-text span:nth-child(20) {
  animation-delay: 1.9s;
}

.groovy-text span:nth-child(21) {
  animation-delay: 2.0s;
}

.groovy-text span:nth-child(22) {
  animation-delay: 2.1s;
}

.groovy-text span:nth-child(23) {
  animation-delay: 2.2s;
}

.groovy-text span:nth-child(24) {
  animation-delay: 2.3s;
}

/* bottom-image */
.bottom-image {
  background-image: url('photos/mainvisualbottom.png');
  width: var(--bottom-image-width);
  height: var(--bottom-image-height);
  bottom: var(--bottom-image-bottom);
}

/* アニメーション */
#main-visual.active .bottom-image {
  bottom: var(--bottom-image-final-bottom);
}

/* .wave-image {
  background-image: url('photos/Wave move.png');
  background-size: cover;         
  background-position: center;    
  background-repeat: no-repeat;   
  width: 100%;
  height: 300px; 
} */

/* 参加ショップ情報 */
.morning-image {
  background-image: url("photos/ChatGPT Image 2025年4月12日 15_19_36.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .yuugure-image{
  background-image: url("photos/evening.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.morning-image,
.yuugure-image {
  overflow: hidden;
}  */



#shops {
  padding: 20px;
  background-color: #f7f7f7;
  /* もし別途スクロールバー設定したい場合はこちらを有効化 */
  /* max-height: 500px;
  overflow-y: auto; */
  /* ーーーーーーーーーー */
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.shop {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #FFE8A1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#shops::-webkit-scrollbar {
  width: 8px;
}

/* スクロールバー光る演出 */
#shops::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #87CEEB, #FFD700);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 200% 0;
  }
}

#shops::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

/* #shops h2 {
  font-size: 2.4rem;
  color: #333;
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

#shops h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  margin: 10px auto 0;
  background-color: #87CEEB;
  border-radius: 3px;
} */


.shop h3 {
  font-size: 1.8rem;
}

.shop p {
  font-size: 1.1rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1.05);
}

/* ショップの紹介ページがグルんと回転するアニメーション */
@keyframes rotateFadeIn {
  0% {
    opacity: 0;
    transform: rotateX(90deg) translateY(50px);
  }

  100% {
    opacity: 1;
    transform: rotateX(0) translateY(0);
  }
}

.fade-in.visible {
  animation: rotateFadeIn 1s ease-out forwards;
}


/* 画像のスタイル */

section h2 {
  font-family: 'Bebas Neue', 'Anton', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a2a6c; /* 濃いネイビーのベースカラー */
  text-shadow: 2px 2px 8px rgba(26, 42, 108, 0.4);
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 8px;
  transition: all 0.3s ease;
}

section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #1a2a6c, #001f3f, #162447); /* ネイビーグラデーション */
  border-radius: 2px;
  animation: underlineFlow 2s infinite alternate;
}

@keyframes underlineFlow {
  from {
    transform: scaleX(1);
    opacity: 0.6;
  }
  to {
    transform: scaleX(1.2);
    opacity: 1;
  }
}

section h2:hover {
  transform: scale(1.05) rotate(-1deg);
  color: #162447;  /* さらに深いネイビーにホバー時変化 */
}

.shop-img img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 10px 0;
  border-radius: 8px;
}

/* .shop a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 15px rgba(255, 0, 150, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop a i {
  font-size: 1.4rem;
}

.shop a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 0, 150, 0.5);
  opacity: 0.95;
}

.shop a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #002f4b, #003d63, #004c8c, #005f9e);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 15px rgba(0, 50, 100, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop a i {
  font-size: 1.4rem;
  color: #ff0077;
}

.shop a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 50, 100, 0.5);
  opacity: 0.95;
}  */


/* 店名用のリンク */
.shop-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 15px rgba(255, 0, 150, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-name i {
  font-size: 1.4rem;
}

.shop-name:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 0, 150, 0.5);
  opacity: 0.95;
}

.shop-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #001f3f, #003366, #002147, #001d33, #001f45);
  /* 濃いネイビーのグラデーション */
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 150, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-name i {
  font-size: 1.4rem;
}

.shop-name:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 150, 0.5);
  opacity: 0.95;
}


/* グラデーションアニメーション */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  /* 最初に送ったInstagramのグラデーション */
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 15px rgba(255, 0, 150, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.instagram-link i {
  font-size: 1.4rem;
}

.instagram-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 0, 150, 0.5);
  opacity: 0.95;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.shop-info h2,
.shop.fade-in h3 {
  font-family: 'Bebas Neue', 'Anton', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff0077;
  text-shadow: 2px 2px 5px rgba(255, 0, 119, 0.3);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

/* アンダーライン風エフェクト */
.shop-info h2::after,
.shop.fade-in h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  /* background: linear-gradient(to right, #ff0077, #ffae00); */
  background: linear-gradient(45deg, #001f3f, #003366);
  border-radius: 2px;
  animation: underlineGlow 2s infinite alternate;
}

/* アニメーション */
@keyframes underlineGlow {
  from {
    transform: scaleX(1);
    opacity: 0.7;
  }

  to {
    transform: scaleX(1.2);
    opacity: 1;
  }
}

.shop-info h2:hover,
.shop.fade-in h3:hover {
  transform: scale(1.05) rotate(-1deg);
  color: #ffae00;
}



/* 開催情報 */

#schedule {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

}

/* #schedule h2 {
  border-bottom: 24px solid #87CEEB;
  width: 100%;
  margin-bottom: -18px;
  text-align: center;
  background-color: white;
  margin-bottom: 30px;
} */

.map-container iframe {
  width: 80%;
  height: 300px;
  border: none;
  margin: 0 auto;
}

/* フッター */
/* footer {
  background-color: #f2f2f2;
  text-align: center;
  padding: 20px;
} */

.more-about p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  margin: 6px 0;
  text-align: center;
  color: #444;
}


footer {
  text-align: center;
  padding: 30px 10px;
  background-color: #222;
  color: #fff;
  font-family: 'Bebas Neue', 'Anton', sans-serif;
  letter-spacing: 1px;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, #ff69b4, #00bfff);
  margin-bottom: 10px;
}


/* ▼ スマホ用（〜767px） */
@media (max-width: 767px) {
  .groovy-text {
    font-size: 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .bottom-image {
    width: 120%;
    /* 横幅を調整したい値に */
    max-width: none;
    /* 必要に応じて制限解除 */
    display: block;
    margin-left: 50%;
    transform: translateX(-50%);
    /* 中央に寄せるポイント！ */
    background-position: center;
    background-repeat: no-repeat;
  }

  .break-mobile {
    display: block;
    width: 100%;
    height: 0;
  }

  .shop-img img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  /* 他にもスマホ用の調整があればここに */
}

/* ▼ タブレット用（768px〜1024px） */
@media (min-width: 768px) and (max-width: 1024px) {
  .groovy-text {
    font-size: 2rem;
    gap: 20px;
  }

  .shop-img img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }

  /* 他にもタブレット用の調整があればここに */
}

.bg-wrapper {
  background-image: url("photos/yuyakeimage1.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

#main-visual,
#schedule,
#shops {
  text-align: center;
  background-color: #FFE8A1;
  /* 同じ黄色で統一 */
}

/* メインヴィジュアル */
#main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* メインヴィジュアル　アニメーション */
#main-visual.active .background-image {
  transform: scale(1.2);
  /* 拡大演出 */
  transition: transform 3s ease-out;
}


/* 背景画像 */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('photos/mainvisual1.png');
  /* 相対パスを使用 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* 共通スタイル */
.slide-image {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 2s ease;
  z-index: 2;
}

/* top-image */
.top-image {
  width: var(--top-image-width);
  height: var(--top-image-height);
  top: var(--top-image-top);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* 文字アニメーションの設定 */
.groovy-text {
  display: flex;
  gap: 20px;
  font-size: 4rem;
  font-weight: bold;
  color: #FFFFFF;
  justify-content: center;
}

.groovy-text span {
  opacity: 0;
  transform: translateX(20px);
  /* 右からスタート */
  animation: slideIn 0.4s forwards, colorfulGlow 2s infinite;
}

@keyframes colorfulGlow {
  0% {
    color: #ffffff;
    text-shadow: none;
  }

  50% {
    color: #001b33;
    /* 黒に近いネイビー */
    text-shadow:
      0 0 8px #000d1a,
      /* 限りなく黒に近いネイビー影 */
      0 0 16px #001b33;
    /* 濃いネイビー発光 */
  }

  100% {
    color: #ffffff;
    text-shadow: none;
  }
}

.groovy-black {
  color: black;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.groovy-text span:nth-child(1) {
  animation-delay: 0s;
}

.groovy-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.groovy-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.groovy-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.groovy-text span:nth-child(5) {
  animation-delay: 0.4s;
}

.groovy-text span:nth-child(6) {
  animation-delay: 0.5s;
}

.groovy-text span:nth-child(7) {
  animation-delay: 0.6s;
}

.groovy-text span:nth-child(8) {
  animation-delay: 0.7s;
}

.groovy-text span:nth-child(9) {
  animation-delay: 0.8s;
}

.groovy-text span:nth-child(10) {
  animation-delay: 0.9s;
}

.groovy-text span:nth-child(11) {
  animation-delay: 1.0s;
}

.groovy-text span:nth-child(12) {
  animation-delay: 1.1s;
}

.groovy-text span:nth-child(13) {
  animation-delay: 1.2s;
}

.groovy-text span:nth-child(14) {
  animation-delay: 1.3s;
}

.groovy-text span:nth-child(15) {
  animation-delay: 1.4s;
}

.groovy-text span:nth-child(16) {
  animation-delay: 1.5s;
}

.groovy-text span:nth-child(17) {
  animation-delay: 1.6s;
}

.groovy-text span:nth-child(18) {
  animation-delay: 1.7s;
}

.groovy-text span:nth-child(19) {
  animation-delay: 1.8s;
}

.groovy-text span:nth-child(20) {
  animation-delay: 1.9s;
}

.groovy-text span:nth-child(21) {
  animation-delay: 2.0s;
}

.groovy-text span:nth-child(22) {
  animation-delay: 2.1s;
}

.groovy-text span:nth-child(23) {
  animation-delay: 2.2s;
}

.groovy-text span:nth-child(24) {
  animation-delay: 2.3s;
}

/* bottom-image */
.bottom-image {
  background-image: url('photos/mainvisualbottom.png');
  width: var(--bottom-image-width);
  height: var(--bottom-image-height);
  bottom: var(--bottom-image-bottom);
}

/* アニメーション */
#main-visual.active .bottom-image {
  bottom: var(--bottom-image-final-bottom);
}

/* .wave-image {
  background-image: url('photos/Wave move.png');
  background-size: cover;         
  background-position: center;    
  background-repeat: no-repeat;   
  width: 100%;
  height: 300px; 
} */

/* 参加ショップ情報 */
.morning-image {
  background-image: url("photos/ChatGPT Image 2025年4月12日 15_19_36.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .yuugure-image{
  background-image: url("photos/evening.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.morning-image,
.yuugure-image {
  overflow: hidden;
}  */



#shops {
  padding: 20px;
  background-color: #f7f7f7;
  /* もし別途スクロールバー設定したい場合はこちらを有効化 */
  /* max-height: 500px;
  overflow-y: auto; */
  /* ーーーーーーーーーー */
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.shop {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #FFE8A1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#shops::-webkit-scrollbar {
  width: 8px;
}

/* スクロールバー光る演出 */
#shops::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #87CEEB, #FFD700);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 200% 0;
  }
}

#shops::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

/* #shops h2 {
  font-size: 2.4rem;
  color: #333;
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

#shops h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  margin: 10px auto 0;
  background-color: #87CEEB;
  border-radius: 3px;
} */


.shop h3 {
  font-size: 1.8rem;
}

.shop p {
  font-size: 1.1rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1.05);
}

/* ショップの紹介ページがグルんと回転するアニメーション */
@keyframes rotateFadeIn {
  0% {
    opacity: 0;
    transform: rotateX(90deg) translateY(50px);
  }

  100% {
    opacity: 1;
    transform: rotateX(0) translateY(0);
  }
}

.fade-in.visible {
  animation: rotateFadeIn 1s ease-out forwards;
}


/* 画像のスタイル */

section h2 {
  font-family: 'Bebas Neue', 'Anton', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a2a6c; /* 濃いネイビーのベースカラー */
  text-shadow: 2px 2px 8px rgba(26, 42, 108, 0.4);
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 8px;
  transition: all 0.3s ease;
}

section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #1a2a6c, #001f3f, #162447); /* ネイビーグラデーション */
  border-radius: 2px;
  animation: underlineFlow 2s infinite alternate;
}

@keyframes underlineFlow {
  from {
    transform: scaleX(1);
    opacity: 0.6;
  }
  to {
    transform: scaleX(1.2);
    opacity: 1;
  }
}

section h2:hover {
  transform: scale(1.05) rotate(-1deg);
  color: #162447;  /* さらに深いネイビーにホバー時変化 */
}

.shop-img img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 10px 0;
  border-radius: 8px;
}

/* .shop a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 15px rgba(255, 0, 150, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop a i {
  font-size: 1.4rem;
}

.shop a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 0, 150, 0.5);
  opacity: 0.95;
}

.shop a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #002f4b, #003d63, #004c8c, #005f9e);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 15px rgba(0, 50, 100, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop a i {
  font-size: 1.4rem;
  color: #ff0077;
}

.shop a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 50, 100, 0.5);
  opacity: 0.95;
}  */


/* 店名用のリンク */
.shop-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 15px rgba(255, 0, 150, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-name i {
  font-size: 1.4rem;
}

.shop-name:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 0, 150, 0.5);
  opacity: 0.95;
}

.shop-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #001f3f, #003366, #002147, #001d33, #001f45);
  /* 濃いネイビーのグラデーション */
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 150, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-name i {
  font-size: 1.4rem;
}

.shop-name:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 150, 0.5);
  opacity: 0.95;
}


/* グラデーションアニメーション */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  /* 最初に送ったInstagramのグラデーション */
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  box-shadow: 0 4px 15px rgba(255, 0, 150, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.instagram-link i {
  font-size: 1.4rem;
}

.instagram-link:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 0, 150, 0.5);
  opacity: 0.95;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.shop-info h2,
.shop.fade-in h3 {
  font-family: 'Bebas Neue', 'Anton', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff0077;
  text-shadow: 2px 2px 5px rgba(255, 0, 119, 0.3);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

/* アンダーライン風エフェクト */
.shop-info h2::after,
.shop.fade-in h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  /* background: linear-gradient(to right, #ff0077, #ffae00); */
  background: linear-gradient(45deg, #001f3f, #003366);
  border-radius: 2px;
  animation: underlineGlow 2s infinite alternate;
}

/* アニメーション */
@keyframes underlineGlow {
  from {
    transform: scaleX(1);
    opacity: 0.7;
  }

  to {
    transform: scaleX(1.2);
    opacity: 1;
  }
}

.shop-info h2:hover,
.shop.fade-in h3:hover {
  transform: scale(1.05) rotate(-1deg);
  color: #ffae00;
}



/* 開催情報 */

#schedule {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

}

/* #schedule h2 {
  border-bottom: 24px solid #87CEEB;
  width: 100%;
  margin-bottom: -18px;
  text-align: center;
  background-color: white;
  margin-bottom: 30px;
} */

.map-container iframe {
  width: 80%;
  height: 300px;
  border: none;
  margin: 0 auto;
}

/* フッター */
/* footer {
  background-color: #f2f2f2;
  text-align: center;
  padding: 20px;
} */

.more-about p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  margin: 6px 0;
  text-align: center;
  color: #444;
}


footer {
  text-align: center;
  padding: 30px 10px;
  background-color: #222;
  color: #fff;
  font-family: 'Bebas Neue', 'Anton', sans-serif;
  letter-spacing: 1px;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, #ff69b4, #00bfff);
  margin-bottom: 10px;
}

footer a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f0f0f0;  /* 明るいグレー系 */
  color: #333;                /* 濃いグレー文字 */
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  border: 2px solid #333;     /* 枠でしっかり見せる */
  transition: all 0.2s ease;
}

footer a:hover {
  background-color: #333;     /* ホバー時に反転 */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}



/* ▼ スマホ用（〜767px） */
@media (max-width: 767px) {
  .groovy-text {
    font-size: 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .bottom-image {
    width: 120%;
    /* 横幅を調整したい値に */
    max-width: none;
    /* 必要に応じて制限解除 */
    display: block;
    margin-left: 50%;
    transform: translateX(-50%);
    /* 中央に寄せるポイント！ */
    background-position: center;
    background-repeat: no-repeat;
  }

  .break-mobile {
    display: block;
    width: 100%;
    height: 0;
  }

  .shop-img img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  /* 他にもスマホ用の調整があればここに */
}

/* ▼ タブレット用（768px〜1024px） */
@media (min-width: 768px) and (max-width: 1024px) {
  .groovy-text {
    font-size: 2rem;
    gap: 20px;
  }

  .shop-img img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }

  /* 他にもタブレット用の調整があればここに */
}
