/* =========================
   基本設定
========================= */
* {
  box-sizing: border-box;
}

:root {
  --gold: #c9b36d;
  --bg-blue: #e8f6fb;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  background: var(--bg-blue);
  overflow-x: hidden;
  
  /* 追加：ヘッダーの高さ(64px)分だけ余白を空ける */
  padding-top: 64px; 
}

/* =========================
   背景動画（TOP用）
========================= */
#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* =========================
   イントロ
========================= */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

#intro video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) blur(0px);
  animation: videoIntro 1.2s ease-out forwards;
}

/* 暗転レイヤー */
#intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

/* イントロ文字 */
.intro-text {
  position: relative;
  z-index: 2;
  color: var(--gold, #d4af37);
  /* 文字サイズを少し大きく調整 (例: clamp(48px, 8vw, 96px)) */
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.15em;
  text-align: center;
  padding: 0 1rem;
  
  opacity: 0;
  transform: translateX(100vw) scale(1); 
  
  animation: 
    textSlideIn 2.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
    textPauseAndFade 1.2s ease-in 2.2s forwards;
}

/* --- アニメーション定義 --- */

/* 1. 背景動画のぼかし解除アニメーション */
@keyframes videoIntro {
  from { filter: brightness(0.75) blur(4px); }
  to { filter: brightness(0.65) blur(0px); }
}

/* 2. 文字の登場（スライドイン ＆ 弾む動き） */
@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100vw) scale(1);
  }
  /* 途中まで一気にスライドイン */
  60% {
    opacity: 1;
    transform: translateX(-3vw) scale(1);
  }
  /* 75%〜100%にかけて、ぴょんぴょんとボヨンボヨンに弾ませる */
  75% {
    opacity: 1;
    transform: translateX(2vw) scale(1);
  }
  88% {
    opacity: 1;
    transform: translateX(-1vw) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0vw) scale(1);
  }
}

/* 3. 文字の静止〜フェードアウトアニメーション */
@keyframes textPauseAndFade {
  0%, 60% {
    opacity: 1;
    transform: translateX(0vw) scale(1);
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform: translateX(0vw) scale(1.05);
    filter: blur(2px);
  }
}
/* =========================
   ヘッダー
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  background: rgba(234, 246, 248, 0.9);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 100;
}

.logo {
  font-size: 26px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--gold);
  position: relative;
  z-index: 1002;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

/* =========================
   ハンバーガー
========================= */
.hamburger {
  width: 28px;
  height: 20px;
  display: flex;            
  flex-direction: column;  
  justify-content: space-between; 
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%; 
  height: 2px;
  background: var(--gold);
}

/* =========================
   モバイルナビ
========================= */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: rgba(120, 120, 120, 0.85);
  backdrop-filter: blur(8px);
  transition: right 0.3s ease;
  z-index: 2000; /* overlay(1500)より大きく設定 */
  padding-top: 80px;
}

/* メニューが開いた時の位置も調整 */
.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0 24px;
}

.mobile-nav li {
  margin-bottom: 24px;
}

.mobile-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

/* =========================
   Hero
========================= */
.hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
  margin-top: -64px; /* bodyのpadding-top分を打ち消して上に引き上げる */
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-img.active {
  opacity: 1;
}

/* =========================
   YouTube
========================= */
#youtube .swiper {
	padding: 1em 0 0 0;
}
.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
	margin: 0;
  padding: 0;
}
.infinite-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
	padding: 0 .5em;
}
.infinite-slider .swiper-slide::after {
	position: relative;
  background: none;
}

/* YouTube動画をレスポンシブにするための設定 */
.video-slider .swiper-slide {
  aspect-ratio: 16 / 9; /* 動画の比率を維持 */
}

.video-slider iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none; /* スライド操作を邪魔しないようにする */
  border-radius: 12px;
}

/* スライダー全体の余白 */
.video-slider {
  padding: 20px 0;
  overflow: hidden;
}

/* =========================
   swiper
========================= */

/* 基本構造・ラッパー */

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    transform: translate3d(0px, 0, 0);
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

/* 動画スライダー専用の調整 */
.video-slider {
    padding: 10px 0;
    overflow: hidden;
}

.video-slider .swiper-slide {
    aspect-ratio: 16 / 9;
}

.video-slider iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

/* =========================
   セクション
========================= */
.section {
  padding: 20px 20px;
  text-align: center;
  max-width: 1200px; 
  margin: 0 auto;    /* 中央寄せ */
}
.section h2 {
  font-size: 1.8rem;      /* ここでフォントサイズを大きく調整 */
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #d4b36a;
}

.more-btn {
  display: block;          /* インラインからブロックに変更 */
  margin: 24px auto 0 auto; /* 上下左右の中央寄せを適用 */
  width: fit-content;      /* ボタンの横幅を文字＋パディングに合わせる */
  border-radius: 10px;

  /* パディングなど既存の設定はそのまま */
  padding: 10px 120px; 
  border: 1px solid var(--gold);
  text-decoration: none;
  
  background: transparent;
  color: var(--gold);
  
  transition: background 0.3s ease, color 0.3s ease;
}

/* マウスオーバー時の設定 */
.more-btn:hover {
  background: var(--gold);
  color: #ffffff; 
}



/* =========================
   TOP ギャラリー
========================= */
.top-gallery {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
Gallery Grid（TOP / Gallery 共通）
========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(6px, 1.5vw, 12px);
}

.gallery-grid img {
  width: 100%;
  /* 以下の2行が重要です */
  aspect-ratio: 1 / 1;      /* 正方形にする（または 4/3 など） */
  object-fit: cover;        /* 画像を切り抜いて枠いっぱいに埋める */
  
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.4s ease;
  display: block;           /* 下の隙間を消す */
  border-radius: 12px;
}

.gallery-grid img:hover {

transform: scale(1.05);

opacity: 0.85;

} 


/* =========================
   ギャラリーページ
========================= */
.gallery-page {
  padding: 100px 20px;
}

.gallery-page .gallery-grid img {
  height: 220px;
}

/* =========================
Gallery Modal
========================= */
#gallery-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.85);
display: none;
align-items: center;
justify-content: center;
z-index: 5000;
}


#gallery-modal.active {
display: flex;
}


#gallery-modal img {
max-width: 90vw;
max-height: 90vh;
	box-shadow: 0 20px 40px rgba(0,0,0,0.6);
	transform: scale(0.95);
opacity: 0;
transition: transform 0.4s ease, opacity 0.4s ease;
}

#gallery-modal.active img {
transform: scale(1);
opacity: 1;
}


.modal-close {
position: absolute;
top: 20px;
right: 30px;
font-size: 32px;
color: #d4b36a;
cursor: pointer;
transition: opacity 0.3s ease;
}


.modal-close:hover {
opacity: 0.7;
}
/* =========================
   共通装飾
========================= */
hr {
  border: none;
  border-top: 1px solid var(--gold);
}

a:hover {
  color: var(--gold);
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .gallery-grid img {
    height: 150px;
  }

  .hero-img {
    /* 画像の表示位置を「水平方向：中央」「垂直方向：下端」に指定 */
    /* これにより上部がカットされ、下部が優先的に表示されます */
    object-position: 50% 100%;
  }
}

/* =========================
   ページトップへ戻るボタン
========================= */
#toTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    #c8b26a,
    #e6d9a2
  );

  /* 黒縁の原因を完全排除 */
  border: none;
  outline: none;

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);

  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* SVG矢印 */
#toTop svg {
  fill: #5a4a1a;
  transition: transform 0.3s ease;
}

/* ホバーで少し浮く */
#toTop:hover {
  transform: translateY(-6px);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

#toTop:hover svg {
  transform: translateY(-1px);
}

/* スマホ用 */
@media (max-width: 768px) {
  #toTop {
    width: 40px;
    height: 40px;
    right: 16px;
    bottom: 16px;
  }

  #toTop svg {
    width: 18px;
    height: 18px;
  }
}

/* ロゴリンクの下線を完全に消す（gallery含む全ページ共通） */
.logo,
.logo a {
  text-decoration: none !important;
  color: var(--gold);
}

#gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#gallery-modal.active {
  display: flex;
}

#gallery-modal img {
  max-width: 90%;
  max-height: 90%;
  z-index: 2;
}

/* 矢印 */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #d4b36a; /* アンティークゴールド */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  opacity: 0.85;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 3;
pointer-events: auto;
}

.modal-nav:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev { left: 5%; }
.modal-nav.next { right: 5%; }


/* ハンバーガーレイヤーとモバイルナビの定義 */
.overlay {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1500 !important; /* メニューの下層 */
  pointer-events: none;
}

.overlay.active {
  display: block;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: rgba(120, 120, 120, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000 !important; /* オーバーレイより手前 */
  padding-top: 80px;
  transition: right 0.3s ease;
}

.mobile-nav.active {
  right: 0;
  transition: none !important; /* 遷移時の不自然な動きを抑制 */
}

/* メニュー内のリンク */
.mobile-nav a {
  position: relative;
  z-index: 2001 !important;
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #fff;
}

/* =========================
   紹介文 ＆ メンバーセクション
========================= */
.about-section {
  padding: 20px 20px 80px 20px;
  background: rgba(255, 255, 255, 0.4);
}

.about-section .container {
  max-width: 1280px;
  margin: 0 auto;
}

.bio-text-box {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.bio-text-box h2 {
  font-size: 1.8rem;
  text-align: center !important;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}

.bio-text-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.05em;
}


.intro-text-box {
  text-align: center;
  max-width:1200px;
  margin: 0 auto 60px auto;
}

.intro-text-box h2 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}

.intro-text-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.05em;
}

/* メンバー3名グリッド */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC時は3列横並び[cite: 1] */
  gap: 30px;
}

/* メンバーカード */
.member-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

//* メンバー画像 */
.member-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0; /* 画像に余白（レターボックス）が出た場合の背景色 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像全体を枠のサイズに合わせて拡大・縮小し、はみ出た部分を切り抜く */
  transition: transform 0.4s ease;
}

.member-card:hover .member-img-wrap img {
  transform: scale(1.05);
}

/* メンバーテキスト */
.member-text {
  padding: 20px;
  text-align: left;
}

.member-text h3 {
  font-size: 1.1rem;
  text-align: center !important;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #d4b36a;
  margin-bottom: 10px;
}

.member-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* =========================
   レスポンシブ（モバイル時）
========================= */
/* 幅が768px以下 かつ 縦向きのときだけ1列にする */
@media (max-width: 768px) and (orientation: portrait) {
  .members-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   ディスコグラフィ専用のレイアウト
========================= */

.disco-section {
  padding: 40px 20px !important;
  border-bottom: 1px solid #ddd;
}

/* ディスコグラフィのタイトルをグリッドから除外して中央配置する */
.disco-container .disco-title-box {
  grid-column: 1 / -1; /* グリッドの横幅いっぱいに広げる */
  text-align: center;
  margin: 0 auto 1em auto !important; /* ここで1emの余白を指定 */
  width: 100%;
}

.disco-container .disco-title-box h2 {
  display: inline-block; 
  margin: 0;
  text-align: center;
}

.disco-container {
  max-width: 1280px;
  margin: 0 auto;
}

.category-title {
  font-size: 1.3rem;
  color: #c9b36d;
  border-radius: 6px;
  border-left: 4px solid #c9b36d;
  border-bottom: solid 1px #c9b36d;
  padding-left: 15px;
  padding-bottom: 7px;
  margin: 40px 0 20px 0 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  grid-column: 1 / -1;
}

/* PC：3列グリッドレイアウト */
@media screen and (min-width: 768px) {
  .disco-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.disco-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid #ddd;
}

.disco-jacket {
  width: 100%;
}

.disco-jacket img {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形に統一 */
  object-fit: cover;   /* 比率を保って枠に収める */
  display: block;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.disco-text {
  margin-top: 15px;
}

.disco-text h3 {
  margin: 0 0 10px 0;
  color: #c9b36d;
  font-size: 1.2rem;
}

/* スマホ：中央寄せ */
@media (max-width: 768px) and (orientation: portrait) {
  .disco-item {
    align-items: center;
    text-align: center;
  }
}

/* =========================
   その他既存のNEWS/メンバー設定
========================= */
.news-list {
  max-width: 1200px;
  margin: 30px auto 40px auto;
  text-align: left;
}

.news-item {
  padding: 18px 18px;
  border-bottom: 1px solid #ccc;
  display: block !important;
}

.news-item:first-child {
  border-top: 1px solid #ccc;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 6px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.03em;
}

.date, .category { font-weight: 400; }
.news-separator { color: #999; }
.category { font-weight: 600; letter-spacing: 0.05em; }

.new-badge {
  background: #333;
  color: #fff;
  font-size: 0.75rem;
  padding: 1px 5px;
  border-radius: 8px;
  font-weight: bold;
}

.news-item .content {
  margin: 20;
  font-size: 1.05rem;
  line-height: 1.6;
}

.news-item .content a {
  text-decoration: none;
  color: #111;
  transition: color 0.3s ease;
}

.news-item .content a:hover { color: var(--gold); }

.members-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
}

.member-card-top { display: block; text-decoration: none; color: inherit; transition: opacity 0.9s ease; }
.member-card-top:hover {

transform: scale(1.05);

opacity: 0.85;

} 
.member-img-wrap-top img { width: 100%; height: auto; display: block; object-fit: cover; border-radius: 12px;}
.member-text-top { margin-top: 8px; }
.member-text-top h3 { font-size: 16px; margin: 0 0 4px 0; color: #d4b36a;}
.members-grid-top .youtube-link { display: inline-block; font-size: 12px; color: #888; }

@media (max-width: 600px) {
  .members-grid-top { gap: 6px; }
  .member-text-top h3 { font-size: 11px; }
  .members-grid-top .youtube-link { font-size: 10px; }
}

.banner-section {
  width: 100%;
  max-width: 1200px; /* バナーの最大幅（サイトのデザインに合わせて調整してください） */
  margin: 40px auto 0px;
  padding: 0 20px;     /* スマホで端がくっつかないように左右に少し余白 */
  box-sizing: border-box;
  text-align: center;
}

.banner-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.mt0 { margin-top: 0; }
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mb0 { margin-bottom: 0; }
.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mt-n10 { margin-top: -10px; }
.mt-n20 { margin-top: -20px; }

/* ディスコグラフィのタイトル全体の設定 */
.disco-title-box {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 1em !important; /* DISCOGRAPHYの下の隙間 */
  margin-top: 0 !important;
}

.disco-title-box h2 {
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #c9b36d;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2;
}

.category-title {
  grid-column: 1 / -1;
  margin-top: 0px !important; 
  margin-bottom: 10px !important;
}


/* =========================
   Hero画像 モバイル設定：上部を削る
========================= */
@media (max-width: 768px) {
  .hero-img {
    /* 
       50% = 水平方向は中央
       100% = 垂直方向は下端を基準にする 
       これで実質的に画像の上部がカットされます
    */
    object-position: 50% 100% !important;
  }
}

/* =========================
   SNSアイコンエリア
========================= */
.sns-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #fff;     
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 各SNSのブランドカラー */
.sns-icon.facebook  { background-color: #1877f2; }
.sns-icon.x-twitter { background-color: #000000; }
.sns-icon.youtube   { background-color: #ff0000; }
.sns-icon.instagram { 
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); 
}
/* ホバー時の動き（共通） */
.sns-icon:hover {
  transform: translateY(-4px);
  opacity: 0.8; /* 少し薄くしてホバーを表現 */
}

/* Radioアイコン専用のスタイル */
.sns-icon.radio {
  background-color: #00ced1;
  color: #ffffff;       
  font-size: 0.75rem;      /* 文字が枠に収まるように少し小さめに */
  font-weight: bold;  
  letter-spacing: 0.05em;  
  text-decoration: none;
  cursor: pointer;
}

/* ホバー時の動き（他のSNSと揃える） */
.sns-icon.radio:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

.listen-btn {
  display: block;       
  margin: 24px 0 0 0; 
  width: fit-content;  
  
  padding: 10px 10px; 
  border: 1px solid var(--gold);
  text-decoration: none;
  border-radius: 10px;
  background: transparent;
  color: var(--gold);
  
  transition: background 0.3s ease, color 0.3s ease;
}

/* マウスオーバー時の反転設定 */
.listen-btn:hover {
  background: var(--gold);
  color: #ffffff; 
}

/* スマホ（モバイルデバイス）時のボタンセンター寄せ設定 */
@media (max-width: 768px) {
  .listen-btn {
    margin-left: auto;
    margin-right: auto;
  }

/* WOW.jsの基本設定を強制的に適用させる */
.wow {
  visibility: visible !important;
}