/* リセット（簡易） */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
	max-width: 1800px;
  font-family: sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}


.container {
  position: relative;
  max-width: 767px;     /* 最大幅（お好みで変更可） */
  margin: 0 auto;        /* 左右中央寄せ */
  padding: 0 5px;       /* スマホ時の左右余白 */
  box-sizing: border-box;
	text-align: center;
}

/* 全体レイアウト */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  position: relative;
}

.topp {
  margin: 0;
  padding: 0;
	width: 98%;
  background: #000;
  box-sizing: border-box;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  padding: 10px;
  margin-right: 20px; /* ← 左に寄せる */
}

/* ハンバーガーの3本線 */
.hamburger {
  content: "";
  width: 30px;
  height: 3px; /* ← 線を太くする */
  background: #fff;
  position: absolute;
  transition: all 0.3s ease;
}
.hamburger::before,
.hamburger::after {
  content: "";
  width: 30px;
  height: 3px; /* ← 線を太くする */
  background: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.hamburger::before {
  top: -6px; /* ← 間隔を広げる */
}
.hamburger::after {
  top: 6px;
}

/* ナビゲーション */
.site-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.site-nav a {
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* スマホで表示 */
  }

  .site-nav {
  position: fixed;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
  color: white;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  transition: left 0.3s ease;
  backdrop-filter: blur(8px); /* 背景ぼかし（オプション） */
}

  .site-nav.open {
  left: 0;
}

  .site-nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  .site-nav a {
    padding: 0.5rem 0;
    display: block;
  }
}

/* メイン部分 */
main {
  padding: 2rem;
}
section {
  margin-bottom: 3rem;
}

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


.sns {
  width: 80px;
	height: 100%;
}




.slider {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.slider-track {
  display: flex;
  width: calc(300px * 7); /* 画像幅×枚数 */
  animation: scroll-left 20s linear infinite;
}

.slider-track img {
  width: 300px;
  flex-shrink: 0;
}

/* アニメーション */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 7)); /* 画像幅×画像枚数（1セット分） */
  }
}




/* タレントページ用 */

.talent-intro {
  text-align: center;
  padding: 2rem 1rem;
}

.talent-intro h1 {
  font-size: 2rem;
  color: #e91e63;
}

.talent-intro p {
  font-size: 1rem;
  color: #555;
}

.talent-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.talent-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 40%;
  text-align: center;
  transition: transform 0.3s ease;
}

.talent-card:hover {
  transform: translateY(-5px);
}

.talent-img {
  width: 100%;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.talent-card h3 {
  margin: 0.8rem 0 0.3rem;
  font-size: 1.2rem;
  color: #e91e63;
}

.talent-card p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #444;
}

.talent-sns {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-bottom: 1rem;
}

.talent-sns img {
  width: 24px;
  height: 24px;
}



.shop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  flex: 1 1 calc(33.333% - 2rem);
  background: #f9f9f9;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.product-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.price {
  font-weight: bold;
  margin: 0.5rem 0;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #e91e63;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #c2185b;
}



.audition-info ul,
.audition-apply ul,
.audition-notes ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.qr-img {
  max-width: 200px;
  margin-top: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}


.audition-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.audition-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  text-align: center;
  transition: transform 0.3s ease;
}

.audition-card:hover {
  transform: translateY(-5px);
}

.audition-img {
  width: 100%;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.audition-card h3 {
  margin: 0.8rem 0 0.3rem;
  font-size: 1.2rem;
  color: #e91e63;
}

.audition-card p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: #444;
}