@charset "UTF-8";

/* =========================
COMMON
========================= */

:root {
  /* colors: */
  --white: #ffffff;
  --font-back: #000;
  --Bg-black: #1a1a1a;
  --fz20: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  --fz23: clamp(1.063rem, 0.971rem + 0.39vw, 1.438rem);
  --fz25: clamp(1.125rem, 1.019rem + 0.45vw, 1.563rem);
  --fz30: clamp(1.25rem, 1.098rem + 0.65vw, 1.875rem);
  --fz35: clamp(1.625rem, 1.488rem + 0.58vw, 2.188rem);
  --fz45: clamp(1.75rem, 1.492rem + 1.1vw, 2.813rem);
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: var(--fz25);
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "游明朝", "MS PMincho", serif;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
  transition: all ease 0.3s;
}
a:hover {
  opacity: 0.9;
}

li {
  list-style: none;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: content-box;
  @media only screen and (max-width: 499px) {
    padding: 0 1rem;
  }
}

.section-title__heading {
  font-size: var(--fz35);
  color: var(--white);
  letter-spacing: 0.15em;
  font-feature-settings: "palt";
  border-bottom: 3px solid #fbb03b;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.4) 35%, rgba(64, 64, 64, 0.65) 70%, rgba(128, 128, 128, 0.85) 100%);
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 0.5em;
  @media only screen and (max-width: 499px) {
    gap: 16px;
  }
}

/* =========================
ライブバナー
========================= */

.live-banner {
  background-color: var(--Bg-black);
  padding: 85px 0 110px;
  text-align: center;
}

.live-banner__visual {
  width: 100%;
  margin-bottom: 30px;
}

.live-banner__cta-wrap {
  text-align: left;
}

.live-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 56px;
  border: 2px solid var(--white);
  font-size: var(--fz25);
  color: var(--white);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.live-banner__cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
@media only screen and (max-width: 499px) {
  .live-banner {
    padding: 40px 0 60px;
  }
  .live-banner__visual {
    margin-bottom: 24px;
  }
  .live-banner__cta {
    gap: 8px;
    padding: 8px 24px;
  }
}

/* =========================
ライブ出演情報
========================= */
.live-schedule {
  background: url(../images/live-bg.png) 0 0 no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  padding-block: 120px;
}

.live-schedule__title-block {
  margin-bottom: 100px;
}

.live-schedule__table-wrap {
  border: 2px solid var(--white);
  background-color: transparent;
}

.live-schedule__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.live-schedule__event-title {
  font-size: var(--fz25);
  margin-bottom: 12px;
}

.live-schedule__button {
  display: inline-flex;
  align-items: center;
  background-color: #cccccc;
  font-size: 15px;
  font-weight: bold;
  color: var(--font-back);
  border-radius: 16px;
  gap: 4px;
  padding: 9px 18px;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.live-schedule__button:hover {
  background-color: #bebebe;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.live-schedule__button:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.live-schedule__button-icon {
  font-size: 15px;
}

.live-schedule__br {
  display: none;
}

.live-schedule__icon-img {
  max-width: 35px;
}

.live-schedule__photos {
  display: flex;
  margin-top: 80px;
}
.live-schedule__photo-item {
  width: 50%;
}

.live-schedule__bar {
  font-size: var(--fz23);
  font-family: "Hiragino Sans", ヒラギノ角ゴシック, sans-serif;
  font-weight: normal;
  background: #4d4c4d;
  color: var(--white);
  padding: 10px 16px;
  border-bottom: 2px solid var(--white);
}

.live-schedule__item {
  background: #231815;
  color: var(--white);
  padding: 1rem 2rem;
}

.live-schedule__item + .live-schedule__item {
  border-top: 2px solid var(--white);
}

.live-schedule__title {
  font-size: var(--fz25);
  margin-bottom: 1rem;
}

.live-schedule__meta {
  font-size: var(--fz25);
  margin: 0 0 18px;
}

.live-schedule__row {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  row-gap: 10px;
  align-items: start;
  margin-bottom: 12px;
}

.live-schedule__label {
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 499px) {
  .live-schedule {
    padding: 60px 0;
  }
  .live-schedule__title-block {
    margin-bottom: 60px;
  }
  .live-schedule__item {
    padding: 1rem 0.45rem;
  }
  .live-schedule__button {
    padding: 4px 16px;
  }
}
/* =========================
YouTube配信中
========================= */
.youtube-live {
  background: var(--Bg-black);
  padding-top: 80px;
  padding-bottom: 180px;
  margin-top: -0.5rem;
}

.youtube-live__heading {
  border-bottom: 3px solid #ff1d25;
}
.youtube-live__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
}
.youtube-live__icon-img {
  display: block;
  width: 100%;
  height: auto;
}
.youtube-live__title-block {
  margin-bottom: 150px;
}
.music-list__icon-image {
  max-width: 64px;
  margin-bottom: 10px;
}

/* ====== グリッド ====== */
.youtube-live__grid {
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: subgrid;
  grid-template-rows: auto 1fr;
  gap: 70px 30px;
}

.youtube-live__cell {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 8px;
}

.youtube-live__caption {
  display: flex;
  align-items: end;
  padding-bottom: 1rem;
}
.youtube-live__caption span {
  display: block;
  width: 100%;
  font-size: var(--fz30);
  font-weight: normal;
  color: var(--white);
  letter-spacing: 0.05em;
  border-bottom: 3px solid #fbb03b;
  text-align: center;
  padding-bottom: 6px;
}

/* 埋め込みプレイヤー */
.youtube-live__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.youtube-live__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA */
.youtube-live__cta-wrap {
  text-align: center;
  margin-top: 80px;
}

.yt-consent {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  border-radius: 8px;
}
.yt-consent__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.yt-consent__btn {
  position: absolute;
  inset: auto auto 12px 12px;
  padding: 0.5rem 0.8rem;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}
.yt-consent__note {
  position: absolute;
  right: 12px;
  bottom: 14px;
  opacity: 0.8;
  font-size: 12px;
  color: #fff;
}

@media (max-width: 768px) {
  .youtube-live__icon-wrap {
    width: 45px;
    height: 45px;
  }
  .youtube-live__grid {
    max-width: 95%;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
  .youtube-live__title-block {
    margin-bottom: 100px;
  }

  .youtube-live {
    padding-bottom: 120px;
  }
}
@media (max-width: 600px) {
  .youtube-live__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .youtube-live__caption span {
    border-bottom-width: 2px;
  }
  .youtube-live__cta-wrap {
    margin-top: 40px;
  }
  .music-list__icon-image {
    max-width: 48px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 499px) {
  .youtube-live__title-block {
    margin-bottom: 60px;
  }
  .youtube-live {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}

/* =========================
  リリース情報 & ライブ動画
========================= */

.release-section {
  background: url(../images/release-bg.png) 0 0 no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  color: var(--white);
  padding: 85px 0 170px;
  margin-top: -0.5rem;
}

.release-section__heading {
  border-bottom: 3px solid #7ac943;
  margin-bottom: 80px;
}

.release-section__icon-img {
  max-width: 64px;
}
.release-content__wrap {
  max-width: 90%;
  margin: 0 auto;
}
.release-card {
  display: flex;
  align-items: center;
  gap: 28px;
}
.release-card + .release-card {
  margin-top: 85px;
}

.release-card__img {
  max-width: 430px;
}
.release-card__body {
  flex: 1 1 auto;
}
.release-card__lead {
  font-size: var(--fz35);
  margin-bottom: 8px;
}
.release-card__title {
  font-size: var(--fz45);
}

.release-links {
  border-top: 2px solid var(--white);
  margin-top: 60px;
}
.release-links__pink {
  margin-bottom: 60px;
}
.release-links__lead {
  color: #ffff00;
  margin-block: 24px;
}
.release-links__lead-pink {
  color: #ff73a9;
}

.release-links__list {
  font-size: var(--fz20);
}
.release-links__item {
  position: relative;
  padding-left: 0.75em;
  margin-block: 24px;
}
.release-links__item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--fz20);
  color: var(--white);
}
.release-links__a:hover {
  text-decoration: underline;
  opacity: 0.75;
}

/* ライブ動画 */
.live-video {
  margin-top: 150px;
}

.live-video__heading {
  border-bottom: 3px solid #fbb03b;
  margin-bottom: 60px;
}

.live-video__icon-img {
  max-width: 86px;
}

/* サムネ + 再生ボタン */
.live-video__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: #9a9a9a;
  overflow: hidden;
}
.live-video__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 再生ボタン（円＋三角） */
.live-video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.live-video__play::before {
  content: "";
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85) inset;
  transition: transform 0.2s ease, background 0.2s ease;
}
.live-video__play::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.live-video__thumb:hover .live-video__play::before {
  transform: scale(1.06);
  background: rgba(0, 0, 0, 0.55);
}
.live-video__thumb:hover .live-video__play::after {
  transform: scale(1.06);
}

@media only screen and (max-width: 1024px) {
  .release-card {
    gap: 1rem;
    flex-direction: column;
  }
  .release-card__lead {
    margin-bottom: 0;
  }
  .live-video__thumb {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .live-video {
    padding: 56px 0 0;
    margin-top: 0;
  }
  .live-video__thumb {
    width: 100%;
  }
  .live-video__play::before {
    width: 64px;
    height: 64px;
  }
  .live-video__play::after {
    border-width: 11px 0 11px 19px;
  }
  .release-section {
    padding: 60px 0 120px;
  }
}
@media only screen and (max-width: 499px) {
  .release-section__heading {
    margin-bottom: 60px;
  }
  .release-section__icon-img {
    max-width: 45px;
  }
  .release-card + .release-card {
    margin-top: 45px;
  }
  .release-links {
    margin-top: 40px;
  }
  .release-links__pink {
    margin-bottom: 40px;
  }
  .live-video__icon-img {
    max-width: 55px;
  }
  .release-section {
    background-position: top;
    padding: 40px 0 80px;
  }
  .release-links__a {
    word-break: break-all;
  }
  .release-content__wrap {
    max-width: 95%;
  }
  .sp-only {
    display: block;
  }
}

/* =========================
プロフィール
========================= */

.profile {
  background: var(--Bg-black);
  padding: 80px 0 150px;
  color: #fff;
}

.profile__title-block {
  margin-bottom: 60px;
}
.profile__heading {
  border-bottom: 3px solid #93278f;
}

.profile__icon-img {
  max-width: 70px;
}
.profile__main-image {
  margin-bottom: 32px;
}
.profile__name {
  font-size: var(--fz30);
  border-bottom: 2px solid #93278f;
  margin-bottom: 24px;
  padding-bottom: 4px;
}

.profile__text {
  font-size: var(--fz20);
  line-height: 1.8;
  margin-bottom: 50px;
}

.profile__text p {
  margin-bottom: 36px;
}
.profile__text p span {
  font-size: var(--fz30);
}

.profile__photos {
  display: flex;
  gap: 16px;
  margin: 30px 0;
}

.profile__photos img {
  width: 50%;
}

.profile__sns {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 25px;
}

.profile__sns-link {
  display: inline-flex;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.profile__sns-link:hover {
  opacity: 0.7;
  transform: scale(1.08);
}

.profile__sns-icon {
  max-width: 50px;
}
@media only screen and (max-width: 768px) {
  .profile {
    padding: 60px 0 80px;
  }
  .profile__name {
    margin-bottom: 16px;
  }
  .profile__text p {
    margin-bottom: 24px;
  }
  .profile__photos {
    gap: 0;
    justify-content: space-between;
  }
  .profile__photos img {
    width: 49%;
  }
}
@media only screen and (max-width: 499px) {
  .profile__sns {
    gap: 1rem;
    margin-top: 16px;
  }
  .profile__sns-icon {
    max-width: 42px;
  }
}
