.spotify-thumb img {
  box-shadow: none !important; /* 影を消す */
}/* ===== 基本設定 ===== */
body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Poppins', sans-serif;
  background-color: #1d2089;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
  text-align: center;
}

/* ===== ナビゲーション ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 90%;
  background: #1d2089;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 100;
}

.navbar .logo {
  font-weight: bold;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.lang-switch {
  font-size: 0.8rem;
}

/* ===== ハンバーガー ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 4px;
  background: #fff;
  display: block;
}

/* ===== セクション ===== */
section {
  padding: 17px 17px 17px;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 3px solid yellow;
  display: inline-block;
  margin-bottom: 20px;
}

/* ===== Hero ===== */
.hero {
  padding-top: 53px;
  background: url("bg-icon.png") no-repeat left center;
  background-size: cover; /* 必要に応じて contain に変更可 */
  color: #fff;
}
.hero h1 {
  font-size: 2.5rem;
  margin: 0.5em 0;
  color: white;
  text-shadow:
    2px 2px 0 #1d2089,
    -2px 2px 0 #1d2089,
    2px -2px 0 #1d2089,
    -2px -2px 0 #1d2089,
    0 2px 0 #1d2089,
    2px 0 0 #1d2089,
    -2px 0 0 #1d2089,
    0 -2px 0 #1d2089;
}
.hero .tagline {
  color: yellow;
  font-weight: bold;
  text-shadow:
    1px 1px 0 #1d2089,
    -1px 1px 0 #1d2089,
    1px -1px 0 #1d2089,
    -1px -1px 0 #1d2089,
    0 1px 0 #1d2089,
    1px 0 0 #1d2089,
    -1px 0 0 #1d2089,
    0 -1px 0 #1d2089;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.social-btn {
  background: yellow;
  color: #1d2089;
  padding: 5px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== Music ===== */
.music-list {
  list-style: none;
  padding: 0;
}

.music-list li {
  margin-bottom: 15px;
}

.music-list strong {
  color: #fff;
  font-weight: bold;
}

.yellow-link {
  color: yellow;
  text-decoration: none;
}

.music .video-wrapper iframe {
  width: 90%;
  max-width: 560px;
  height: 315px;
  margin-top: 15px;
}

/* ===== News ===== */
.news {
  display: flex;
  flex-direction: column;
  align-items: center; /* 全体中央 */
  gap: 0.5em;
}

.news p {
  display: flex;
  max-width: 500px; /* お好きな幅 */
  width: 100%;
  text-align: left;
  margin: 0;   
}

.news .date {
  color: yellow;
  font-weight: bold;
  flex-shrink: 0; /* 左側固定 */
  width: 100px;   /* 日付の幅を固定 */
  margin-right: 10px;
}

.news .content {
  flex-grow: 1;
}
/* ===== Link ===== */
.links {
  text-align: center;
  padding: 50px 20px;
}

.links h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  border-bottom: 3px solid yellow;
  display: inline-block;
  margin-bottom: 30px;
}

.link-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.link-buttons a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  color: #1d2089;
  background: yellow;
  transition: transform 0.2s, box-shadow 0.2s;
}

.link-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* ===== Contact ===== */

.contact iframe {
  display: block;  /* ← これがポイント */
  width: 100%;
  max-width: 640px;
  height: 700px;  /* 必要に応じて調整 */
  border: none;
  margin-top: 1em; /* タイトルとの間隔 */
}

.contact {
  text-align: center;
}
.contact iframe {
  margin: 1em auto 0; /* 上マージン＋中央揃え */
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.contact input, .contact textarea {
  padding: 8px;
  border-radius: 5px;
  border: none;
}

.contact button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: yellow;
  color: #1d2089;
  font-weight: bold;
  cursor: pointer;
}

#thank-you {
  color: #fff;
  background: #1d2089;
  padding: 10px;
  border-radius: 5px;
}

/* ===== Footer ===== */
.footer {
  padding: 20px;
  background: #111;
  margin-top: 20px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #1d2089;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
  }
  .hamburger {
    display: flex;
  }
  .navbar.active ul {
    display: flex;
  }
}


.video-wrapper {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

.video-thumb {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-thumb img {
  display: block;
  width: 100%;
  max-width: 560px;
  transition: transform 0.3s;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: yellow;
  opacity: 0.8;
  pointer-events: none;
  text-shadow: 0 0 8px #000;
  transition: transform 0.3s, opacity 0.3s;
}

/* ホバー時の演出 */
.video-thumb:hover {
  transform: scale(1.05);
  box-shadow: none;
}

.video-thumb:hover img {
  transform: scale(1.1);
}

.video-thumb:hover .play-button {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}

.hidden-link {
  color: #1d2089; /* 背景色と同じで見えない */
  text-decoration: none;
}
.hidden-link:hover {
  cursor: pointer;
}

/* ===== ギャラリー共通 ===== */
.gallery-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.gallery-view {
  overflow: hidden;
  width: 100%; /*(300px * 3 + 20px * 2) 横並び3枚 + margin調整 */
  /* ←ここで横並び調整可能（3枚→4枚にするなら3→4に変更） */
  max-width: calc(300px*3 + 20px*2); /* デフォルトは3枚 */
  margin: 0 50px; /* ボタン分の余白 */
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 0 0 auto;
  width: 227px; /* ←ここが画像サイズ。後で変えやすい */
  margin-right: 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 2px 2px 8px #000;
}

/* ボタン */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
}
.gallery-btn.prev { left: 0; }
.gallery-btn.next { right: 0; }

/* インジケータ */
.gallery-indicators {
  margin-top: 10px;
  text-align: center;
}
.gallery-indicators .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}
.gallery-indicators .dot.active {
  opacity: 1;
}

/* ===== ギャラリーポップアップ再生 ===== */
.video-popup {
  display: none; /* 初期は非表示 */
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-frame-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.8rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.spotify-thumb img {
  width: 100%;
  height: 100%;            /* コンテナいっぱいに広げる */
  object-fit: cover;       /* はみ出す部分を切り抜き */
  object-position: top center; /* 上中央を基準に表示 */
}

.spotify-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-x-widget {
  margin-top: 30px;
  padding: 15px;
  border: 2px solid #ccc; /* 枠線 */
  border-radius: 10px;
  max-width: 420px; /* ウィジェット幅に合わせる */
  background-color: #f9f9f9;
}

.news-x-widget h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
  text-align: center;
}

/* 埋め込みウィジェット自体も角を丸める */
.news-x-widget iframe {
  border-radius: 8px !important;
}

/* スマホだけ改行させる */
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.no-style-link {
  color: inherit;       /* 親要素の文字色をそのまま */
  text-decoration: none; /* 下線を消す */
  cursor: pointer;       /* 必要に応じてカーソルはリンクのまま */
}
