@charset "UTF-8";
/* badass CSS (home.css) */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/* ------------------ Base / Theme ------------------ */
:root {
  --bg: #000; /* default = dark */
  --fg: #fff;
  --muted: #b5b5b5;
  --card: #111;
  --accent: #ffd400; /* 目印用のアクセント */
  --gap: clamp(28px, 6vw, 80px);
  --radius: 18px;
}

body.theme-light {
  --bg: #fff;
  --fg: #0a0a0a;
  --muted: #5b5b5b;
  --card: #f5f5f7;
}

* {
  box-sizing: border-box;
}

html, body {
  height: auto;
}

body {
  position: relative;
  margin: 0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background: #000 url("https://d20dfxyuz7q532.cloudfront.net/utopia/badass/badasstour2026/bg_kasure.png") repeat;
  background-size: 500px 582px;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: relative;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* ------------------ Header ------------------ */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  width: clamp(140px, 24vw, 320px);
  aspect-ratio: 4.2/1;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand__title {
  margin: 40px auto 20px;
  max-width: 1000px;
}

h1 {
  margin: 0px auto 30px;
  text-align: center;
}
h1 img {
  position: relative;
  right: -3%;
  width: 50%;
}

.artist-img img {
  border: solid 3px #fff;
}

/* ------------------ Hero (Artist visual) ------------------ */
.hero {
  border-radius: var(--radius);
  overflow: hidden;
}

.hero__media {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}

.hero__caption {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 10px 6px 0;
}

/* ------------------ Lineup logos ------------------ */
.lineup h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 18px;
  font-weight: 800;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  grid-template-columns: repeat(6, 1fr);
  gap: 0px;
}
.logo-grid.footer-grid {
  margin: 0 auto;
  width: 80%;
}

.logo-tile {
  width: 50%;
  padding: 6px;
}
.logo-tile a {
  display: inline-block;
}
.logo-tile:nth-child(2) a {
  position: relative;
  top: 7px;
  margin-top: 0;
}
.logo-tile:nth-child(2) .logo {
  width: 120%;
  max-width: 120%;
  position: relative;
  left: -10%;
}
.logo-tile:nth-child(3) {
  margin-right: 1%;
  margin-top: -7px;
}
.logo-tile:nth-child(3) .logo {
  width: 136%;
  max-width: 136%;
  position: relative;
  left: -18%;
}
.logo-tile:nth-child(4) {
  margin-top: -7px;
}
.logo-tile:nth-child(5) {
  margin-top: -7px;
}

.logo-tile img {
  width: 100%;
}

/* ------------------ Schedule table ------------------ */
.schedule {
  margin: 20px auto 40px;
}

/* ------------------ Apply (CTA) ------------------ */
.apply-heading {
  text-align: center;
  background: url(https://d20dfxyuz7q532.cloudfront.net/utopia/badass/badasstour2026/kikan-bg.png) no-repeat;
  background-size: 100% 100%;
  padding: 3px 5px;
  border: 2px solid #fff;
}

.period {
  margin-top: 10px;
}

.apply {
  text-align: center;
}

main {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1000px;
}

.info01 {
  margin: 30px auto 10px;
  text-align: center;
}
.info01 img {
  width: 80%;
}

/* ------------------ Footer ------------------ */
footer {
  position: relative;
  z-index: 1;
  padding: 30px 0 30px;
  color: var(--muted);
  text-align: center;
}

/* ------------------ Breakpoint: max-width 900px ------------------ */
@media (min-width: 900px) {
  body {
    position: relative;
    margin: 0;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, "ＭＳ Ｐゴシック", sans-serif;
    background: #000 url("https://d20dfxyuz7q532.cloudfront.net/utopia/badass/badasstour2026/bg_kasure.png") repeat;
    background-size: 500px 582px;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  header {
    position: relative;
    z-index: 1;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  /* ------------------ Header ------------------ */
  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .brand__logo {
    width: clamp(140px, 24vw, 320px);
    aspect-ratio: 4.2/1;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
  }
  .brand__title {
    margin: 40px auto 40px;
    max-width: 1000px;
  }
  .brand__title img {
    position: relative;
    max-width: 112%;
    width: 112%;
    left: -6%;
  }
  h1 {
    margin: 0 auto 30px;
    text-align: center;
  }
  h1 img {
    position: relative;
    right: -3%;
    width: 50%;
  }
  .artist-img img {
    border: solid 3px #fff;
  }
  /* ------------------ Hero (Artist visual) ------------------ */
  .hero {
    border-radius: var(--radius);
    overflow: hidden;
  }
  .hero__media {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
  }
  .hero__caption {
    font-size: 0.95rem;
    color: var(--muted);
    padding: 10px 6px 0;
  }
  /* ------------------ Lineup logos ------------------ */
  .lineup h2 {
    font-size: clamp(22px, 3vw, 32px);
    margin: 0 0 18px;
    font-weight: 800;
  }
  .logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    grid-template-columns: repeat(6, 1fr);
    gap: 0px;
    width: 100%;
    margin: 0 auto;
  }
  .logo-grid.footer-grid {
    margin: 0 auto;
    width: 80%;
  }
  .logo-tile {
    width: 33.33%;
    padding: 15px;
  }
  .logo-tile:nth-child(2) a {
    position: relative;
    top: 0px;
    margin-top: 0;
  }
  .logo-tile:nth-child(2) .logo {
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 0;
    margin-top: 0;
  }
  .logo-tile:nth-child(3) {
    margin-right: 0;
    margin-top: 0;
  }
  .logo-tile:nth-child(3) .logo {
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 0;
    margin-top: 0;
  }
  .logo-tile:nth-child(4) {
    margin-top: -1%;
  }
  .logo-tile:nth-child(5) {
    margin-top: -1%;
  }
  .logo-tile img {
    width: 100%;
  }
  /* ------------------ Schedule table ------------------ */
  .schedule {
    margin: 20px auto 70px;
  }
  /* ------------------ Apply (CTA) ------------------ */
  .apply-heading {
    text-align: center;
    background: url(https://d20dfxyuz7q532.cloudfront.net/utopia/badass/badasstour2026/kikan-bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 3px 5px;
    border: 2px solid #fff;
  }
  .period {
    margin-top: 10px;
  }
  .apply {
    text-align: center;
  }
  main {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1000px;
  }
  .info01 {
    margin: 70px auto 30px;
    text-align: center;
  }
  .info01 img {
    width: 76%;
  }
  /* ------------------ Footer ------------------ */
  footer {
    position: relative;
    z-index: 1;
    padding: 30px 0 30px;
    color: var(--muted);
    text-align: center;
  }
}

/*# sourceMappingURL=home.css.map */
