@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #030B1C;
  color: #ffffff;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "alternate-gothic-atf", sans-serif;
  font-weight: normal;
}

.altr-music-container {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}
@media screen and (min-width: 840px) {
  .altr-music-container {
    place-items: center;
  }
}

.altr-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(3, 11, 28, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
}

.altr-nav-content {
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 24px;
  grid-auto-flow: column;
  place-content: center;
}
@media screen and (min-width: 840px) {
  .altr-nav-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 72px;
  }
}

.altr-nav-item {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.8;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.altr-nav-item:hover, .altr-nav-item.active {
  color: #ffffff;
}
@media screen and (min-width: 840px) {
  .altr-nav-item {
    font-size: 20px;
  }
}

.hero-section {
  padding: 158px 48px 104px;
  display: grid;
  align-items: center;
  justify-items: start;
}
@media screen and (min-width: 840px) {
  .hero-section {
    width: 800px;
    justify-items: center;
    padding-top: 172px;
    padding-bottom: 117px;
  }
}

.hero-container {
  max-width: 390px;
  width: 100%;
  display: grid;
  gap: 40px;
  place-items: center;
}

@media screen and (min-width: 840px) {
  .main-altiri-logo {
    width: 142px;
    height: auto;
  }
}

@media screen and (min-width: 840px) {
  .event-date {
    width: 251px;
    height: auto;
  }
}

@media screen and (min-width: 840px) {
  .section-label {
    width: auto;
    height: auto;
  }
}

.venue-info-section {
  display: grid;
  gap: 20px;
  width: 100%;
  place-items: center;
}

.hero-lineup-section {
  display: grid;
  gap: 20px;
  width: 100%;
  place-items: center;
}

.venue-section {
  display: grid;
  gap: 12px;
  width: 100%;
  place-items: center;
}
@media screen and (min-width: 840px) {
  .venue-section {
    gap: 18px;
  }
}

@media screen and (min-width: 840px) {
  .venue-name-img {
    width: 211px;
    height: auto;
  }
}

@media screen and (min-width: 840px) {
  .price-info {
    width: 192px;
    height: auto;
  }
}

.lineup-artists {
  display: grid;
  gap: 16px;
  width: 100%;
  place-items: center;
}
@media screen and (min-width: 840px) {
  .lineup-artists {
    gap: 20px;
  }
}

@media screen and (min-width: 840px) {
  .lineup-artist-name {
    width: auto;
    height: 14px;
  }
}

.logo-footer {
  display: grid;
  grid-auto-flow: column;
  gap: 32px;
  padding-bottom: 48px;
  width: 100%;
  place-content: center;
  place-items: center;
}
@media screen and (min-width: 840px) {
  .logo-footer {
    padding-bottom: 48px;
    gap: 58px;
  }
}
.logo-footer a {
  display: flex;
  text-decoration: none;
  transition: all 0.3s ease;
}
.logo-footer a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 840px) {
  .ac-monogram {
    width: auto;
    height: 30px;
  }
}

@media screen and (min-width: 840px) {
  .altiri-chiba-logo {
    width: auto;
    height: 28px;
  }
}

@media screen and (min-width: 840px) {
  .records-logo {
    width: auto;
    height: 15px;
  }
}

.tickets-section {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding-top: 53px;
}
@media screen and (min-width: 840px) {
  .tickets-section {
    padding-top: 56px;
  }
}

.tickets-container {
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
}
@media screen and (min-width: 840px) {
  .tickets-container {
    width: 440px;
    padding-inline: 0;
  }
}

.ticket-details {
  text-transform: uppercase;
  display: grid;
  gap: 24px;
}

.detail-group {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  align-items: start;
}
@media screen and (min-width: 840px) {
  .detail-group {
    grid-template-columns: 64px 1fr;
  }
}

.detail-label {
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media screen and (min-width: 840px) {
  .detail-label {
    font-size: 20px;
  }
}

.detail-content {
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 400;
}
@media screen and (min-width: 840px) {
  .detail-content {
    font-size: 20px;
  }
}

.ticket-purchase-section {
  text-align: center;
}
.ticket-purchase-section--margin-top {
  margin-top: 40px;
}
@media screen and (min-width: 840px) {
  .ticket-purchase-section--margin-top {
    margin-top: 72px;
  }
}

.get-ticket-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  place-content: center;
  background: #ffffff;
  color: #030B1C;
  padding: 11px;
  min-height: 48px;
  text-decoration: none;
  font-family: "alternate-gothic-atf", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 18px;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #ffffff;
}
.get-ticket-btn:hover {
  background: transparent;
  color: #ffffff;
}
@media screen and (min-width: 840px) {
  .get-ticket-btn {
    min-height: 50px;
    font-size: 20px;
  }
}

.lineup-section {
  padding: 115px 0 60px;
}
@media screen and (min-width: 840px) {
  .lineup-section {
    padding: 214px 0 158px;
  }
}

.lineup-container {
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 840px) {
  .lineup-container {
    width: 688px;
    padding-inline: 0;
    gap: 72px;
  }
}

.artist-profile {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 840px) {
  .artist-profile {
    grid-template-columns: 186px 1fr;
    gap: 54px;
    align-items: start;
  }
}

.artist-image {
  width: 186px;
  height: auto;
}
.artist-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.artist-info {
  display: grid;
  gap: 12px;
}
@media screen and (min-width: 840px) {
  .artist-info {
    gap: 14px;
  }
}

.lineup-artist-title {
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 0.8;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .lineup-artist-title {
    font-size: 27px;
  }
}

.artist-description {
  font-size: 13px;
  line-height: 1.55;
  text-align: justify;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 840px) {
  .artist-description {
    font-size: 15px;
  }
}

.access-section {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding-top: 141px;
  padding-bottom: 88px;
}
@media screen and (min-width: 840px) {
  .access-section {
    padding-top: 56px;
    padding-bottom: 0;
  }
}

.access-container {
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (min-width: 840px) {
  .access-container {
    width: 688px;
    padding-inline: 0;
  }
}

.access-content {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 840px) {
  .access-content {
    grid-template-columns: 327px 1fr;
    gap: 52px;
    align-items: start;
  }
}

.map-container {
  width: 100%;
  height: 194px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.map-placeholder {
  font-size: 12px;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.venue-info {
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 840px) {
  .venue-info {
    gap: 44px;
  }
}

.venue-group {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 840px) {
  .venue-group {
    gap: 18px;
  }
}

.access-group {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 840px) {
  .access-group {
    gap: 27px;
  }
}

.parking-info {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 840px) {
  .parking-info {
    gap: 18px;
  }
}

.access-venue-name {
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 0.8;
}
@media screen and (min-width: 840px) {
  .access-venue-name {
    font-size: 32px;
  }
}

.venue-address {
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 840px) {
  .venue-address {
    font-size: 14px;
  }
}

.access-title {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
  gap: 8px;
}
@media screen and (min-width: 840px) {
  .access-title {
    font-size: 14px;
  }
}
.access-title span {
  flex-shrink: 0;
}
.access-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #ffffff;
}

.access-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 840px) {
  .access-list {
    gap: 18px;
  }
}

.access-list li {
  font-size: 12px;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.access-list li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 840px) {
  .access-list li {
    font-size: 13px;
  }
}

.access-note {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 840px) {
  .access-note {
    font-size: 13px;
  }
}

.access-link {
  margin: 0;
}

.access-link a {
  color: #5C77FF;
  text-decoration: underline;
  font-size: 12px;
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.access-link a:hover {
  text-decoration: none;
}
@media screen and (min-width: 840px) {
  .access-link a {
    font-size: 13px;
    gap: 6px;
  }
}

.external-link-icon {
  width: 19px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media screen and (min-width: 840px) {
  .external-link-icon {
    width: 21px;
  }
}

.get-ticket-btn:hover .external-link-icon {
  filter: brightness(0) invert(1);
}/*# sourceMappingURL=altiri-music-2025-26.css.map */