/* -------------------- リセット -------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  max-width: 1800px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Segoe UI', sans-serif;
  background: #e6f0ff;
  color: #003366;
}

/* -------------------- コンテナ -------------------- */
.container {
  position: relative;
  max-width: 767px;
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
  background: #fff;
}

/* -------------------- ヘッダー -------------------- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #80aaff;
  color: #000;
  position: relative;
}

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

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  padding: 10px;
}

/* ハンバーガー */
.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #000;
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before {
  transform: translateY(-10px);
}

.hamburger::after {
  transform: translateY(7px);
}

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

.site-nav a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: #e91e63;
}

/* -------------------- モバイル用 -------------------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100vh;
    background: rgba(230, 240, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 20px;
    transition: left 0.3s ease;
  }

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

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

/* -------------------- メイン -------------------- */
main {
  padding: 2rem;
}

section {
  margin-bottom: 3rem;
}

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

/* -------------------- スライダー -------------------- */
.slider {
  width: 100%;
  overflow: hidden;
}

.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)); }
}

/* -------------------- タレントカード -------------------- */
.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;
}

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

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

.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%;
  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-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%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.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;
}

.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;
}



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