/*
Theme Name: Bach Artists Japan TAKUMI Trumpet seminar - Original Theme
Author: arte75 Association Inc.
Version: 1.0
*/

.course-status { font-weight: bold; }
.status-open { color: #0a7; }
.status-wait { color: #e68a00; }
.status-closed { color: #999; }
.status-before { color: #555; }

.btn {
  display: inline-block;
  padding: 0.6em 1.2em;
  text-decoration: none;
  font-weight: bold;
}

.entry-open {
  background: #0a7;
  color: #fff;
}

.entry-wait {
  background: #e68a00;
  color: #fff;
}


/**
 * 画像クリックで拡大表示
 */
/* サムネイル */
.report-photo img {
  cursor: zoom-in;
}

/* モーダル全体 */
.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 表示トリガー */
.photo-modal:target {
  display: flex;
}

/* 拡大画像 */
.photo-modal img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 20px rgba(0,0,0,.5);
}

/* 閉じるエリア（背景クリック） */
.modal-close {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

/**
 * 講師一覧カード型
 */
.seminar-lecturers {
  margin: 2em 0;
}

.lecturer-lang-switch {
  margin-bottom: 1em;
}
.lecturer-lang-switch .lang-btn {
  padding: 0.3em 0.8em;
  margin-right: 0.5em;
  cursor: pointer;
  border: 1px solid #333;
  background: #fff;
}
.lecturer-lang-switch .lang-btn.active {
  background: #333;
  color: #fff;
}

.lecturer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.lecturer-card {
  border: 1px solid #ddd;
  padding: 1em;
  flex: 1 1 calc(33% - 1em);
  box-sizing: border-box;
  text-align: center;
}

.lecturer-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.lecturer-card h3 {
  margin: 0.5em 0;
}

.lecturer-card .lecturer-bio {
  font-size: 0.9em;
  line-height: 1.4;
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
  .lecturer-card {
    flex: 1 1 calc(50% - 1em);
  }
}

@media screen and (max-width: 600px) {
  .lecturer-card {
    flex: 1 1 100%;
  }
}