/* =========================
   基本リセット & ベース
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
  font-size: 22px;
}

/* =========================
   ショーコンセプトセクション
   ========================= */
.concept-section {
  max-width: 1300px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.concept-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
  background: linear-gradient(135deg, #007BFF, #66B2FF);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.concept-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .concept-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* 共通コンセプトカード */
.concept-card {
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.concept-card h3 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.concept-card p {
  font-size: 1.8rem;
  white-space: pre-line;
}

@media (min-width: 768px) {
  .concept-card p {
    font-size: 2.2rem;
  }
}

/* 各ショーのカラー */
.soap-card {
  background: #e0f7fa;
  border: 1px solid #4FC3F7;
}
.soap-card h3 {
  color: #4FC3F7;
}

.science-card {
  background: #fff9e6;
  border: 1px solid #FFB400;
}
.science-card h3 {
  color: #FFB400;
}

.magic-card {
  background: #f3e5f5;
  border: 1px solid #9C27B0;
}
.magic-card h3 {
  color: #9C27B0;
}

.craft-card {
  background: #e8f5e9;
  border: 1px solid #4CAF50;
}
.craft-card h3 {
  color: #4CAF50;
}

/* 🎈 バルーンショー（ピンク） */
.balloon-card {
  background: #fce4ec;
  border: 1px solid #e91e63;
}
.balloon-card h3 {
  color: #e91e63;
}

/* =========================
   パフォーマー一覧セクション
   ========================= */
.performers-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

.performers-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #fff;
  background: linear-gradient(135deg, #007BFF, #66B2FF);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* グリッドレイアウト */
.performer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .performer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* パフォーマーカード */
.performer-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.performer-card:hover {
  transform: translateY(-5px);
}

.performer-card img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
  border: 3px solid #f0f0f0;
}

.performer-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #007BFF;
}

.card-details {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #444;
}

.card-details .tag-container {
  margin-bottom: 0.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
}

.card-details .location,
.card-details .performance-env {
  margin-bottom: 0.3rem;
}

/* ボタン */
.performer-card button {
  background: #03a9f4;
  color: #fff;
  border: none;
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  border-radius: 6px;
  font-size: 1.2rem;
  transition: background 0.3s;
}
.performer-card button:hover {
  background: #0288d1;
}

/* =========================
   タグ（ショー分類バッジ）
   ========================= */
.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.3rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}

/* シャボン玉（水色） */
.tag-shabon-dama {
  background-color: #4FC3F7;
  color: #fff;
}

/* サイエンス（黄色） */
.tag-science {
  background-color: #FFEB3B;
  color: #333;
}

/* マジック（紫） */
.tag-magic {
  background-color: #9C27B0;
  color: #fff;
}

/* 工作（緑） */
.tag-craft {
  background-color: #4CAF50;
  color: #fff;
}

/* 🎈 バルーン（ピンク） */
.tag-balloon {
  background-color: #e91e63;
  color: #fff;
}

/* =========================
   モーダル
   ========================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

.modal-content {
  background: #fff;
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ccc;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
}

.modal-content .profile-image {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #f0f0f0;
}

.modal-content h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #007BFF;
}

.show-media {
  margin: 1.2rem 0;
}
.show-media img,
.show-media video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.modal-details {
  margin: 1.2rem 0;
  font-size: 1.2rem;
  color: #333;
  text-align: left;
  line-height: 1.5;
}
.modal-details p {
  margin: 0.3rem 0;
}

/* お問い合わせボタン */
.btn-contact {
  display: inline-block;
  background-color: #ff5722;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.3rem;
  transition: background 0.3s;
}
.btn-contact:hover {
  background-color: #e64a19;
}

/* =========================
   キーボード操作向けフォーカス
   ========================= */
button:focus-visible,
a:focus-visible {
  outline: 3px solid #66B2FF;
  outline-offset: 2px;
  border-radius: 6px;
}

/* =========================
   料金プランセクション
   ========================= */
.pricing-section {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 1rem;
  text-align: center;
}
.pricing-section h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
  background: linear-gradient(135deg, #007BFF, #66B2FF);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  transition: transform 0.3s ease;
  text-align: left;
}
.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #007BFF;
}

.price-range {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding-left: 1rem;
}
.feature-list li {
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  padding-left: 1.8rem;
}
.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007BFF;
  font-size: 1.8rem;
  line-height: 1;
}

/* =========================
   会社概要セクション
   ========================= */
.company-section {
  max-width: 1000px;
  margin: 3rem auto;
  text-align: center;
  padding: 2rem 1rem;
}
.company-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #007BFF;
}
.company-section p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #555;
}
.btn-company {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #007BFF, #66B2FF);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}
.btn-company:hover {
  background: linear-gradient(135deg, #0056b3, #3399ff);
}
