/* ===== TEASER ===== */
.section--teaser {
  padding: 80px 0;
}

.teaser__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: block;
}

.teaser__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.teaser__title {
  font-size: 28px;
  line-height: 1.4;
  margin: 0 0 20px;
}

.teaser__text {
  margin: 0 0 16px;
  line-height: 2.4;
  letter-spacing:0.05rem;
}

.teaser__note {
  margin: 0 0 24px;
  line-height: 1.8;
  opacity: 0.85;
  letter-spacing:0.05rem;
}

.teaser__meta {
  border-top: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 16px 0;
  margin: 0 0 28px;
}

.teaser__meta-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 8px 0;
}

.teaser__meta-ttl {
  font-weight: 600;
}

.teaser__artist-title {
  margin: 0 0 12px;
  font-size: 16px;
}

.teaser__artist-name {
  font-weight: 700;
  margin: 0 0 10px;
}

.teaser__artist-text {
  margin: 0 0 10px;
  line-height: 1.9;
}

.teaser__artist-link a {
  word-break: break-all;
}

@media (max-width: 900px) {
  .teaser__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section--teaser {
    padding: 56px 0;
  }
}

/* ===== TEASER font size fix ===== */
.section--teaser {
  font-size: 16px;          /* teaser全体の基準文字サイズ */
  line-height: 1.9;
}

.section--teaser p,
.section--teaser div {
  font-size: 16px;          /* = 16px */
  letter-spacing: 0.05rem;
}

/* ===== TEASER center alignment ===== */
.section--teaser {
  text-align: center;
}

.teaser__inner {
  margin-left: auto;
  margin-right: auto;
}

/* metaだけは読みやすく左寄せに戻す */
.teaser__meta {
  text-align: left;
}

/* アーティストプロフィールも可読性重視で左寄せ */
.teaser__artist {
  text-align: left;
  margin-top: 24px;
}

/* ===== TEASER meta block refinement ===== */

.teaser__meta {
  margin: 60px auto 60px;
  padding: 20px 24px;
  max-width: 640px;

  border: 1px solid rgba(0, 0, 0, 0.2);

  text-align: left;
  background: rgba(255, 255, 255, 0.02);
}

.teaser__meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 8px 0;
}

.teaser__meta-row + .teaser__meta-row {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.teaser__meta-ttl {
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.teaser__meta-val {
  line-height: 1.8;
}

/* ===== TEASER duration badge ===== */
.teaser__badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;

  font-size: 13px;
  line-height: 1.4;

  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 2px;

  letter-spacing: 0.05rem;
  vertical-align: middle;
}

/* ===== TEASER artist block refinement ===== */
.teaser__artist {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 22px 24px;

  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 4px;

  text-align: left;
}

.teaser__artist-title {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.teaser__artist-name {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.teaser__artist-text {
  margin: 0 0 12px;
  font-size: 14px !important;
  line-height: 1.9;
}

.teaser__artist-link {
  margin: 0;
}

.teaser__artist-link a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  word-break: break-all;

  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.35);
  padding-bottom: 2px;
}

.teaser__artist-link a:hover {
  border-bottom-color: rgba(0,0,0,0.7);
}

/* ===== Main visual static image fix (2026SS) ===== */
.main-visual {
  height: auto !important;
  aspect-ratio: auto !important;
}

/* Main visual image centering fix */
.main-visual img {
  display: block;
  margin: 0 auto;     /* 画像自体を中央寄せ */
  width: 100%;        /* 画面幅いっぱいにするなら */
  height: auto;
}

.section.full-size {
  margin-top:120px;
}

/* ===== Artist with photo ===== */

.teaser__artist-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
}

.teaser__artist-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px; /* 四角寄りでOK */
}

.teaser__artist-body {
  text-align: left;
}

.teaser__artist-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.teaser__artist-name-sub {
  font-size: 13px;
  font-weight: 400;
  margin-left: 6px;
  opacity: 0.75;
}

.teaser__artist-text {
  font-size: 14px;
  line-height: 1.9;
}

/* SPでは縦積み */
@media (max-width: 768px) {
  .teaser__artist-inner {
    grid-template-columns: 1fr;
  }

  .teaser__artist-photo {
    max-width: 200px;
    margin: 0 auto 16px;
  }

  .teaser__artist-body {
    text-align: center;
  }
}

/* ===== SP: reduce side padding for 2026SS ===== */
@media (max-width: 768px) {

  .page-2026ss .section,
  .page-2026ss .teaser__inner,
  .page-2026ss .teaser__artist {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

}

/* ===== 2026SS: SPの横余白を詰める ===== */
@media (max-width: 768px) {
  .teaser__inner {
    width: calc(100% - 6px) !important; /* 左右12px */
  }

  .teaser__body {
    width: calc(100% - 6px) !important; /* 左右12px */
  }

  /* アーティストカードも詰める（枠内の余白） */
  .teaser__artist {
    padding: 18px 16px !important;
  }

  /* 開催日時カードも詰める（枠内の余白） */
  .teaser__meta {
    padding: 16px 16px !important;
    font-size:14px;
  }
  .teaser__meta-ttl {
    font-size:14px !important;;
  }

  .teaser__meta-val {
    font-size:14px !important;
  }

  .teaser__title {
    font-size: 20px;
  }
}

/* ===== SP only: teaser text font size ===== */
@media (max-width: 768px) {
  .teaser__text {
    font-size: 14px !important;
  }
}


/* ===== SP: meta row compact ===== */
@media (max-width: 768px) {

  .section--teaser .teaser__meta-row {
    grid-template-columns: 72px 1fr; /* 左を細く */
    gap: 8px;                        /* 左右の間を詰める */
  }

  .teaser__artist-text {
    font-size:12px !important;
  }

  .teaser__artist-title {
    font-size:12px !important;
    font-weight: 400 !important;
  }

}
